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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/reflections/nested-reflection-mask-change.html

Issue 2746583003: Send deprecation messages for prefixed gradients now that it's possible. (Closed)
Patch Set: recommit 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 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <style> 5 <style>
6 .outer { 6 .outer {
7 width: 120px; 7 width: 120px;
8 height: 230px; 8 height: 230px;
9 margin: 20px; 9 margin: 20px;
10 border: 1px solid black; 10 border: 1px solid black;
11 -webkit-box-reflect: right 10px; 11 -webkit-box-reflect: right 10px;
12 } 12 }
13 13
14 .inner { 14 .inner {
15 margin: 10px; 15 margin: 10px;
16 width: 100px; 16 width: 100px;
17 height: 100px; 17 height: 100px;
18 background-color: green; 18 background-color: green;
19 text-align: center; 19 text-align: center;
20 font-size: 50pt; 20 font-size: 50pt;
21 -webkit-box-reflect: below 10px; 21 -webkit-box-reflect: below 10px;
22 } 22 }
23 23
24 .composited { 24 .composited {
25 transform: translateZ(0); 25 transform: translateZ(0);
26 } 26 }
27 27
28 .masked { 28 .masked {
29 -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent ), to(white)); 29 -webkit-mask: linear-gradient(to right, transparent, white);
30 } 30 }
31 </style> 31 </style>
32 <script type="text/javascript" charset="utf-8"> 32 <script type="text/javascript" charset="utf-8">
33 if (window.testRunner) 33 if (window.testRunner)
34 testRunner.waitUntilDone(); 34 testRunner.waitUntilDone();
35 35
36 function doTest() 36 function doTest()
37 { 37 {
38 window.setTimeout(function() { 38 window.setTimeout(function() {
39 document.getElementById('inner').className = 'inner composited masked'; 39 document.getElementById('inner').className = 'inner composited masked';
40 if (window.testRunner) 40 if (window.testRunner)
41 testRunner.notifyDone(); 41 testRunner.notifyDone();
42 }, 0); 42 }, 0);
43 } 43 }
44 window.addEventListener('load', doTest, false); 44 window.addEventListener('load', doTest, false);
45 </script> 45 </script>
46 </head> 46 </head>
47 <body> 47 <body>
48 <p>The four green squares should all have the mask applied.</p> 48 <p>The four green squares should all have the mask applied.</p>
49 <div class="outer box composited"> 49 <div class="outer box composited">
50 <div id="inner" class="inner composited"> 50 <div id="inner" class="inner composited">
51 1 51 1
52 </div> 52 </div>
53 </div> 53 </div>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698