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

Side by Side Diff: LayoutTests/compositing/clip-change.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 <script src="../resources/run-after-display.js"></script> 4 <script src="../resources/run-after-display.js"></script>
5 <style> 5 <style>
6 #indicator { 6 #indicator {
7 position: absolute; 7 position: absolute;
8 top: 0px; 8 top: 0px;
9 left: 0px; 9 left: 0px;
10 height: 100px; 10 height: 100px;
11 width: 100px; 11 width: 100px;
12 background-color: red; 12 background-color: red;
13 } 13 }
14 #clipper { 14 #clipper {
15 -webkit-transform:translateZ(0); 15 transform:translateZ(0);
16 position: absolute; 16 position: absolute;
17 top: 0px; 17 top: 0px;
18 left: 0px; 18 left: 0px;
19 height: 100px; 19 height: 100px;
20 width: 100px; 20 width: 100px;
21 background-color: green; 21 background-color: green;
22 clip: rect(25px, 75px, 75px, 25px); 22 clip: rect(25px, 75px, 75px, 25px);
23 } 23 }
24 </style> 24 </style>
25 <script> 25 <script>
(...skipping 13 matching lines...) Expand all
39 }); 39 });
40 } 40 }
41 window.addEventListener("load", doTest, false); 41 window.addEventListener("load", doTest, false);
42 </script> 42 </script>
43 </head> 43 </head>
44 <body> 44 <body>
45 <div id="indicator"></div> 45 <div id="indicator"></div>
46 <div id="clipper"></div> 46 <div id="clipper"></div>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698