wpt / svg / animations / conditional-processing-01.html

Status: PASS | Duration: 15ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/animations/conditional-processing-01.html

<!doctype html>
<html class="reftest-wait">
<title>Test animation as children of failed conditional processing test elements</title>
<link rel="match" href="../struct/reftests/reference/green-100x100.html">
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<script>
function test() {
  document.getElementsByTagName('svg')[0].setCurrentTime(2);
  waitForAtLeastOneFrame().then(takeScreenshot);
}
</script>
<svg onload="test()">
  <g systemLanguage="x-xl">
    <set xlink:href="#test" attributeName="width" begin="2s" to="0" />
  </g>
  <rect id="test" width="100" height="100" fill="green"/>
</svg>

/svg/struct/reftests/reference/green-100x100.html

<!DOCTYPE html>
<div style="width: 100px; height: 100px; background-color: green"></div>