OLD | NEW |
| 1 <!doctype html> |
| 2 <html> |
| 3 <head> |
1 <script src="../../../resources/js-test.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body> |
2 <script> | 7 <script> |
| 8 shouldThrow("getComputedStyle()"); |
| 9 shouldThrow("getComputedStyle(document)"); |
3 shouldThrow("getComputedStyle(null)"); | 10 shouldThrow("getComputedStyle(null)"); |
4 shouldThrow("getComputedStyle(undefined)"); | 11 shouldThrow("getComputedStyle(undefined)"); |
5 shouldThrow("getComputedStyle(document.createTextNode(\"foo\"))"); | |
6 </script> | 12 </script> |
| 13 </body> |
| 14 </html> |
OLD | NEW |