wpt / svg / styling / nested-svg-sizing-viewport-units-with-ICB.tentative.html

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

/svg/styling/nested-svg-sizing-viewport-units-with-ICB.tentative.html

<!DOCTYPE html>
<title>Width and Height (in viewport units) as presentation attributes on nested svg</title>
<link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
<link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/styling.html#TermPresentationAttribute">
<link rel="match" href="nested-svg-sizing-viewport-units-with-ICB-expected.html">

<svg width="50vw" height="100px" xmlns="http://www.w3.org/2000/svg">
  <svg width="5px" style="width:50vw;">
    <rect width="100%" height="100%" fill="green" />
  </svg>
</svg>

/svg/styling/nested-svg-sizing-viewport-units-with-ICB-expected.html

<!DOCTYPE html>
<svg width="50vw" height="100px" xmlns="http://www.w3.org/2000/svg">
    <rect width="100%" height="100%" fill="green" />
</svg>