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/highlight-painting-005-crash.html - WPT Dashboard Interop Dashboard
<!doctype html><meta charset="utf-8">
<title>CSS Pseudo-Elements Test: highlight painting with display:contents</title>
<link rel="author" name="Delan Azabani" href="mailto:dazabani@igalia.com">
<meta name="assert" value="Checks that highlight painting does not crash when the originating element has decorations that are ineffective due to ‘display’ being ‘contents’.">
<style>
body { display: contents; text-decoration: underline; }
::selection { /* force full highlight overlay painting */ text-decoration: line-through; }
</style>
test
<script>
document.execCommand("selectAll");
</script>