Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 3 times in the preceding 30 days. quicksearch this test
- Manifest: layout/base/tests/mochitest.toml
<!DOCTYPE HTML>
<html>
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<span id="s">Hello</span>
<button><div style="pointer-events:none; position:relative; width:100px; background:yellow; left:-100px;">Kitty</div></button>
<pre id="test">
<script type="application/javascript">
var sRect = s.getBoundingClientRect();
is(document.elementFromPoint(sRect.left + sRect.width/2, sRect.top + sRect.height/2),
document.getElementById("s"), "Correct object selected");
</script>
</pre>
</body>
</html>