mirror of
https://github.com/servo/servo.git
synced 2025-06-26 10:04:33 +01:00
10 lines
412 B
HTML
10 lines
412 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-display/">
|
|
<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>
|