blob: 203bbf937f76340892fe87a77af0ac82615087d0 [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.animation = 'hello 2s';
assert_equals(div.style.cssText, 'animation: hello 2s;');
}, 'cssText serializes animation properties sanely');
</script>