diff options
Diffstat (limited to 'testing/web-platform/tests/domxpath/evaluator-constructor.html')
-rw-r--r-- | testing/web-platform/tests/domxpath/evaluator-constructor.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/domxpath/evaluator-constructor.html b/testing/web-platform/tests/domxpath/evaluator-constructor.html new file mode 100644 index 0000000000..8350ceb449 --- /dev/null +++ b/testing/web-platform/tests/domxpath/evaluator-constructor.html @@ -0,0 +1,16 @@ +<!doctype html> +<meta charset=utf-8> +<title>XPathEvaluator constructor</title> +<link rel=help href="http://wiki.whatwg.org/wiki/DOM_XPath"> +<script src=/resources/testharness.js></script> +<script src=/resources/testharnessreport.js></script> +<div id=log></div> +<script> +test(function() { + var x = new XPathEvaluator(); + assert_true(x instanceof XPathEvaluator); +}, "Constructor with 'new'"); +test(function() { + assert_throws_js(TypeError, "var x = XPathEvaluator()"); +}, "Constructor without 'new'"); +</script> |