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

Side by Side Diff: LayoutTests/compositing/repaint/requires-backing-repaint.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <script src="../../resources/run-after-display.js"></script> 5 <script src="../../resources/run-after-display.js"></script>
6 <style> 6 <style>
7 .bar { 7 .bar {
8 width: 200px; 8 width: 200px;
9 height: 50px; 9 height: 50px;
10 margin-left: 50px; 10 margin-left: 50px;
11 background-color: gray; 11 background-color: gray;
12 -webkit-transform: translateZ(0); 12 transform: translateZ(0);
13 } 13 }
14 14
15 #overflow { 15 #overflow {
16 position: absolute; 16 position: absolute;
17 top: 70px; 17 top: 70px;
18 left: 100px; 18 left: 100px;
19 z-index: 100; 19 z-index: 100;
20 height: 200px; 20 height: 200px;
21 width: 200px; 21 width: 200px;
22 border: 1px solid black; 22 border: 1px solid black;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 <div id="overflow"> 59 <div id="overflow">
60 <div></div> 60 <div></div>
61 <div></div> 61 <div></div>
62 <div></div> 62 <div></div>
63 <div></div> 63 <div></div>
64 <div></div> 64 <div></div>
65 </div> 65 </div>
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698