summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom-view/offsetTopLeft-empty-inline-offset.html
blob: 85abbb7c01cc95f46aeffb166fc8cd34669c85aa (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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/cssom-view-1/#extensions-to-the-htmlelement-interface">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<style>
  .container {
    position: relative;
    width: 8em;
    height: 7em;
    padding: 1em;
  }
</style>
<div class="container" style="writing-mode:horizontal-tb;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<div class="container" style="writing-mode:vertical-lr;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<div class="container" style="writing-mode:vertical-rl;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<div class="container" style="writing-mode:horizontal-tb; direction:rtl;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<div class="container" style="writing-mode:vertical-lr; direction:rtl;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<div class="container" style="writing-mode:vertical-rl; direction:rtl;">
  offset
  <br>offset<span class="target"></span><span>ref</span>
</div>
<script>
var i = 0;
document.querySelectorAll('span.target').forEach((target) => {
  var ref = target.nextSibling;
  test(() => {
    assert_equals(target.offsetLeft, ref.offsetLeft, 'offsetLeft');
    assert_equals(target.offsetTop, ref.offsetTop, 'offsetTop');
  }, 'offsetTop/Left of empty inline elements should work as if they were not empty: ' + i);
  i++;
});
</script>