summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/pservers/pattern-with-invalid-base-cloned-thcrash.html
blob: 04a453545f5938489eb111a23a16c8c89065ed4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<base id="base" href="invalid:">
<svg id="svg">
  <pattern id="pat" xlink:href="#pat"/>
</svg>
<script>
  async_test(t => {
    onload = t.step_func_done(() => {
      let pattern = document.getElementById("pat");
      base.href = "";
      document.body.insertBefore(document.getElementById("svg").cloneNode(true),
                                 document.body.firstChild);
      document.body.offsetTop;
      pattern.setAttribute("clip-rule", "evenodd");
      document.body.offsetTop;
      pattern.setAttribute("width", "0");
      document.getElementById("svg").setAttribute("systemLanguage", "x-nonexistent");
      document.body.offsetTop;
    });
  });
</script>