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

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

Issue 16404015: Unprefix -webkit-min-content and -webkit-max-content for grid layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined change Created 7 years, 6 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
1 Test that setting and getting grid-auto-flow works as expected 1 Test that setting and getting grid-auto-flow works as expected
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 -webkit-auto-flow set through CSS 6 Test getting auto-flow set through CSS
7 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'none' 7 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'none'
8 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto -flow') is 'column' 8 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto -flow') is 'column'
9 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl ow') is 'row' 9 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl ow') is 'row'
10 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut o-flow') is 'none' 10 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut o-flow') is 'none'
11 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f low') is 'none' 11 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f low') is 'none'
12 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut o-flow') is 'column' 12 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut o-flow') is 'column'
13 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a uto-flow') is 'none' 13 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a uto-flow') is 'none'
14 14
15 Test the initial value 15 Test the initial value
16 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' 16 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none'
17 17
18 Test getting and setting grid-auto-flow through JS 18 Test getting and setting grid-auto-flow through JS
19 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column' 19 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column'
20 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 20 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
21 21
22 Test getting and setting bad values for grid-auto-flow through JS 22 Test getting and setting bad values for grid-auto-flow through JS
23 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 23 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
24 24
25 Test setting grid-auto-flow to 'initial' through JS 25 Test setting grid-auto-flow to 'initial' through JS
26 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' 26 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none'
27 PASS successfullyParsed is true 27 PASS successfullyParsed is true
28 28
29 TEST COMPLETE 29 TEST COMPLETE
30 30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698