Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-inline/empty-span-height.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com">
<link rel="match" href="empty-span-height-ref.html">
<style>
.red { background: red }
</style>
<span>Test passes if no red</span>
<div class="red">
<span id="empty" style="border: 1px solid black"></span>
</div>
<script>
document.body.offsetTop;
empty.style = '';
document.documentElement.className = "";
</script>