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

Side by Side Diff: LayoutTests/compositing/overflow/resize-painting.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 .composited { 5 .composited {
6 -webkit-transform: translateZ(0); 6 transform: translateZ(0);
7 } 7 }
8 8
9 .box { 9 .box {
10 margin: 10px; 10 margin: 10px;
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 z-index: 0; 13 z-index: 0;
14 } 14 }
15 15
16 .resizable { 16 .resizable {
(...skipping 13 matching lines...) Expand all
30 30
31 window.addEventListener('load', doTest, false); 31 window.addEventListener('load', doTest, false);
32 </script> 32 </script>
33 </head> 33 </head>
34 <body> 34 <body>
35 <!-- You should see the resize widget in this element --> 35 <!-- You should see the resize widget in this element -->
36 <div class="resizable composited box"></div> 36 <div class="resizable composited box"></div>
37 <pre id="layers">Layer tree appears here in DRT.</pre> 37 <pre id="layers">Layer tree appears here in DRT.</pre>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698