blob: 2d8a8def0e3632343a5726955d0ed3400f9e6c1a [file] [log] [blame]
<!doctype html><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=false ] -->
<html lang="en">
<head>
<title>Test setting animation name to none</title>
<style>
@-webkit-keyframes test {}
#test {
-webkit-animation-name: test;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div id="test">This tests setting -webkit-animation-name to none, it passes if it does not crash.</div>
<script>
document.querySelector('#test').style.webkitAnimationName = 'none'
</script>
</body>
</html>