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/move-linebreak-to-different-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">
<div id="mc" style="height:100px; columns:2; column-fill:auto; line-height:20px; orphans:1; widows:1;">
<br><br><br><br><br><br>
</div>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
mc.style.height = "80px";
container.setAttribute("ontouchstart", "nonValidFunctionName()");
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>