Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / invalid-keytime-number-crash.html
blobe116e48bc7e0bade3027dc3ef3cc44cb596bd217
1 <!DOCTYPE html>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <circle>
4 <animateMotion calcMode="discrete" keyPoints="0.8" keyTimes="0" to="3"/>
5 </circle>
6 </svg>
7 <p>PASS if Blink does not crash in debug.</p>
8 <script>
9 if (window.testRunner) {
10 testRunner.waitUntilDone();
11 testRunner.dumpAsText();
13 window.onload = function() {
14 testRunner.notifyDone();
17 </script>