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

Unified Diff: third_party/WebKit/LayoutTests/csspaint/invalidation-background-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: Redo CSSParserToken::operator==() 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/csspaint/invalidation-background-image.html
diff --git a/third_party/WebKit/LayoutTests/csspaint/invalidation-background-image.html b/third_party/WebKit/LayoutTests/csspaint/invalidation-background-image.html
new file mode 100644
index 0000000000000000000000000000000000000000..99dda41620ad3bd05e2e4a7ef2c064a5eb3ff864
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/csspaint/invalidation-background-image.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html>
+<head>
esprehn 2016/05/09 21:59:54 leave out html and body
ikilpatrick 2016/05/10 20:39:37 Done.
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="../resources/run-after-layout-and-paint.js"></script>
+<script src="resources/test-runner-invalidation-logging.js"></script>
+<style>
+ div {
+ width: 100px;
+ height: 100px;
+ background-color: red;
+
+ flex-basis: 200px;
+ --str:foo;
+ --fiftypx: 50px;
+ }
+</style>
+</head>
+<body>
+<p>This tests the invalidation behaviour of the paint callback.</p>
+<p>See the devtools console for additional test output.</p>
+<script>
+// TODO(ikilpatrick): Should test shorthands and direction aware properties.
Timothy Loh 2016/05/09 07:07:07 We only have legacy (prefixed) direction aware pro
ikilpatrick 2016/05/10 20:39:37 Done.
+testRunnerInvalidationLogging('background-image', [
+ { property: 'max-height', value: '160px' },
+ { property: 'max-height', prevValue: '100px', value: '160px' },
+ { property: 'max-height', prevValue: '100px', value: 'calc(50px + 50px)', noInvalidation: true },
+ { property: 'max-height', prevValue: '100px', value: 'calc(50px + var(--fiftypx))', noInvalidation: true },
+ { property: 'flex-basis', value: '100px' },
+ { property: 'flex-basis', prevValue: '100px' },
+ { property: 'flex-basis', value: '200px', noInvalidation: true },
+ { property: 'flex-basis', prevValue: '200px', noInvalidation: true },
+ { property: 'color', value: 'red' },
+ { property: 'color', prevValue: '#F00', value: 'red', noInvalidation: true },
+ { property: 'border-top-color', value: 'blue' },
+ { property: 'border-top-color', prevValue: 'rgb(0,0,255)', value: 'blue', noInvalidation: true },
+ { property: '--foo', value: 'foo' },
+ { property: '--foo', prevValue: 'foo', value: 'var(--str)', noInvalidation: true},
+ { property: '--str', value: 'bar'},
+ { property: '--str', value: 'foo', noInvalidation: true },
+]);
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698