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/transform-box/fill-box-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>transform-box: fill-box on an SVG container element</title>
<link rel="match" href="reference/greensquare200x200.html">
<style>
#container {
transform-box: fill-box;
transform-origin: center;
transform: scale(2);
}
</style>
<p>There should be a green 200x200 rectangle below, and no red.</p>
<svg width="200" height="200">
<rect width="200" height="200" fill="red"/>
<g id="container">
<rect x="50" y="50" width="100" height="100" fill="green"/>
</g>
</svg>