quotes-lang-dynamic-001.html (465B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS-content test: changing the lang attribute affects quotes</title> 4 <link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh.work@gmail.com"> 5 <link rel="match" href="reference/quotes-lang-dynamic-001-ref.html"> 6 <link rel=help href="https://drafts.csswg.org/css-content/#quotes"> 7 8 <div id="root" lang="en"><q>First letter</q></div> 9 10 <script> 11 document.body.offsetTop; 12 root.setAttribute('lang', 'fr'); 13 </script>