blob: 683d2a77662149be28c581c5de6651e776653d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
|