Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <script src="/resources/testharness.js"></script> | |
| 3 <script src="/resources/testharnessreport.js"></script> | |
| 4 <title>Tests that a unique origin is NOT created for XML tree viewer when script is enabled</title> | |
| 5 <script> | |
| 6 function checkSourceXML() { | |
| 7 done(); | |
| 8 } | |
| 9 | |
| 10 function onload() { | |
| 11 xmlWindow = window.open('resources/sample.xml'); | |
| 12 xmlWindow.onload = checkSourceXML; | |
| 13 } | |
| 14 </script> | |
| 15 <body onload="onload();"> | |
| OLD | NEW |