quotes-first-letter-005.html (748B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS-content test: first letter with quotes interaction dynamic attachment siblings</title> 4 <link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com"> 5 <link rel="match" href="reference/quotes-first-letter-002-ref.html"> 6 <link rel=help href="https://drafts.csswg.org/css-content/#quotes"> 7 8 <style> 9 .first-letter::first-letter { color: green; } 10 </style> 11 12 <q> 13 <div id="first"> 14 <q>Should not crash or assert and all six quotes should be displayed.</q> 15 </div> 16 <div id="last"> 17 <q>Should not crash or assert and all six quotes should be displayed.</q> 18 </div> 19 </q> 20 21 <script> 22 document.body.offsetTop; 23 first.className = 'first-letter'; 24 last.className = 'first-letter'; 25 </script>