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

Side by Side Diff: LayoutTests/css3/blending/mix-blend-mode-composited-layers.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 width: 10px; 6 width: 10px;
7 height: 10px; 7 height: 10px;
8 } 8 }
9 </style> 9 </style>
10 </head> 10 </head>
11 <body> 11 <body>
12 12
13 <!-- Mix-blend-mode should not create a composited layer --> 13 <!-- Mix-blend-mode should not create a composited layer -->
14 <div style="background-color: green"> 14 <div style="background-color: green">
15 <div style="background-color: blue; mix-blend-mode: multiply"></div> 15 <div style="background-color: blue; mix-blend-mode: multiply"></div>
16 </div> 16 </div>
17 17
18 <!-- Mix-blend-mode should create a composited layer when having composited desc endants--> 18 <!-- Mix-blend-mode should create a composited layer when having composited desc endants-->
19 <div style="background-color: green"> 19 <div style="background-color: green">
20 <div style="background-color: blue; mix-blend-mode: multiply"> 20 <div style="background-color: blue; mix-blend-mode: multiply">
21 <div style="background-color: yellow; -webkit-transform: translatez(0);" ></div> 21 <div style="background-color: yellow; transform: translatez(0);"></div>
22 </div> 22 </div>
23 </div> 23 </div>
24 24
25 <pre id="layers">Layer tree appears here in DRT.</pre> 25 <pre id="layers">Layer tree appears here in DRT.</pre>
26 26
27 <script type="text/javascript"> 27 <script type="text/javascript">
28 if (window.testRunner) { 28 if (window.testRunner) {
29 window.testRunner.dumpAsText(); 29 window.testRunner.dumpAsText();
30 document.getElementById('layers').innerHTML = window.internals.layerTree AsText(document); 30 document.getElementById('layers').innerHTML = window.internals.layerTree AsText(document);
31 } 31 }
32 </script> 32 </script>
33 </body> 33 </body>
34 </html> 34 </html>
35 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698