Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/content-visibility-background-clip-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<body>
<style>
body {
content-visibility: hidden;
background-clip: text;
position: absolute;
border-right-style: dashed;
border-top-style: ridge;
background-color: green;
}
</style>
<script>
var p1 = document.createElement('p');
var p2 = document.createElement('p');
document.body.appendChild(p1);
document.body.appendChild(p2);
p1.scroll();
p2.remove();
</script>
</body>
</html>