blob: 2b4bdbed1460179c7e4def4a93c229dd0cbd47eb [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.webkitPerspectiveOrigin = '20px 30px';
assert_equals(div.style.cssText, 'perspective-origin: 20px 30px;');
}, "cssText behaves as expected with -webkit-perspective-origin");
</script>