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

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

Issue 359023002: Remove CSS Exclusions leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 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 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('shape-margin', '10px') 6 el.style.setProperty('shape-margin', '10px')
7 el.style.getPropertyValue('shape-margin') is 10px 7 el.style.getPropertyValue('shape-margin') is 10px
8 getComputedStyle(el).getPropertyValue('shape-margin') is 10px 8 getComputedStyle(el).getPropertyValue('shape-margin') is 10px
9 9
10 el.style.setProperty('shape-outside', 'circle(10px at 10px 10px)') 10 el.style.setProperty('shape-outside', 'circle(10px at 10px 10px)')
11 el.style.getPropertyValue('shape-outside') is circle(10px at 10px 10px) 11 el.style.getPropertyValue('shape-outside') is circle(10px at 10px 10px)
12 getComputedStyle(el).getPropertyValue('shape-outside') is circle(10px at 10px 10 px) 12 getComputedStyle(el).getPropertyValue('shape-outside') is circle(10px at 10px 10 px)
13 13
14 el.style.setProperty('-webkit-wrap-flow', 'both')
15 el.style.getPropertyValue('-webkit-wrap-flow') is null
16 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is null
17
18 el.style.setProperty('-webkit-wrap-through', 'none')
19 el.style.getPropertyValue('-webkit-wrap-through') is null
20 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is null
21
22 el.style.setProperty('grid-auto-columns', 'auto') 14 el.style.setProperty('grid-auto-columns', 'auto')
23 el.style.getPropertyValue('grid-auto-columns') is null 15 el.style.getPropertyValue('grid-auto-columns') is null
24 getComputedStyle(el).getPropertyValue('grid-auto-columns') is null 16 getComputedStyle(el).getPropertyValue('grid-auto-columns') is null
25 17
26 el.style.setProperty('grid-auto-rows', 'auto') 18 el.style.setProperty('grid-auto-rows', 'auto')
27 el.style.getPropertyValue('grid-auto-rows') is null 19 el.style.getPropertyValue('grid-auto-rows') is null
28 getComputedStyle(el).getPropertyValue('grid-auto-rows') is null 20 getComputedStyle(el).getPropertyValue('grid-auto-rows') is null
29 21
30 el.style.setProperty('grid-template-columns', 'min-content') 22 el.style.setProperty('grid-template-columns', 'min-content')
31 el.style.getPropertyValue('grid-template-columns') is null 23 el.style.getPropertyValue('grid-template-columns') is null
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 getComputedStyle(el).getPropertyValue('text-align-last') is null 64 getComputedStyle(el).getPropertyValue('text-align-last') is null
73 65
74 el.style.setProperty('text-justify', 'distribute') 66 el.style.setProperty('text-justify', 'distribute')
75 el.style.getPropertyValue('text-justify') is null 67 el.style.getPropertyValue('text-justify') is null
76 getComputedStyle(el).getPropertyValue('text-justify') is null 68 getComputedStyle(el).getPropertyValue('text-justify') is null
77 69
78 PASS successfullyParsed is true 70 PASS successfullyParsed is true
79 71
80 TEST COMPLETE 72 TEST COMPLETE
81 73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698