Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-content/crashtests/generated-quote.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Generated quote content in ::before should not crash layout</title>
<style>
div::before {
content: open-quote;
display: block;
overflow: hidden;
width: 100px;
height: 100px;
}
</style>
<div></div>
<script>
document.body.offsetTop;
</script>