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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/csspaint/invalidation-border-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 28 matching lines...) Expand all
39 { property: 'border-top-color', value: 'blue' }, 39 { property: 'border-top-color', value: 'blue' },
40 { property: 'border-top-color', prevValue: 'rgb(0,0,255)', value: 'blue', no Invalidation: true }, 40 { property: 'border-top-color', prevValue: 'rgb(0,0,255)', value: 'blue', no Invalidation: true },
41 { property: '--foo', value: 'foo' }, 41 { property: '--foo', value: 'foo' },
42 { property: '--foo', prevValue: 'foo', value: 'var(--str)', noInvalidation: true}, 42 { property: '--foo', prevValue: 'foo', value: 'var(--str)', noInvalidation: true},
43 { property: '--str', value: 'bar'}, 43 { property: '--str', value: 'bar'},
44 { property: '--str', value: 'foo', noInvalidation: true }, 44 { property: '--str', value: 'foo', noInvalidation: true },
45 { property: '--length-inherited', value: '10px'}, 45 { property: '--length-inherited', value: '10px'},
46 { property: '--length-non-inherited', value: '20px'}, 46 { property: '--length-non-inherited', value: '20px'},
47 ]); 47 ]);
48 </script> 48 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698