Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-plugin.html

Issue 2468953002: Make mixedContent/insecure-plugin-in-iframe.html test OOPIF-compatible. (Closed)
Patch Set: No line numbers (by delaying mixed content message via setTimeout). Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <script> 1 <script>
2 window.onload = function() { 2 window.onload = function() {
3 if (window.opener) 3 setTimeout(function() {
4 window.opener.postMessage('done', '*'); 4 if (window.internals)
5 internals.updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(docume nt);
6 if (window.testRunner)
7 testRunner.notifyDone();
8 }, 0);
5 } 9 }
6 </script> 10 </script>
7 <object name='plugin' type='application/x-blink-test-plugin'> 11 <object name='plugin' type='application/x-blink-test-plugin'>
8 <param name='movie' value='http://example.test:8000/security/mixedContent/reso urces/dummy.swf' /> 12 <param name='movie' value='http://example.test:8000/security/mixedContent/reso urces/dummy.swf' />
9 </object> 13 </object>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698