OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script> | 2 <script> |
3 if (window.testRunner) | 3 if (window.testRunner) |
4 testRunner.dumpAsText(); | 4 testRunner.dumpAsText(); |
5 </script> | 5 </script> |
6 <div id="parent" style="width: 200px; height: 200px;"> | 6 <div id="parent" style="width: 200px; height: 200px;"> |
7 <iframe id="iframe" seamless src="about:blank"></iframe> | 7 <iframe id="iframe" seamless src="about:blank"></iframe> |
8 </div> | 8 </div> |
9 <script> | 9 <script> |
10 window.onload = function () { | 10 window.onload = function () { |
11 window.iframe = document.getElementById("iframe"); | 11 window.iframe = document.getElementById("iframe"); |
12 alert("Ready"); | 12 alert("Ready"); |
13 window.iframe.contentDocument.write("<!DOCTYPE html><html style='width: 100p
x; height: 100px; background-color: green'></html>"); | 13 window.iframe.contentDocument.write("<!DOCTYPE html><html style='width: 100p
x; height: 100px; background-color: green'></html>"); |
14 alert("PASS"); | 14 alert("PASS"); |
15 } | 15 } |
16 </script> | 16 </script> |
OLD | NEW |