Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / keyframe-timing-function-unset-crash.html
blobce5e7f7f903aa8734a7eb8531ed5725fe61bfd46
1 <!doctype html>
3 <style>
4 @keyframes anim {
5 from { animation-timing-function: unset; }
6 50% { animation-timing-function: inherit; }
7 to { animation-timing-function: initial; }
9 </style>
11 <div style="animation: anim 10s">This test passes if it doesn't crash</div>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
16 </script>