quotes-first-letter-001.html (586B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS-content test: first letter with quotes interaction dynamic quotes change</title> 4 <link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com"> 5 <link rel="match" href="reference/quotes-first-letter-001-ref.html"> 6 <link rel=help href="https://drafts.csswg.org/css-content/#quotes"> 7 8 <style> 9 #root { quotes: "A" "B"; } 10 #root.xy-quotes { quotes: "'X" "'Y"; } 11 #root::first-letter { color: green; } 12 </style> 13 14 <div id="root"><q>First letter</q></div> 15 16 <script> 17 document.body.offsetTop; 18 root.className = "xy-quotes"; 19 </script>