Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/increase-prev-sibling-height.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="match" href="increase-prev-sibling-height-ref.html">
<p>The word "PASS" should be seen below.</p>
<div id="elm" style="background:black;"></div>
<div style="columns:2;">
PASS
</div>
<script>
requestAnimationFrame(()=>{
requestAnimationFrame(()=>{
elm.style.height = "2em";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>