Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/first-letter-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<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>