display-inline-dynamic-001.html (412B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-display/"> 3 <link rel="match" href="display-inline-dynamic-001-ref.html"> 4 <style>div::first-line { font-family:monospace; color:green; }</style> 5 <p>Test passes if PASS is displayed in green below.</p> 6 <div>P<span id="showme" style="display:none;">AS</span>S</div> 7 <script> 8 document.body.offsetTop; 9 showme.style.display = "inline"; 10 </script>