1
0
Fork 0
firefox/testing/web-platform/tests/css/css-multicol/column-rule-001.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

31 lines
810 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<title>Column rule in scrollable multicol container</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-gaps-and-rules">
<link rel="match" href="column-rule-001-ref.html">
<style>
body {
margin: 0;
}
.mc {
columns: 2;
column-gap: 110px;
column-rule: 100px solid;
height: 100px;
overflow: hidden;
}
</style>
<p>There should be <b>two</b> black squares below.</p>
<div id="elm" class="mc">
<div style="height:600px;"></div>
</div>
<script>
elm.scrollLeft = 200;
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>