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

Side by Side Diff: LayoutTests/css3/compositing/background-blend-mode-svg-color.html

Issue 308643002: Teach SVGImage::containerSize() to deduce intrinsic values (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@remove-text-zoom-factor
Patch Set: Lower timeout and use expandedIntSize Created 6 years, 6 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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 div { 5 div {
6 width: 130px; 6 width: 130px;
7 height: 130px; 7 height: 130px;
8 background: url('resources/blue-circle.svg'), green;
8 background-size: 130px 130px; 9 background-size: 130px 130px;
9 background: url('resources/blue-circle.svg'), green;
10 float: left; 10 float: left;
11 margin: 5px; 11 margin: 5px;
12 } 12 }
13 </style> 13 </style>
14 </head> 14 </head>
15 <!-- This file should contain an svg on top of a background color with every typ e of blending. --> 15 <!-- This file should contain an svg on top of a background color with every typ e of blending. -->
16 <body> 16 <body>
17 <div style="background-blend-mode: normal, normal"></div> 17 <div style="background-blend-mode: normal, normal"></div>
18 <div style="background-blend-mode: multiply, normal"></div> 18 <div style="background-blend-mode: multiply, normal"></div>
19 <div style="background-blend-mode: screen, normal"></div> 19 <div style="background-blend-mode: screen, normal"></div>
20 <div style="background-blend-mode: overlay, normal"></div> 20 <div style="background-blend-mode: overlay, normal"></div>
21 <div style="background-blend-mode: darken, normal"></div> 21 <div style="background-blend-mode: darken, normal"></div>
22 <div style="background-blend-mode: lighten, normal"></div> 22 <div style="background-blend-mode: lighten, normal"></div>
23 <div style="background-blend-mode: color-dodge, normal"></div> 23 <div style="background-blend-mode: color-dodge, normal"></div>
24 <div style="background-blend-mode: color-burn, normal"></div> 24 <div style="background-blend-mode: color-burn, normal"></div>
25 <div style="background-blend-mode: hard-light, normal"></div> 25 <div style="background-blend-mode: hard-light, normal"></div>
26 <div style="background-blend-mode: soft-light, normal"></div> 26 <div style="background-blend-mode: soft-light, normal"></div>
27 <div style="background-blend-mode: difference, normal"></div> 27 <div style="background-blend-mode: difference, normal"></div>
28 <div style="background-blend-mode: exclusion, normal"></div> 28 <div style="background-blend-mode: exclusion, normal"></div>
29 <div style="background-blend-mode: hue, normal;"></div> 29 <div style="background-blend-mode: hue, normal;"></div>
30 <div style="background-blend-mode: saturation, normal"></div> 30 <div style="background-blend-mode: saturation, normal"></div>
31 <div style="background-blend-mode: color, normal"></div> 31 <div style="background-blend-mode: color, normal"></div>
32 <div style="background-blend-mode: luminosity, normal"></div> 32 <div style="background-blend-mode: luminosity, normal"></div>
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698