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/crashtests/chrome-536997542-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<head>
</head>
X<span id="sp">
<style>
head, html, body, span {
display: inline-block
}
html::first-letter, span::first-letter {
color: pink;
}
span {
container-type: inline-size;
float: right;
}
</style>
<script>
document.body.offsetHeight;
document.head.style.display = "none";
document.body.style.display = "block";
sp.style.display = "inline";
document.body.offsetTop;
</script>