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

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

Issue 2521953002: [css-grid] Ship CSS Grid Layout (Closed)
Patch Set: Update test results for virtual/stable/webexposed/ Created 4 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: third_party/WebKit/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
diff --git a/third_party/WebKit/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt b/third_party/WebKit/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
index a879f3ab6d95e0ed1c4a3d2d70cd978fbc3ef12d..3e5c9426a789debc1bd1875cf36b0dd4327c1246 100644
--- a/third_party/WebKit/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
+++ b/third_party/WebKit/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
@@ -12,52 +12,52 @@ el.style.getPropertyValue('shape-outside') is circle(10px at 10px 10px)
getComputedStyle(el).getPropertyValue('shape-outside') is circle(10px at 10px 10px)
el.style.setProperty('grid-auto-columns', 'auto')
-el.style.getPropertyValue('grid-auto-columns') is
-getComputedStyle(el).getPropertyValue('grid-auto-columns') is
+el.style.getPropertyValue('grid-auto-columns') is auto
+getComputedStyle(el).getPropertyValue('grid-auto-columns') is auto
el.style.setProperty('grid-auto-rows', 'auto')
-el.style.getPropertyValue('grid-auto-rows') is
-getComputedStyle(el).getPropertyValue('grid-auto-rows') is
+el.style.getPropertyValue('grid-auto-rows') is auto
+getComputedStyle(el).getPropertyValue('grid-auto-rows') is auto
el.style.setProperty('grid-template-columns', 'min-content')
-el.style.getPropertyValue('grid-template-columns') is
-getComputedStyle(el).getPropertyValue('grid-template-columns') is
+el.style.getPropertyValue('grid-template-columns') is min-content
+getComputedStyle(el).getPropertyValue('grid-template-columns') is min-content
el.style.setProperty('grid-template-rows', 'max-content')
-el.style.getPropertyValue('grid-template-rows') is
-getComputedStyle(el).getPropertyValue('grid-template-rows') is
+el.style.getPropertyValue('grid-template-rows') is max-content
+getComputedStyle(el).getPropertyValue('grid-template-rows') is max-content
el.style.setProperty('grid-column-start', 'auto')
-el.style.getPropertyValue('grid-column-start') is
-getComputedStyle(el).getPropertyValue('grid-column-start') is
+el.style.getPropertyValue('grid-column-start') is auto
+getComputedStyle(el).getPropertyValue('grid-column-start') is auto
el.style.setProperty('grid-column-end', '2')
-el.style.getPropertyValue('grid-column-end') is
-getComputedStyle(el).getPropertyValue('grid-column-end') is
+el.style.getPropertyValue('grid-column-end') is 2
+getComputedStyle(el).getPropertyValue('grid-column-end') is 2
el.style.setProperty('grid-row-start', '1')
-el.style.getPropertyValue('grid-row-start') is
-getComputedStyle(el).getPropertyValue('grid-row-start') is
+el.style.getPropertyValue('grid-row-start') is 1
+getComputedStyle(el).getPropertyValue('grid-row-start') is 1
el.style.setProperty('grid-column', 'auto')
-el.style.getPropertyValue('grid-column') is
-getComputedStyle(el).getPropertyValue('grid-column') is
+el.style.getPropertyValue('grid-column') is auto / auto
+getComputedStyle(el).getPropertyValue('grid-column') is auto / auto
el.style.setProperty('grid-row', '1')
-el.style.getPropertyValue('grid-row') is
-getComputedStyle(el).getPropertyValue('grid-row') is
+el.style.getPropertyValue('grid-row') is 1 / auto
+getComputedStyle(el).getPropertyValue('grid-row') is 1 / auto
el.style.setProperty('grid-area', '2')
-el.style.getPropertyValue('grid-area') is
-getComputedStyle(el).getPropertyValue('grid-area') is
+el.style.getPropertyValue('grid-area') is 2 / auto / auto / auto
+getComputedStyle(el).getPropertyValue('grid-area') is 2 / auto / auto / auto
el.style.setProperty('grid-auto-flow', 'column')
-el.style.getPropertyValue('grid-auto-flow') is
-getComputedStyle(el).getPropertyValue('grid-auto-flow') is
+el.style.getPropertyValue('grid-auto-flow') is column
+getComputedStyle(el).getPropertyValue('grid-auto-flow') is column
el.style.setProperty('grid-template-areas', '"test"')
-el.style.getPropertyValue('grid-template-areas') is
-getComputedStyle(el).getPropertyValue('grid-template-areas') is
+el.style.getPropertyValue('grid-template-areas') is "test"
+getComputedStyle(el).getPropertyValue('grid-template-areas') is "test"
el.style.setProperty('text-justify', 'distribute')
el.style.getPropertyValue('text-justify') is

Powered by Google App Engine
This is Rietveld 408576698