mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
34 lines
No EOL
955 B
HTML
34 lines
No EOL
955 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSSOM View - 5 - extensions to the Document interface</title>
|
|
<link href="mailto:neils.christoffersen@gmail.com" rel="author" title="Neils Christoffersen">
|
|
<link href="http://www.w3.org/TR/cssom-view/#extensions-to-the-document-interface" rel="help">
|
|
<meta content="dom" name="flags">
|
|
<meta content="elementFromPoint returns correct element" name="assert">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<style>
|
|
#targetDiv {
|
|
position: absolute;
|
|
top: 10;
|
|
left: 10;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="myDiv"></div>
|
|
<div id="log"></div>
|
|
<div id="targetDiv">
|
|
</div>
|
|
<script>
|
|
var element = document.elementFromPoint(15, 15);
|
|
|
|
test ( function() {
|
|
assert_equals(element.id, "targetDiv", "elementFromPoint didn't return the correct element");
|
|
});
|
|
</script>
|
|
|
|
|
|
</body></html> |