Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-keysplines-crash.html
blob4c50dca0e4df9a2715c57810917c6110b5fd00ec
1 <!DOCTYPE HTML>
2 <html>
3 <body>
4 Test for crbug.com/276111: This test passes if it does not crash.
5 <svg xmlns="http://www.w3.org/2000/svg">
6 <rect>
7 <animateMotion path="M 1 2Z" id="animateMotionElement" calcMode="spline" values="M 1 2Z; M3 4Z"/>
8 </rect>
9 </svg>
10 <script>
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 testRunner.waitUntilDone();
16 function removePathAndFinishTest() {
17 animateMotionElement.removeAttribute('path');
18 setTimeout(function() {
19 document.write("PASS");
20 if (window.testRunner)
21 testRunner.notifyDone();
22 }, 0);
25 setTimeout('removePathAndFinishTest()', 0);
26 </script>
27 </body>
28 </html>