diff options
Diffstat (limited to 'testing/web-platform/tests/layout-instability/multicol-001.html')
-rw-r--r-- | testing/web-platform/tests/layout-instability/multicol-001.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/layout-instability/multicol-001.html b/testing/web-platform/tests/layout-instability/multicol-001.html new file mode 100644 index 0000000000..a47d5f0488 --- /dev/null +++ b/testing/web-platform/tests/layout-instability/multicol-001.html @@ -0,0 +1,26 @@ +<!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:5; column-gap:0; column-gap:0; width:500px; height:1px;"> + <div style="contain:size; height:100px; background:hotpink;"></div> + <div style="contain:size; height:100px; background:hotpink;"></div> + <div style="contain:size; height:100px; background:hotpink;"></div> + <div style="contain:size; height:100px; background:hotpink;"></div> + <div style="contain:size; height:100px; background:hotpink;"></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 multicol container with overflow'); + +</script> |