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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/csspaint/invalidation-background-image.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <script src="../resources/testharness.js"></script> 3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 4 <script src="../resources/testharnessreport.js"></script>
5 <script src="../resources/run-after-layout-and-paint.js"></script> 5 <script src="../resources/run-after-layout-and-paint.js"></script>
6 <script src="resources/test-runner-invalidation-logging.js"></script> 6 <script src="resources/test-runner-invalidation-logging.js"></script>
7 <style> 7 <style>
8 div { 8 div {
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 { property: '--str', value: 'foo', noInvalidation: true }, 42 { property: '--str', value: 'foo', noInvalidation: true },
43 { property: '--length-inherited', value: '10px'}, 43 { property: '--length-inherited', value: '10px'},
44 { property: '--length-non-inherited', value: '20px'}, 44 { property: '--length-non-inherited', value: '20px'},
45 { property: '-webkit-border-radius', value: '25px'}, 45 { property: '-webkit-border-radius', value: '25px'},
46 { property: '-webkit-border-radius', invalidationProperty: 'border-radius', value: '25px'}, 46 { property: '-webkit-border-radius', invalidationProperty: 'border-radius', value: '25px'},
47 { property: 'border-radius', invalidationProperty: '-webkit-border-radius', prevValue: '25px'}, 47 { property: 'border-radius', invalidationProperty: '-webkit-border-radius', prevValue: '25px'},
48 { property: '-webkit-border-radius', prevValue: '100px', value: 'calc(50px + 50px)', noInvalidation: true }, 48 { property: '-webkit-border-radius', prevValue: '100px', value: 'calc(50px + 50px)', noInvalidation: true },
49 { property: '-webkit-margin-start', invalidationProperty: 'margin-left', pre vValue: 'calc(50px + 50px)', value: '100px', noInvalidation: true }, 49 { property: '-webkit-margin-start', invalidationProperty: 'margin-left', pre vValue: 'calc(50px + 50px)', value: '100px', noInvalidation: true },
50 ]); 50 ]);
51 </script> 51 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698