1
0
Fork 0
firefox/testing/web-platform/tests/css/css-break/transform-011.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

16 lines
702 B
HTML

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1442522">
<div id="container" style="overflow:auto; width:100px; height:100px;">
<div style="columns:5; gap:0; column-fill:auto; height:100px;">
<div style="transform:rotate(180deg); height:500px;"></div>
</div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(()=> {
assert_equals(container.scrollHeight, 100);
assert_equals(container.scrollWidth, 100);
}, "Rotating 180 degrees with transform origin at the center");
</script>