Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / animation-name-none.html
blob96f04a6819ed2c5210eb6e9f4b2f7fa4c50d859e
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <title>Test setting animation name to none</title>
5 <style>
6 @-webkit-keyframes test {}
7 #test {
8 -webkit-animation-name: test;
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 </script>
15 </head>
16 <body>
17 <div id="test">This tests setting -webkit-animation-name to none, it passes if it does not crash.</div>
18 <script>
19 document.querySelector('#test').style.webkitAnimationName = 'none'
20 </script>
21 </body>
22 </html>