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="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <div id="console"></div> | 7 <div id="console"></div> |
8 | 8 |
9 <script> | 9 <script> |
10 shouldThrow("document.evaluate('/body', document, 5, 0, null)", '"TypeError:
Failed to execute \'evaluate\' on \'Document\': The 3rd argument provided is ei
ther null, or an invalid XPathNSResolver object."'); | 10 shouldThrow("document.evaluate('/body', document, 5, 0, null)"); |
11 shouldThrow("document.evaluate('/body', document, 'a resolver', 0, null)", '
"TypeError: Failed to execute \'evaluate\' on \'Document\': The 3rd argument pro
vided is either null, or an invalid XPathNSResolver object."'); | 11 shouldThrow("document.evaluate('/body', document, 'a resolver', 0, null)"); |
12 shouldBe("document.evaluate('/body', document, Date, 0, null).toString()", '
"[object XPathResult]"'); | 12 shouldBe("document.evaluate('/body', document, Date, 0, null).toString()", '
"[object XPathResult]"'); |
13 </script> | 13 </script> |
14 </body> | 14 </body> |
15 </html> | 15 </html> |
OLD | NEW |