Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-keytimes-crash.html
blob657e49f976f8db516002465ec56aedebb64ce044
1 <!DOCTYPE html>
2 <html>
3 Test for WK108828: This test passes if it does not crash.
4 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="500" height="500">
5 <!-- animateMotion with invalid keyTimes. -->
6 <rect x="0" y="0" width="100" height="100" fill="green">
7 <animateMotion keyTimes="0; 0.5; 0.5; 0.5; 1" values="M 0 0 Z; M 0 0 Z"/>
8 </rect>
9 </svg>
10 <script>
11 if (window.testRunner())
12 testRunner.waitUntilDone();
14 setTimeout(function() {
15 var svg = document.getElementById('svg');
16 svg.pauseAnimations();
17 svg.setCurrentTime(10);
18 if (window.testRunner)
19 testRunner.notifyDone();
20 }, 1);
21 </script>
22 </html>