diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html b/testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html new file mode 100644 index 0000000000..23291d4339 --- /dev/null +++ b/testing/web-platform/tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html @@ -0,0 +1,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> |