1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/too-big-line-height-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

30 lines
574 B
HTML

<!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>