Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/run/first-letter-crossing-engine-boundary-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<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>