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/text-child-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="outer">
x
<div id="inner" style="display:none; columns:1; padding-left:1%;"></div>
</div>
<script>
document.body.offsetTop;
outer.style.columns = "1";
inner.style.display = "block";
</script>
</html>