Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / animate-disallowed-mask-element.svg
blob51b9a044fc7c8e6fce80ee3d621a86b723a7ed54
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <!-- Test for wkbug.com/85202: Passes if a crash does not occur. -->
3 <script>
4 window.onload = function() {
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
8 setTimeout(function(){ testRunner.notifyDone() }, 0);
11 </script>
12 <mask id="mask"><a id="foo"/></mask>
13 <animateMotion xlink:href="#foo"/>
14 <use xlink:href="#mask" id="use"/>
15 <use xlink:href="#use"/>
16 <text x="20" y="20" fill="green">PASS: Animating pruned shadow tree did not cause a crash.</text>
17 </svg>