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

Unified Diff: LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt

Issue 27002004: CSSPropertyTextIndent should be a member of css3TextProperties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing 3 Created 7 years, 2 months 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/virtual/stable/webexposed/nonstable-css-properties-expected.txt
diff --git a/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt b/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
index de1f42bb194045d6a8031a52841a208024fd9ecb..89ecc14514b79c94f1ea27ca8604c8033b6a2f65 100644
--- a/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
+++ b/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
@@ -75,6 +75,14 @@ el.style.setProperty('grid-template', '"test"')
el.style.getPropertyValue('grid-template') is null
getComputedStyle(el).getPropertyValue('grid-template') is null
+el.style.setProperty('text-align-last', 'start')
+el.style.getPropertyValue('text-align-last') is null
+getComputedStyle(el).getPropertyValue('text-align-last') is null
+
+el.style.setProperty('text-indent', '10px')
+el.style.getPropertyValue('text-indent') is 10px
+getComputedStyle(el).getPropertyValue('text-indent') is null
+
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698