1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transforms/huge-length-tiny-scale.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

20 lines
480 B
HTML

<!DOCTYPE html>
<title>Huge lengths with tiny scale</title>
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
<link rel="help" href="https://crbug.com/1132991">
<link rel="match" href="huge-length-tiny-scale-ref.html">
<style>
body {
overflow: hidden;
}
div {
will-change: transform;
transform: scale(0.005);
transform-origin: 0 0;
width: 40000px;
height: 40000px;
background: green;
border: 2000px solid blue;
}
</style>
<div></div>