Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/untriaged/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-006.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>Shadow DOM Test: A_10_01_02_06_01</title>
<link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
<meta name="assert" content="ShadowRoot Object: Element? elementFromPoint(float x, float y) method">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../../../../html/resources/common.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function () {
var d = newHTMLDocument();
var el = d.createElement('div');
d.body.appendChild(el);
try {
el.elementFromPoint(1, 1);
assert_true(false, 'TypeMismatchError should be thrown');
} catch(e) {
assert_true(e instanceof TypeError, 'Wrong error type');
}
}, 'A_10_01_02_06_01_T01');
// Added test for checking if elementFromPoint() method is existing on Shadowroot.
test(function () {
var d = newHTMLDocument();
var el = d.createElement('div');
var s = el.attachShadow({mode: 'open'});
d.body.appendChild(el);
if (typeof(s) == 'undefined' || typeof (s.elementFromPoint(1, 1)) != 'object') {
assert_true(false, 'Shadowroot doesn\'t have elementFromPoint() method.' );
}
}, 'A_10_01_02_06_01_T02');
</script>
</body>
</html>