quotes-first-letter-002.html (747B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS-content test: first letter with quotes interaction dynamic attachment</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="outer"> 14 <q>Should not crash or assert and all six quotes should be displayed.</q> 15 <div id="inner"> 16 <q>Should not crash or assert and all six quotes should be displayed.</q> 17 </div> 18 </div> 19 </q> 20 21 <script> 22 document.body.offsetTop; 23 inner.className = 'first-letter'; 24 outer.className = 'first-letter'; 25 </script>