first-line-inherited-no-transition.html (493B)
1 <!DOCTYPE html> 2 <title>CSS Pseudo-Element Test: ::first-line style should not trigger transitions on elements</title> 3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo"> 4 <link rel="match" href="first-line-inherited-no-transition-ref.html"> 5 <style> 6 p::first-line { font-weight: bold; } 7 span { 8 transition-property: font-weight; 9 transition-duration: 100s; 10 transition-delay: -50s; 11 } 12 </style> 13 <p><span>Should be bold<br>Should not be bold</span></p>