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

Unified Diff: LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited-expected.txt

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/getComputedStyle-text-align-last-inherited-expected.txt
diff --git a/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited-expected.txt b/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited-expected.txt
index 2821a93750200c174ccfcfea97914b7b28c757ed..7def1a0fc502ccd6e7e1d8fe894b4c7955665bad 100644
--- a/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited-expected.txt
+++ b/LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited-expected.txt
@@ -4,40 +4,40 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
Value of ancestor is 'start':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'start'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'start'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'start'
+PASS window.getComputedStyle(child).textAlignLast is 'start'
Value of ancestor is 'end':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'end'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'end'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'end'
+PASS window.getComputedStyle(child).textAlignLast is 'end'
Value of ancestor is 'left':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'left'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'left'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'left'
+PASS window.getComputedStyle(child).textAlignLast is 'left'
Value of ancestor is 'right':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'right'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'right'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'right'
+PASS window.getComputedStyle(child).textAlignLast is 'right'
Value of ancestor is 'center':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'center'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'center'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'center'
+PASS window.getComputedStyle(child).textAlignLast is 'center'
Value of ancestor is 'justify':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'justify'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'justify'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'justify'
+PASS window.getComputedStyle(child).textAlignLast is 'justify'
Value of ancestor is 'auto':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'auto'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'auto'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'auto'
+PASS window.getComputedStyle(child).textAlignLast is 'auto'
Value of ancestor is 'start, while child is 'end':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'start'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'end'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'start'
+PASS window.getComputedStyle(child).textAlignLast is 'end'
Value of ancestor is 'left, while child is 'right':
-PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-align-last').cssText is 'left'
-PASS window.getComputedStyle(child).getPropertyCSSValue('text-align-last').cssText is 'right'
+PASS window.getComputedStyle(ancestor).textAlignLast is 'left'
+PASS window.getComputedStyle(child).textAlignLast is 'right'
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698