blob: 1e49e612eb5cae8d581333e08fa171bb6eabf19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-document-elementfrompoint" />
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div style="width: 100px">
<div>
<span><span class="item" style="display: inline-block">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
<div class="ellipsis">
<span><span class="item" style="display: inline-block">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
<div class="ellipsis">
<span><span class="item" style="display: inline-flex;">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
</div>
<div id="log"></div>
<script>
for (const item of document.getElementsByClassName('item')) {
test(() => {
const bounds = item.getBoundingClientRect();
const result = document.elementFromPoint(bounds.x + 10, bounds.y + bounds.height / 2);
assert_equals(result, item);
});
}
</script>
</body>
</html>
|