summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-use-remove-width.svg
blob: ca30f2cad1a3f836a1d0f30bed582b1922897b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- this is a test for https://bugzilla.mozilla.org/show_bug.cgi?id=521682 -->

  <defs>
    <svg id="d">
      <rect height="50%" width="100%" fill="blue" />
    </svg>
  </defs>

  <use id="u" xlink:href="#d" height="100%" width="11%" />

  <script>
  function boom()
  {
    document.getElementById("u").removeAttribute("width");
  }
  window.addEventListener("load", boom, false);
  </script>

</svg>