Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / inherited-properties-rare-text.html
index aa6c9c0..fe2d0c5 100644 (file)
@@ -12,8 +12,8 @@ if (window.testRunner)
 <script>
 function test(e, p) {
     var testDiv = document.getElementById(e);
-    var cssValue = window.getComputedStyle(testDiv).getPropertyCSSValue(p);
-    document.write(e + " " + p + ": " + cssValue.cssText + "<br>");
+    var value = window.getComputedStyle(testDiv).getPropertyValue(p);
+    document.write(e + " " + p + ": " + value + "<br>");
 }
     
 test('test1', '-webkit-font-feature-settings');
@@ -22,4 +22,4 @@ test('test1', '-webkit-font-smoothing');
 test('test2', '-webkit-font-smoothing');
 test('test1', '-webkit-text-orientation');
 test('test2', '-webkit-text-orientation');
-</script>
\ No newline at end of file
+</script>