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

Side by Side Diff: third_party/WebKit/LayoutTests/images/color-profile-mask-image-svg.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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 <html> 2 <html>
3 <script src="../../resources/run-after-layout-and-paint.js"></script> 3 <script src="../resources/run-after-layout-and-paint.js"></script>
4 4
5 <style> 5 <style>
6 img { 6 img {
7 -webkit-mask: url(resources/color-profile-mask-image.svg) top left; 7 -webkit-mask: url(resources/color-profile-mask-image.svg) top left;
8 -webkit-mask-size: 33% 33%; 8 -webkit-mask-size: 33% 33%;
9 -webkit-mask-repeat: space; 9 -webkit-mask-repeat: space;
10 width: 380px; 10 width: 380px;
11 } 11 }
12 </style> 12 </style>
13 13
(...skipping 25 matching lines...) Expand all
39 function done() { 39 function done() {
40 setTimeout(function() { testRunner.notifyDone() }, 0); 40 setTimeout(function() { testRunner.notifyDone() }, 0);
41 } 41 }
42 42
43 if (window.testRunner) { 43 if (window.testRunner) {
44 testRunner.dumpAsTextWithPixelResults(); 44 testRunner.dumpAsTextWithPixelResults();
45 testRunner.waitUntilDone(); 45 testRunner.waitUntilDone();
46 } 46 }
47 </script> 47 </script>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698