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

Side by Side Diff: third_party/WebKit/LayoutTests/csspaint/invalidation-list-style-image.html

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: fix component build. Created 4 years, 8 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../resources/run-after-layout-and-paint.js"></script>
5 <script src="resources/test-runner-invalidation-logging.js"></script>
6 <style>
7 div {
8 display: list-item;
9 margin-left: 20px;
10 width: 100px;
11 height: 100px;
12 }
13 </style>
14 </head>
15 <body>
16 <p>This tests the invalidation behaviour of the paint callback.</p>
17 <p>See the devtools console for test output.</p>
18 <script>
19 // TODO(ikilpatrick): Should test shorthands and direction aware properties.
20 testRunnerInvalidationLogging('list-style-image', [
21 { property: 'max-height', value: '160px' },
22 { property: 'border-top-color', value: 'blue' },
23 { property: 'flex-basis', value: '100px' },
24 { property: 'flex-grow', value: '2' },
25 { property: 'color', value: 'red' },
26 { property: '--foo', value: 'foo' },
27 ]);
28 </script>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698