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/oof-in-area-004.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Helmut Januschka" href="mailto:helmut@januschka.com">
<style>
area { display: inline; }
</style>
<div style="columns:2;">
<area id="elm">
</div>
<script>
var child = document.createElement('div');
child.style.position = "absolute";
elm.appendChild(child);
</script>