summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/painting/reftests/paint-context-005.svg
blob: 8bbfff8d4744f69acdf79523df7bdc73f9ea0975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<svg id="svg-root"
  width="100%" height="100%" viewBox="0 0 480 360"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:html="http://www.w3.org/1999/xhtml">
  <g id="testmeta">
    <title>Paint: 'context-fill' and 'context-stroke' invalidation test</title>
    <html:link rel="author"
          title="Stefan Zager"
          href="mailto:szager@chromium.org"/>
    <html:link rel="help"
          href="https://www.w3.org/TR/SVG2/painting.html#SpecifyingPaint"/>
    <html:link rel="match"  href="paint-context-005-ref.svg" />
  </g>

  <html:script src="/resources/testharness.js"/>
  <html:script src="/resources/testharnessreport.js"/>

  <defs>
    <rect id="rectangle" width="120" height="120" style="fill:context-fill;stroke:context-stroke" />
  </defs>

  <g id="test-body-content" font-size="16" style="fill:blue;stroke:lime;stroke-width:15px">
    <use xlink:href="#rectangle" transform="translate(60,120)"/>
    <use id="use" xlink:href="#rectangle" transform="translate(300,120)" style="fill:green;stroke:lightblue"/>
  </g>

  <html:script>
    async_test(t => {
      onload = () => {
        requestAnimationFrame(() => { requestAnimationFrame(() => {
          let use = document.getElementById("use");
          use.style = "fill:lightblue;stroke:green";
          requestAnimationFrame(() => { t.done() });
        })});
      };
    });
  </html:script>
</svg>