1
0
Fork 0
firefox/testing/web-platform/tests/css/css-pseudo/first-letter-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

14 lines
374 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://crbug.com/967194">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#target:first-letter{
float:right;
}
</style>
The test passes if it does not CRASH.
<div id="target">
<textarea style="display: block;">A</textarea>
</div>
<script>test(() => { });</script>