Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transforms/huge-length-tiny-scale.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Huge lengths with tiny scale</title>
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
<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>