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

Side by Side Diff: LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 Test getting and setting nonstable css properties to non-default values 1 Test getting and setting nonstable css properties to non-default values
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 el.style.setProperty('-webkit-shape-margin', '10px') 6 el.style.setProperty('-webkit-shape-margin', '10px')
7 el.style.getPropertyValue('-webkit-shape-margin') is null 7 el.style.getPropertyValue('-webkit-shape-margin') is null
8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is null 8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is null
9 9
10 el.style.setProperty('-webkit-shape-padding', '10px') 10 el.style.setProperty('-webkit-shape-padding', '10px')
(...skipping 17 matching lines...) Expand all
28 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is null 28 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is null
29 29
30 el.style.setProperty('grid-auto-columns', 'auto') 30 el.style.setProperty('grid-auto-columns', 'auto')
31 el.style.getPropertyValue('grid-auto-columns') is null 31 el.style.getPropertyValue('grid-auto-columns') is null
32 getComputedStyle(el).getPropertyValue('grid-auto-columns') is null 32 getComputedStyle(el).getPropertyValue('grid-auto-columns') is null
33 33
34 el.style.setProperty('grid-auto-rows', 'auto') 34 el.style.setProperty('grid-auto-rows', 'auto')
35 el.style.getPropertyValue('grid-auto-rows') is null 35 el.style.getPropertyValue('grid-auto-rows') is null
36 getComputedStyle(el).getPropertyValue('grid-auto-rows') is null 36 getComputedStyle(el).getPropertyValue('grid-auto-rows') is null
37 37
38 el.style.setProperty('grid-definition-columns', 'min-content') 38 el.style.setProperty('grid-template-columns', 'min-content')
39 el.style.getPropertyValue('grid-definition-columns') is null 39 el.style.getPropertyValue('grid-template-columns') is null
40 getComputedStyle(el).getPropertyValue('grid-definition-columns') is null 40 getComputedStyle(el).getPropertyValue('grid-template-columns') is null
41 41
42 el.style.setProperty('grid-definition-rows', 'max-content') 42 el.style.setProperty('grid-template-rows', 'max-content')
43 el.style.getPropertyValue('grid-definition-rows') is null 43 el.style.getPropertyValue('grid-template-rows') is null
44 getComputedStyle(el).getPropertyValue('grid-definition-rows') is null 44 getComputedStyle(el).getPropertyValue('grid-template-rows') is null
45 45
46 el.style.setProperty('grid-column-start', 'auto') 46 el.style.setProperty('grid-column-start', 'auto')
47 el.style.getPropertyValue('grid-column-start') is null 47 el.style.getPropertyValue('grid-column-start') is null
48 getComputedStyle(el).getPropertyValue('grid-column-start') is null 48 getComputedStyle(el).getPropertyValue('grid-column-start') is null
49 49
50 el.style.setProperty('grid-column-end', '2') 50 el.style.setProperty('grid-column-end', '2')
51 el.style.getPropertyValue('grid-column-end') is null 51 el.style.getPropertyValue('grid-column-end') is null
52 getComputedStyle(el).getPropertyValue('grid-column-end') is null 52 getComputedStyle(el).getPropertyValue('grid-column-end') is null
53 53
54 el.style.setProperty('grid-row-start', '1') 54 el.style.setProperty('grid-row-start', '1')
(...skipping 25 matching lines...) Expand all
80 getComputedStyle(el).getPropertyValue('text-align-last') is null 80 getComputedStyle(el).getPropertyValue('text-align-last') is null
81 81
82 el.style.setProperty('text-justify', 'distribute') 82 el.style.setProperty('text-justify', 'distribute')
83 el.style.getPropertyValue('text-justify') is null 83 el.style.getPropertyValue('text-justify') is null
84 getComputedStyle(el).getPropertyValue('text-justify') is null 84 getComputedStyle(el).getPropertyValue('text-justify') is null
85 85
86 PASS successfullyParsed is true 86 PASS successfullyParsed is true
87 87
88 TEST COMPLETE 88 TEST COMPLETE
89 89
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698