mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
13 lines
451 B
HTML
13 lines
451 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1290093">
|
|
<div style="columns:2;">
|
|
<span style="position:relative;">
|
|
<div style="position:absolute;"></div>
|
|
<div id="spanner" style="column-span:all;"></div>
|
|
</span>
|
|
</div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
// This doesn't actually affect layout, but changing display type requires re-attach.
|
|
spanner.style.display = "flow-root";
|
|
</script>
|