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

Unified Diff: LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js

Issue 709193003: Don't require getPropertyCSSValue in css3-text getComputedStyle tests (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/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js
diff --git a/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js b/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js
index a035e6fcb4556d137705d55e56092607db8ac817..9e99ce0610d07ec9d932890179982d9e4b1901a8 100644
--- a/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js
+++ b/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last-inherited.js
@@ -1,7 +1,7 @@
function testComputedStyle(a_value, c_value)
{
- shouldBe("window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText", "'" + a_value + "'");
- shouldBe("window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText", "'" + c_value + "'");
+ shouldBe("window.getComputedStyle(ancestor).textAlignLast", "'" + a_value + "'");
+ shouldBe("window.getComputedStyle(child).textAlignLast", "'" + c_value + "'");
debug('');
}

Powered by Google App Engine
This is Rietveld 408576698