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

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

Issue 295053002: Intent to Ship: CSS Shapes Module Level 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use unprefixed versions Created 6 years, 7 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('shape-margin', '10px')
7 el.style.getPropertyValue('-webkit-shape-margin') is 10px 7 el.style.getPropertyValue('shape-margin') is 10px
8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is 10px 8 getComputedStyle(el).getPropertyValue('shape-margin') is 10px
9 9
10 el.style.setProperty('-webkit-shape-outside', 'circle(10px at 10px 10px)') 10 el.style.setProperty('shape-outside', 'circle(10px at 10px 10px)')
11 el.style.getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px) 11 el.style.getPropertyValue('shape-outside') is circle(10px at 10px 10px)
12 getComputedStyle(el).getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px) 12 getComputedStyle(el).getPropertyValue('shape-outside') is circle(10px at 10px 10 px)
13 13
14 el.style.setProperty('-webkit-wrap-flow', 'both') 14 el.style.setProperty('-webkit-wrap-flow', 'both')
15 el.style.getPropertyValue('-webkit-wrap-flow') is both 15 el.style.getPropertyValue('-webkit-wrap-flow') is both
16 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is both 16 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is both
17 17
18 el.style.setProperty('-webkit-wrap-through', 'none') 18 el.style.setProperty('-webkit-wrap-through', 'none')
19 el.style.getPropertyValue('-webkit-wrap-through') is none 19 el.style.getPropertyValue('-webkit-wrap-through') is none
20 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is none 20 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is none
21 21
22 el.style.setProperty('grid-auto-columns', 'auto') 22 el.style.setProperty('grid-auto-columns', 'auto')
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 getComputedStyle(el).getPropertyValue('text-align-last') is start 72 getComputedStyle(el).getPropertyValue('text-align-last') is start
73 73
74 el.style.setProperty('text-justify', 'distribute') 74 el.style.setProperty('text-justify', 'distribute')
75 el.style.getPropertyValue('text-justify') is distribute 75 el.style.getPropertyValue('text-justify') is distribute
76 getComputedStyle(el).getPropertyValue('text-justify') is distribute 76 getComputedStyle(el).getPropertyValue('text-justify') is distribute
77 77
78 PASS successfullyParsed is true 78 PASS successfullyParsed is true
79 79
80 TEST COMPLETE 80 TEST COMPLETE
81 81
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/nonstable-css-properties.html ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698