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

Side by Side Diff: third_party/WebKit/LayoutTests/csspaint/invalidation-content-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: rebase. 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: [inline not set] => 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: [inline not set] => 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: [inline not set]
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: [inline not set] => 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: [inline not set]
44 The worklet console should log nothing
45 CONSOLE MESSAGE: line 55:
46
47 Test case:
48 color: [inline not set] => 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: [inline not set] => 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: [inline not set] => --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: [inline not set] => --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: [inline not set] => --str: foo
88 The worklet console should log nothing
89 This is a testharness.js-based test.
90 PASS max-height: [inline not set] => max-height: 160px
91 PASS max-height: 100px => max-height: 160px
92 PASS max-height: 100px => max-height: calc(50px + 50px)
93 PASS max-height: 100px => max-height: calc(50px + var(--fiftypx))
94 PASS flex-basis: [inline not set] => flex-basis: 100px
95 PASS flex-basis: 100px => flex-basis: [inline not set]
96 PASS flex-basis: [inline not set] => flex-basis: 200px
97 PASS flex-basis: 200px => flex-basis: [inline not set]
98 PASS color: [inline not set] => color: red
99 PASS color: #F00 => color: red
100 PASS border-top-color: [inline not set] => border-top-color: blue
101 PASS border-top-color: rgb(0,0,255) => border-top-color: blue
102 PASS --foo: [inline not set] => --foo: foo
103 PASS --foo: foo => --foo: var(--str)
104 PASS --str: [inline not set] => --str: bar
105 PASS --str: [inline not set] => --str: foo
106 Harness: the test ran to completion.
107
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698