Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / transforms / webkit-perspective-origin-csstext.html
blob2b4bdbed1460179c7e4def4a93c229dd0cbd47eb
1 <!doctype html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <script>
5 test(function(){
6 var div = document.createElement('div');
7 div.style.webkitPerspectiveOrigin = '20px 30px';
8 assert_equals(div.style.cssText, 'perspective-origin: 20px 30px;');
9 }, "cssText behaves as expected with -webkit-perspective-origin");
10 </script>