variable-invalid-recovery.html (428B)
1 <!DOCTYPE html> 2 <title>CSS Test: Error recovery after an invalid reference in an unparsed declaration.</title> 3 <link rel="help" href="http://www.w3.org/TR/css-variables-1/#invalid-variables"> 4 <link rel="help" href="https://crbug.com/364443009"> 5 <link rel="match" href="support/color-green-ref.html"> 6 <style> 7 p { 8 color: red; 9 transform: scale(var(--#invalid)); 10 } 11 p { 12 color: green; 13 } 14 </style> 15 <p>This text must be green.</p>