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

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

Issue 17583004: Improve WTF::HashTable performance by changing probing method (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebaseline named-grid-line-get-set which depends on hashtable iteration order 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
« no previous file with comments | « LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html ('k') | Source/wtf/HashTable.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Test that setting and getting grid-columns and grid-rows works as expected 1 Test that setting and getting grid-columns and grid-rows 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 grid-columns and grid-rows set through CSS 6 Test getting grid-columns and grid-rows set through CSS
7 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 10px" 7 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 10px"
8 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first 1 5px" 8 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first 1 5px"
9 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "53% last" 9 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "53% last"
10 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "27% las t" 10 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "27% las t"
11 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t auto" 11 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t auto"
12 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "auto la st" 12 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "auto la st"
13 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(10%, 15px)" 13 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(10%, 15px)"
14 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( 20px, 50%) last" 14 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( 20px, 50%) last"
15 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav first 10px last" 15 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t nav 10px last"
16 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "nav fir st 15px last" 16 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av 15px last"
17 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav first 10% nav 15% last" 17 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t nav 10% nav 15% last"
18 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av2 25% nav2 75% last" 18 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av2 25% nav2 75% last"
19 19
20 Test getting and setting grid-columns and grid-rows through JS 20 Test getting and setting grid-columns and grid-rows through JS
21 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 18px" 21 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 18px"
22 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "66px la st" 22 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "66px la st"
23 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 55%" 23 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t 55%"
24 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "40% las t" 24 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "40% las t"
25 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t auto" 25 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t auto"
26 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "auto la st" 26 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "auto la st"
27 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t -webkit-min-content" 27 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t -webkit-min-content"
28 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "-webkit -min-content last" 28 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "-webkit -min-content last"
29 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t -webkit-max-content" 29 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t -webkit-max-content"
30 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "-webkit -max-content last" 30 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "-webkit -max-content last"
31 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(55%, 45px)" 31 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(55%, 45px)"
32 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( 30px, 40%) last" 32 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( 30px, 40%) last"
33 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(220px, -webkit-max-content)" 33 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(220px, -webkit-max-content)"
34 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, 50px) last" 34 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, 50px) last"
35 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(220px, -webkit-max-content)" 35 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(220px, -webkit-max-content)"
36 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, 50px) last" 36 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, 50px) last"
37 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(-webkit-min-content, -webkit-max-content)" 37 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t minmax(-webkit-min-content, -webkit-max-content)"
38 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, -webkit-min-content) last" 38 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "minmax( -webkit-max-content, -webkit-min-content) last"
39 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav first minmax(-webkit-min-content, -webkit-max-content) last" 39 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t nav minmax(-webkit-min-content, -webkit-max-content) last"
40 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "nav fir st minmax(-webkit-max-content, -webkit-min-content) last" 40 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av minmax(-webkit-max-content, -webkit-min-content) last"
41 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav first minmax(-webkit-min-content, -webkit-max-content) nav auto last" 41 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs t nav minmax(-webkit-min-content, -webkit-max-content) nav auto last"
42 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av2 minmax(-webkit-max-content, -webkit-min-content) nav2 minmax(10px, 15px) las t" 42 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n av2 minmax(-webkit-max-content, -webkit-min-content) nav2 minmax(10px, 15px) las t"
43 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "foo bar auto foo auto bar" 43 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "foo bar auto foo auto bar"
44 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "foo bar auto foo auto bar" 44 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "foo bar auto foo auto bar"
45 45
46 Test getting and setting invalid grid-columns and grid-rows through JS 46 Test getting and setting invalid grid-columns and grid-rows through JS
47 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none " 47 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none "
48 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none" 48 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none"
49 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none " 49 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none "
50 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none" 50 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none"
51 PASS successfullyParsed is true 51 PASS successfullyParsed is true
52 52
53 TEST COMPLETE 53 TEST COMPLETE
54 54
OLDNEW
« no previous file with comments | « LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html ('k') | Source/wtf/HashTable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698