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

Side by Side Diff: third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html

Issue 1854503002: Add meta charset tag to unlabelled utf-8 files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop two more files unaffected by utf-8 label Created 4 years, 8 months 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 <head> 1 <head><meta charset="utf-8"/>
2 <script> 2 <script>
3 function test() { 3 function test() {
4 try { 4 try {
5 5
6 var plugin = window.frames["subframe"].document.plugins[0]; 6 var plugin = window.frames["subframe"].document.plugins[0];
7 plugin.testExecuteScript('parent.document.getElementById("d").innerHTML = "" ;'); 7 plugin.testExecuteScript('parent.document.getElementById("d").innerHTML = "" ;');
8 8
9 } catch (ex) { 9 } catch (ex) {
10 alert(ex); 10 alert(ex);
11 } 11 }
12 12
13 setTimeout(done, 10); 13 setTimeout(done, 10);
14 } 14 }
15 15
16 function done() { 16 function done() {
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 testRunner.notifyDone(); 18 testRunner.notifyDone();
19 } 19 }
20 </script> 20 </script>
21 </head> 21 </head>
22 <body onload="testRunner.waitUntilDone(); setTimeout(test, 10)"> 22 <body onload="testRunner.waitUntilDone(); setTimeout(test, 10)">
23 <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=14437">bug 14437</a> : 23 <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=14437">bug 14437</a> :
24 RTÉ video crashes Safari.</p> 24 RTÉ video crashes Safari.</p>
25 <p>Only works with DumpRenderTree.</p> 25 <p>Only works with DumpRenderTree.</p>
26 26
27 <div id='d'> 27 <div id='d'>
28 <iframe name='subframe' src='resources/plugin-remove-subframe-iframe.html'></i frame> 28 <iframe name='subframe' src='resources/plugin-remove-subframe-iframe.html'></i frame>
29 </div> 29 </div>
30 </body> 30 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698