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/crashtests/floated-input-in-inline-next-column.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="container" style="opacity:0.0;">
<div style="columns:3; orphans:1; widows:1;">
<br>
<span><input style="float:right;"></span>
</div>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
container.style.opacity = "1";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>