Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-display/display-inline-dynamic-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="display-inline-dynamic-001-ref.html">
<style>div::first-line { font-family:monospace; color:green; }</style>
<p>Test passes if PASS is displayed in green below.</p>
<div>P<span id="showme" style="display:none;">AS</span>S</div>
<script>
document.body.offsetTop;
showme.style.display = "inline";
</script>