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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-template-areas-get-set-expected.txt

Issue 203963008: [CSS Grid Layout] Vertical rectangles not recognized as valid grid areas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
OLDNEW
1 This test checks that grid-template-areas is properly parsed. 1 This test checks that grid-template-areas is properly parsed.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Test getting grid-template-areas set through CSS. 6 Test getting grid-template-areas set through CSS.
7 PASS window.getComputedStyle(gridWithDefaultTemplate).getPropertyValue('grid-tem plate-areas') is "none" 7 PASS window.getComputedStyle(gridWithDefaultTemplate).getPropertyValue('grid-tem plate-areas') is "none"
8 PASS window.getComputedStyle(gridWithSingleStringTemplate).getPropertyValue('gri d-template-areas') is "\"area\"" 8 PASS window.getComputedStyle(gridWithSingleStringTemplate).getPropertyValue('gri d-template-areas') is "\"area\""
9 PASS window.getComputedStyle(gridWithTwoColumnsTemplate).getPropertyValue('grid- template-areas') is "\"first second\"" 9 PASS window.getComputedStyle(gridWithTwoColumnsTemplate).getPropertyValue('grid- template-areas') is "\"first second\""
10 PASS window.getComputedStyle(gridWithTwoRowsTemplate).getPropertyValue('grid-tem plate-areas') is "\"first\" \"second\"" 10 PASS window.getComputedStyle(gridWithTwoRowsTemplate).getPropertyValue('grid-tem plate-areas') is "\"first\" \"second\""
11 PASS window.getComputedStyle(gridWithSpanningColumnsTemplate).getPropertyValue(' grid-template-areas') is "\"span span\"" 11 PASS window.getComputedStyle(gridWithSpanningColumnsTemplate).getPropertyValue(' grid-template-areas') is "\"span span\""
12 PASS window.getComputedStyle(gridWithSpanningRowsDotTemplate).getPropertyValue(' grid-template-areas') is "\"span\" \".\"" 12 PASS window.getComputedStyle(gridWithSpanningRowsDotTemplate).getPropertyValue(' grid-template-areas') is "\"span\" \".\""
13 PASS window.getComputedStyle(gridWithDotColumn).getPropertyValue('grid-template- areas') is "\"header .\" \"footer .\"" 13 PASS window.getComputedStyle(gridWithDotColumn).getPropertyValue('grid-template- areas') is "\"header .\" \"footer .\""
14 PASS window.getComputedStyle(gridWithHorizontalRectangle).getPropertyValue('grid -template-areas') is "\"a a a\" \"a a a\""
15 PASS window.getComputedStyle(gridWithVerticalRectangle).getPropertyValue('grid-t emplate-areas') is "\"a a\" \"a a\" \"a a\""
14 Test grid-template-areas: initial 16 Test grid-template-areas: initial
15 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "\"foobar\"" 17 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "\"foobar\""
16 Test grid-template-areas: inherit 18 Test grid-template-areas: inherit
17 PASS window.getComputedStyle(parentElement).getPropertyValue('grid-template-area s') is "\"foo bar\"" 19 PASS window.getComputedStyle(parentElement).getPropertyValue('grid-template-area s') is "\"foo bar\""
18 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "\"foo bar\"" 20 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "\"foo bar\""
19 Test invalid grid-template-areas values. 21 Test invalid grid-template-areas values.
20 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none" 22 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none"
21 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none" 23 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none"
22 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none" 24 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none"
23 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none" 25 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none"
24 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none" 26 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is "none"
25 27
26 FIXME: We currently don't validate that the named grid areas are <indent>. 28 FIXME: We currently don't validate that the named grid areas are <indent>.
27 FAIL window.getComputedStyle(element).getPropertyValue('grid-template-areas') sh ould be none. Was "nav-up". 29 FAIL window.getComputedStyle(element).getPropertyValue('grid-template-areas') sh ould be none. Was "nav-up".
28 PASS successfullyParsed is true 30 PASS successfullyParsed is true
29 31
30 TEST COMPLETE 32 TEST COMPLETE
31 33
OLDNEW
« no previous file with comments | « LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698