blob: 57d159b03035e5a7a98f012b9c846aa634c265d1 [file] [log] [blame]
<!doctype html>
<title>Range.intersectsNode</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
test(function() {
var r = document.createRange();
assert_throws_js(TypeError, function() { r.intersectsNode(); });
assert_throws_js(TypeError, function() { r.intersectsNode(null); });
assert_throws_js(TypeError, function() { r.intersectsNode(undefined); });
assert_throws_js(TypeError, function() { r.intersectsNode(42); });
assert_throws_js(TypeError, function() { r.intersectsNode("foo"); });
assert_throws_js(TypeError, function() { r.intersectsNode({}); });
r.detach();
assert_throws_js(TypeError, function() { r.intersectsNode(); });
assert_throws_js(TypeError, function() { r.intersectsNode(null); });
assert_throws_js(TypeError, function() { r.intersectsNode(undefined); });
assert_throws_js(TypeError, function() { r.intersectsNode(42); });
assert_throws_js(TypeError, function() { r.intersectsNode("foo"); });
assert_throws_js(TypeError, function() { r.intersectsNode({}); });
}, "Calling intersectsNode without an argument or with an invalid argument should throw a TypeError.")
</script>