summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html
blob: 23291d433901497735235cdc24b76ebd756dc371 (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
<!DOCTYPE html>
<title>Ellipsizing inline blocks that have absolute positioned objects should not crash</title>
<link rel="author" href="kojii@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=945690">
<meta name="assert" content="Ellipsizing inline blocks that have absolute positioned objects should not crash">
<style>
div {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 5ch;
}
.inline-block {
  display: inline-block;
}
.abs {
  position: absolute;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div>
  12345678
  <span class="inline-block">
    <span class="abs">abs</span>
  </span>
</div>
<div>
  12345678
  <span class="inline-block">
    999
    <span class="abs">abs</span>
  </span>
</div>
<div>
  12
  <span class="inline-block">
    3456789
    <span class="abs">abs</span>
  </span>
</div>
<script>
test(() => {}, 'No crash or DCHECK failure');
</script>