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

Side by Side Diff: LayoutTests/compositing/repaint/content-into-overflow.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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head> 3 <head>
4 <title>Test for bug 25282 (bug 12885 with a repaint container)</title> 4 <title>Test for bug 25282 (bug 12885 with a repaint container)</title>
5 <style type="text/css"> 5 <style type="text/css">
6 div.wrapper { 6 div.wrapper {
7 height: 420px; 7 height: 420px;
8 width: 120px; 8 width: 120px;
9 margin: 20px; 9 margin: 20px;
10 -webkit-transform: translateZ(0); 10 transform: translateZ(0);
11 } 11 }
12 div.outer { position: absolute; } 12 div.outer { position: absolute; }
13 div.wide { width: 100px; height: 50px; } 13 div.wide { width: 100px; height: 50px; }
14 div.narrow { width: 50px; } 14 div.narrow { width: 50px; }
15 div.tall { width: 50px; height: 100px; } 15 div.tall { width: 50px; height: 100px; }
16 div.short { height: 50px; width: 50px; } 16 div.short { height: 50px; width: 50px; }
17 #main-content { float: left; width: 100px; height: 80px; } 17 #main-content { float: left; width: 100px; height: 80px; }
18 #target3 { display: none; clear: both; height: 20px; background: green; } 18 #target3 { display: none; clear: both; height: 20px; background: green; }
19 </style> 19 </style>
20 <script> 20 <script>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 <div style="position: relative;"> 57 <div style="position: relative;">
58 <div id="main-content"> 58 <div id="main-content">
59 </div> 59 </div>
60 </div> 60 </div>
61 <div id="target3"></div> 61 <div id="target3"></div>
62 </div> 62 </div>
63 </div> 63 </div>
64 </div> 64 </div>
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698