summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-inline/too-big-line-height-crash.html
blob: 43782c6a01235844ecc8b61d2dae2716ab7f1c9d (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
FORM {
  line-height: 404875491%;
}

* {
  position: fixed;
  block-size: 2984941683%;
}
</style>
<script>
addEventListener("DOMContentLoaded", () => {
  getSelection().collapse(
    document.body.lastChild,
    document.body.lastChild.length
  );
}, {once: true});
</script>
</head>
<form contenteditable>
    <li style="marker-mid: url(a.svg) !important;
               will-change: contents;
               writing-mode: vertical-lr !important;
               shape-outside: none"></li>
</form>
</body></html>