blob: a189c9934da6c6f74d8cb3379c7e32abd6be0b66 [file] [log] [blame]
<!doctype html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
test(function(){
var div = document.createElement('div');
div.style.animationName = 'anim';
assert_equals(div.style.cssText, 'animation-name: anim;');
div.style.animationName = "\\ ";
assert_equals(div.style.cssText, 'animation-name: \\ ;');
div.style.animation = 'hello 2s';
assert_equals(div.style.cssText, 'animation: hello 2s;');
}, 'cssText serializes animation properties sanely');
</script>