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/first-line-inherited-transition-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Pseudo-Element Test: Color transition from inherited ::first-line style should not crash</title>
<style>
div::first-line { color: red }
span { transition: color 100s; }
</style>
<div><span>First line</span></div>