Changeset 182800 in webkit
- Timestamp:
- Apr 14, 2015, 10:30:42 AM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r182799 r182800 1 2015-04-14 Alexey Proskuryakov <ap@apple.com> 2 3 Two flaky tests in http/tests/security/mixedContent 4 https://bugs.webkit.org/show_bug.cgi?id=143695 5 6 Reviewed by Csaba Osztrogonác. 7 8 Speculative fix. Do not start opening a secondary window until fully done with the 9 main document. 10 11 * http/tests/security/mixedContent/data-url-iframe-in-main-frame-expected.txt: 12 * http/tests/security/mixedContent/data-url-iframe-in-main-frame.html: 13 * http/tests/security/mixedContent/insecure-css-in-main-frame-expected.txt: 14 * http/tests/security/mixedContent/insecure-css-in-main-frame.html: 15 1 16 2015-04-13 Simon Fraser <simon.fraser@apple.com> 2 17 -
trunk/LayoutTests/http/tests/security/mixedContent/data-url-iframe-in-main-frame-expected.txt
r48284 r182800 1 main frame - didFinishDocumentLoadForFrame 1 2 main frame - didStartProvisionalLoadForFrame 2 main frame - didFinishDocumentLoadForFrame3 3 main frame - didHandleOnloadEventsForFrame 4 4 main frame - didFinishLoadForFrame -
trunk/LayoutTests/http/tests/security/mixedContent/data-url-iframe-in-main-frame.html
r120174 r182800 20 20 by active network attackers.</p> 21 21 <script> 22 window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-data-url-frame.html"); 22 onload = function() { 23 window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-data-url-frame.html"); 24 } 23 25 </script> 24 26 </body> -
trunk/LayoutTests/http/tests/security/mixedContent/insecure-css-in-main-frame-expected.txt
r181134 r182800 1 main frame - didFinishDocumentLoadForFrame 1 2 main frame - didStartProvisionalLoadForFrame 2 main frame - didFinishDocumentLoadForFrame3 3 main frame - didHandleOnloadEventsForFrame 4 4 main frame - didFinishLoadForFrame -
trunk/LayoutTests/http/tests/security/mixedContent/insecure-css-in-main-frame.html
r120174 r182800 20 20 but is running insecure content.</p> 21 21 <script> 22 window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-insecure-css.html"); 22 onload = function() { 23 window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-insecure-css.html"); 24 } 23 25 </script> 24 26 </body>
Note:
See TracChangeset
for help on using the changeset viewer.