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

Side by Side Diff: third_party/WebKit/LayoutTests/csspaint/invalidation-background-image-expected.txt

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: Redo CSSParserToken::operator==() Created 4 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
(Empty)
1 CONSOLE MESSAGE: line 55:
2
3 Test case:
4 max-height: unset => max-height: 160px
5 The worklet console should log: 'Succussful invalidation for: max-height'
6 CONSOLE MESSAGE: line 11: Successful invalidation for: max-height
7 CONSOLE MESSAGE: line 55:
8
9 Test case:
10 max-height: 100px => max-height: 160px
11 The worklet console should log: 'Succussful invalidation for: max-height'
12 CONSOLE MESSAGE: line 11: Successful invalidation for: max-height
13 CONSOLE MESSAGE: line 55:
14
15 Test case:
16 max-height: 100px => max-height: calc(50px + 50px)
17 The worklet console should log nothing
18 CONSOLE MESSAGE: line 55:
19
20 Test case:
21 max-height: 100px => max-height: calc(50px + var(--fiftypx))
22 The worklet console should log nothing
23 CONSOLE MESSAGE: line 55:
24
25 Test case:
26 flex-basis: unset => flex-basis: 100px
27 The worklet console should log: 'Succussful invalidation for: flex-basis'
28 CONSOLE MESSAGE: line 11: Successful invalidation for: flex-basis
29 CONSOLE MESSAGE: line 55:
30
31 Test case:
32 flex-basis: 100px => flex-basis: unset
33 The worklet console should log: 'Succussful invalidation for: flex-basis'
34 CONSOLE MESSAGE: line 11: Successful invalidation for: flex-basis
35 CONSOLE MESSAGE: line 55:
36
37 Test case:
38 flex-basis: unset => flex-basis: 200px
39 The worklet console should log nothing
40 CONSOLE MESSAGE: line 55:
41
42 Test case:
43 flex-basis: 200px => flex-basis: unset
44 The worklet console should log nothing
45 CONSOLE MESSAGE: line 55:
46
47 Test case:
48 color: unset => color: red
49 The worklet console should log: 'Succussful invalidation for: color'
50 CONSOLE MESSAGE: line 11: Successful invalidation for: color
51 CONSOLE MESSAGE: line 55:
52
53 Test case:
54 color: #F00 => color: red
55 The worklet console should log nothing
56 CONSOLE MESSAGE: line 55:
57
58 Test case:
59 border-top-color: unset => border-top-color: blue
60 The worklet console should log: 'Succussful invalidation for: border-top-color'
61 CONSOLE MESSAGE: line 11: Successful invalidation for: border-top-color
62 CONSOLE MESSAGE: line 55:
63
64 Test case:
65 border-top-color: rgb(0,0,255) => border-top-color: blue
66 The worklet console should log nothing
67 CONSOLE MESSAGE: line 55:
68
69 Test case:
70 --foo: unset => --foo: foo
71 The worklet console should log: 'Succussful invalidation for: --foo'
72 CONSOLE MESSAGE: line 11: Successful invalidation for: --foo
73 CONSOLE MESSAGE: line 55:
74
75 Test case:
76 --foo: foo => --foo: var(--str)
77 The worklet console should log nothing
78 CONSOLE MESSAGE: line 55:
79
80 Test case:
81 --str: unset => --str: bar
82 The worklet console should log: 'Succussful invalidation for: --str'
83 CONSOLE MESSAGE: line 11: Successful invalidation for: --str
84 CONSOLE MESSAGE: line 55:
85
86 Test case:
87 --str: unset => --str: foo
88 The worklet console should log nothing
89 This tests the invalidation behaviour of the paint callback.
90
91 See the devtools console for additional test output.
92
93 This is a testharness.js-based test.
94 PASS max-height: unset => max-height: 160px
95 PASS max-height: 100px => max-height: 160px
96 PASS max-height: 100px => max-height: calc(50px + 50px)
97 PASS max-height: 100px => max-height: calc(50px + var(--fiftypx))
98 PASS flex-basis: unset => flex-basis: 100px
99 PASS flex-basis: 100px => flex-basis: unset
100 PASS flex-basis: unset => flex-basis: 200px
101 PASS flex-basis: 200px => flex-basis: unset
102 PASS color: unset => color: red
103 PASS color: #F00 => color: red
104 PASS border-top-color: unset => border-top-color: blue
105 PASS border-top-color: rgb(0,0,255) => border-top-color: blue
106 PASS --foo: unset => --foo: foo
107 PASS --foo: foo => --foo: var(--str)
108 PASS --str: unset => --str: bar
109 PASS --str: unset => --str: foo
110 Harness: the test ran to completion.
111
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698