summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/huge-length-tiny-scale.html
blob: 53f4f7d4478017615d1319fcf10ce45e03497fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>