blob: 96f04a6819ed2c5210eb6e9f4b2f7fa4c50d859e [file] [log] [blame]
<!doctype html>
<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>