diff options
Diffstat (limited to 'layout/reftests/svg/dynamic-use-remove-width.svg')
-rw-r--r-- | layout/reftests/svg/dynamic-use-remove-width.svg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/svg/dynamic-use-remove-width.svg b/layout/reftests/svg/dynamic-use-remove-width.svg new file mode 100644 index 0000000000..ca30f2cad1 --- /dev/null +++ b/layout/reftests/svg/dynamic-use-remove-width.svg @@ -0,0 +1,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> |