OLD | NEW |
---|---|
1 This test passes if it doesn't crash. | 1 This test passes if it doesn't crash. |
2 <iframe src="data:text/plain,Hi"></iframe> | 2 <iframe srcdoc="Hi"></iframe> |
Mike West
2017/02/15 11:36:15
I don't understand how this tests the change. Did
| |
3 <script> | 3 <script> |
4 frames[0].onunload = function () { | 4 frames[0].onunload = function () { |
5 document.open(); | 5 document.open(); |
6 document.write("PASS"); | 6 document.write("PASS"); |
7 document.close(); | 7 document.close(); |
8 parent.postMessage("Done", "*"); | 8 parent.postMessage("Done", "*"); |
9 }; | 9 }; |
10 </script> | 10 </script> |
OLD | NEW |