wpt / css / css-transforms / transform-box / fill-box-002.html

Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-transforms/transform-box/fill-box-002.html

<!DOCTYPE html>
<title>transform-box: fill-box on an SVG container element</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box">
<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>

/css/css-transforms/transform-box/reference/greensquare200x200.html

<!DOCTYPE html>
<p>There should be a green 200x200 rectangle below, and no red.</p>
<div style="width: 200px; height: 200px; background-color: green"></div>