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

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

Issue 14786002: Allow defining named grid lines on the grid element (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined patch for try job / landing Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 Test that setting and getting grid-columns and grid-rows works as expected
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Test getting -webkit-grid-columns and -webkit-grid-rows set through CSS
7 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first 10px"
8 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "first 15px"
9 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "53% last"
10 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "27% last"
11 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first auto"
12 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "auto last"
13 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first minmax(10%, 15px)"
14 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "minmax(20px, 50%) last"
15 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "nav first 10px last"
16 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "nav first 15px last"
17 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "nav first 10% nav 15% last"
18 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "first nav2 25% nav2 75% last"
19
20 Test getting and setting -webkit-grid-columns and -webkit-grid-rows through JS
21 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first 18px"
22 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "66px last"
23 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first 55%"
24 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "40% last"
25 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first auto"
26 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "auto last"
27 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first -webkit-min-content"
28 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "-webkit-min-content last"
29 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first -webkit-max-content"
30 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "-webkit-max-content last"
31 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first minmax(55%, 45px)"
32 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "minmax(30px, 40%) last"
33 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first minmax(220px, -webkit-max-content)"
34 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "minmax(-webkit-max-content, 50px) last"
35 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first minmax(220px, -webkit-max-content)"
36 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "minmax(-webkit-max-content, 50px) last"
37 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "first minmax(-webkit-min-content, -webkit-max-content)"
38 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "minmax(-webkit-max-content, -webkit-min-content) last"
39 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "nav first minmax(-webkit-min-content, -webkit-max-content) last"
40 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "nav first minmax(-webkit-max-content, -webkit-min-content) last"
41 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "nav first minmax(-webkit-min-content, -webkit-max-content) nav auto last"
42 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "first nav2 minmax(-webkit-max-content, -webkit-min-content) nav2 minmax(10px, 1 5px) last"
43 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "foo bar auto foo auto bar"
44 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "foo bar auto foo auto bar"
45
46 Test getting and setting invalid -webkit-grid-columns and -webkit-grid-rows thro ugh JS
47 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-columns') is "none"
48 PASS getComputedStyle(gridElement, '').getPropertyValue('-webkit-grid-rows') is "none"
49 PASS successfullyParsed is true
50
51 TEST COMPLETE
52
OLDNEW
« no previous file with comments | « LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698