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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-only-abspos-item-computed-style-crash-expected.txt

Issue 2080643002: [css-grid] Implement repeat(auto-fit) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing v3 Created 4 years, 5 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, getting the computed style of a grid with only absolutell y positioned children and no tracks in some axis, does not CRASH on DEBUG builds . 1 This test checks that, getting the computed style of a grid with only absolutell y positioned children and no tracks in some axis, does not CRASH on DEBUG builds .
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 PASS successfullyParsed is true 6 PASS successfullyParsed is true
7 7
8 TEST COMPLETE 8 TEST COMPLETE
9 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-columns' ) is "none" 9 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-columns' ) is "none"
10 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-rows') i s "20px" 10 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-rows') i s "20px"
11 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-columns' ) is "10px" 11 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-columns' ) is "10px"
12 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-rows') i s "none" 12 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-rows') i s "none"
13 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-columns' ) is "none" 13 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-columns' ) is "none"
14 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-rows') i s "none" 14 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-rows') i s "none"
15 PASS window.getComputedStyle(grid4, '').getPropertyValue('grid-template-columns' ) is "[a] 0px [b a] 0px [b a] 0px [b a] 0px [b a] 0px [b]"
16 PASS window.getComputedStyle(grid4, '').getPropertyValue('grid-template-rows') i s "none"
17 PASS window.getComputedStyle(grid5, '').getPropertyValue('grid-template-columns' ) is "none"
18 PASS window.getComputedStyle(grid5, '').getPropertyValue('grid-template-rows') i s "[a] 0px [b]"
19 PASS window.getComputedStyle(grid6, '').getPropertyValue('grid-template-columns' ) is "[a] 0px [b a] 0px [b a] 0px [b] 10px 30px"
20 PASS window.getComputedStyle(grid6, '').getPropertyValue('grid-template-rows') i s "none"
21 PASS window.getComputedStyle(grid7, '').getPropertyValue('grid-template-columns' ) is "none"
22 PASS window.getComputedStyle(grid7, '').getPropertyValue('grid-template-rows') i s "[a] 0px [b] 10px 30px"
15 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698