Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: LayoutTests/fast/css/inherited-properties-rare-text.html

Issue 703323002: Continue removing testing of getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/inherited-properties-rare-text.html
diff --git a/LayoutTests/fast/css/inherited-properties-rare-text.html b/LayoutTests/fast/css/inherited-properties-rare-text.html
index aa6c9c0c84736b0b9da827d10a8687d45c45446a..fe2d0c56565e06ff99172bea2472365e0fd9925f 100644
--- a/LayoutTests/fast/css/inherited-properties-rare-text.html
+++ b/LayoutTests/fast/css/inherited-properties-rare-text.html
@@ -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>
+</script>
« no previous file with comments | « LayoutTests/fast/css/inherited-properties-explicit-expected.txt ('k') | LayoutTests/fast/css/large-value-csstext.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698