OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script type="text/javascript"> | |
5 | |
6 function runTest() { | |
7 if (window.testRunner) | |
8 testRunner.dumpAsText(); | |
9 | |
10 document.designMode="on"; | |
11 document.execCommand("SelectAll"); | |
12 document.execCommand("RemoveFormat"); | |
13 Markup.dump("test"); | |
yosin_UTC9
2014/06/26 08:49:11
Just document.body.textContent = 'PASS if Blink do
| |
14 } | |
15 </script> | |
16 </head> | |
17 <body onload="runTest()"> | |
18 <script type="text/javascript" src="../../resources/dump-as-markup.js"></scr ipt> | |
19 <button id="test"> | |
20 <iframe></iframe> | |
21 </button> | |
22 </body> | |
23 </html> | |
OLD | NEW |