OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body> |
| 7 <div id="console"></div> |
| 8 |
| 9 <script> |
| 10 shouldThrow("document.evaluate('/body', document, 5, 0, null)", '"TypeError:
Failed to execute \'evaluate\' on \'Document\': The 3rd argument is not a resol
ver function."'); |
| 11 shouldThrow("document.evaluate('/body', document, 'a resolver', 0, null)", '
"TypeError: Failed to execute \'evaluate\' on \'Document\': The 3rd argument is
not a resolver function."'); |
| 12 shouldBe("document.evaluate('/body', document, Date, 0, null).toString()", '
"[object XPathResult]"'); |
| 13 </script> |
| 14 </body> |
| 15 </html> |
OLD | NEW |