Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css-grid-layout / grid-shorthand-get-set-expected.txt
index 8142a14..6e64944 100644 (file)
@@ -16,6 +16,18 @@ PASS window.getComputedStyle(gridWithTemplate, '').getPropertyValue('grid-templa
 PASS window.getComputedStyle(gridWithTemplate, '').getPropertyValue('grid-auto-flow') is "row"
 PASS window.getComputedStyle(gridWithTemplate, '').getPropertyValue('grid-auto-columns') is "auto"
 PASS window.getComputedStyle(gridWithTemplate, '').getPropertyValue('grid-auto-rows') is "auto"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-template-columns') is "15px"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-template-rows') is "10px"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-template-areas') is "none"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-flow') is "row"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-columns') is "auto"
+PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-rows') is "auto"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-columns') is "none"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-rows') is "none"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-areas') is "none"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-flow') is "row"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-columns') is "auto"
+PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-rows') is "auto"
 PASS window.getComputedStyle(gridWithAutoFlowAndColumns, '').getPropertyValue('grid-template-columns') is "none"
 PASS window.getComputedStyle(gridWithAutoFlowAndColumns, '').getPropertyValue('grid-template-rows') is "none"
 PASS window.getComputedStyle(gridWithAutoFlowAndColumns, '').getPropertyValue('grid-template-areas') is "none"