| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../js/resources/js-test-pre.js"></script> | 4 <script src="../../../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 function checkForLeftoverProperties(string, object) | 9 function checkForLeftoverProperties(string, object) |
| 10 { | 10 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 checkForLeftoverProperties("locationbar", locationbar); | 24 checkForLeftoverProperties("locationbar", locationbar); |
| 25 checkForLeftoverProperties("menubar", menubar); | 25 checkForLeftoverProperties("menubar", menubar); |
| 26 checkForLeftoverProperties("personalbar", personalbar); | 26 checkForLeftoverProperties("personalbar", personalbar); |
| 27 checkForLeftoverProperties("screen", screen); | 27 checkForLeftoverProperties("screen", screen); |
| 28 checkForLeftoverProperties("scrollbars", scrollbars); | 28 checkForLeftoverProperties("scrollbars", scrollbars); |
| 29 checkForLeftoverProperties("statusbar", statusbar); | 29 checkForLeftoverProperties("statusbar", statusbar); |
| 30 checkForLeftoverProperties("toolbar", toolbar); | 30 checkForLeftoverProperties("toolbar", toolbar); |
| 31 | 31 |
| 32 shouldBeUndefined('window.event'); | 32 shouldBeUndefined('window.event'); |
| 33 </script> | 33 </script> |
| 34 <script src="../../../js/resources/js-test-post.js"></script> | |
| 35 <script> | 34 <script> |
| 36 if (window.testRunner) | 35 if (window.testRunner) |
| 37 testRunner.notifyDone(); | 36 testRunner.notifyDone(); |
| 38 </script> | 37 </script> |
| 39 </body> | 38 </body> |
| 40 </html> | 39 </html> |
| OLD | NEW |