blob: be6325fce4894f22f7fa43a488810464f3ebdaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="http://crbug.com/962090">
<style>
#container::first-letter { background:blue; }
</style>
<div id="container">
<div id="edit" style="overflow:hidden;" contenteditable>xx</div>
<div id="elm" style="display:none;">PASS</div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
document.body.offsetTop;
elm.style.display = "initial";
test(()=>{}, "No crash or DCHECK failure");
</script>
|