bug1636607-2-ref.html (605B)
1 <style> 2 div { border: medium solid blue } 3 span { background: #9090ff; } 4 span.test::before { 5 white-space: pre; 6 content: "\A"; 7 } 8 </style> 9 <p>This document is in <span id="mode"></span> mode.</p> 10 <p>This is a test for the line height quirk which is present in limited-quirks mode <b>and</b> quirks mode:</p> 11 <div><span style="font-size: 50%">hello<br>hello</span></div> 12 <p>This is a test for the hashless hex color quirk which is present in quirks mode <b>only</b>:</p> 13 <div style="background-color: 9090ff">test</div> 14 15 <script> 16 document.getElementById("mode").innerText = document.compatMode; 17 </script>