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

Side by Side Diff: LayoutTests/svg/custom/svg-root-with-opacity.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 display: inline-block; 6 display: inline-block;
7 } 7 }
8 8
9 svg { 9 svg {
10 width: 100px; 10 width: 100px;
11 height: 100px; 11 height: 100px;
12 margin: 10px; 12 margin: 10px;
13 } 13 }
14 </style> 14 </style>
15 </head> 15 </head>
16 <body> 16 <body>
17 Test for crbug.com/373808: this test passes if there are four squares of the s ame color.<br> 17 Test for crbug.com/373808: this test passes if there are four squares of the s ame color.<br>
18 18
19 <div style="opacity: 0.5;"> 19 <div style="opacity: 0.5;">
20 <svg> 20 <svg>
21 <rect width="100" height="100"></rect> 21 <rect width="100" height="100"></rect>
22 </svg> 22 </svg>
23 </div> 23 </div>
24 24
25 <div style="opacity: 0.5; -webkit-transform: translateZ(0);"> 25 <div style="opacity: 0.5; transform: translateZ(0);">
26 <svg> 26 <svg>
27 <rect width="100" height="100"></rect> 27 <rect width="100" height="100"></rect>
28 </svg> 28 </svg>
29 </div> 29 </div>
30 30
31 <div> 31 <div>
32 <svg style="opacity: 0.5;"> 32 <svg style="opacity: 0.5;">
33 <rect width="100" height="100"></rect> 33 <rect width="100" height="100"></rect>
34 </svg> 34 </svg>
35 </div> 35 </div>
36 36
37 <div> 37 <div>
38 <svg style="opacity: 0.5; -webkit-transform: translateZ(0);"> 38 <svg style="opacity: 0.5; transform: translateZ(0);">
39 <rect width="100" height="100"></rect> 39 <rect width="100" height="100"></rect>
40 </svg> 40 </svg>
41 </div> 41 </div>
42 42
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/svg-image-layers-crash.html ('k') | LayoutTests/svg/custom/svg-root-with-opacity-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698