1
0
Fork 0
firefox/testing/web-platform/tests/layout-instability/multicol-000.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

22 lines
717 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://wicg.github.io/layout-instability/" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/util.js"></script>
<div id="multicol" style="position:relative; columns:40; width:500px; column-gap:0;">
<div style="height:4000px; background:black;"></div>
</div>
<script>
promise_test(async () => {
const watcher = new ScoreWatcher;
await waitForAnimationFrames(2);
multicol.style.top = '100px';
const expectedScore = computeExpectedScore(500 * (100 + 100), 100);
await watcher.promise;
assert_equals(watcher.score, expectedScore);
}, 'Move balanced multicol container');
</script>