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

Side by Side Diff: LayoutTests/compositing/layer-creation/overflow-scroll-overlap.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 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 6
7 .composited { 7 .composited {
8 height: 30px; 8 height: 30px;
9 width: 30px; 9 width: 30px;
10 -webkit-transform:translateZ(0); 10 transform:translateZ(0);
11 } 11 }
12 12
13 .overflow { 13 .overflow {
14 position: absolute; 14 position: absolute;
15 top: 20px; 15 top: 20px;
16 left: 20px; 16 left: 20px;
17 overflow-y: scroll; 17 overflow-y: scroll;
18 height: 200px; 18 height: 200px;
19 width: 300px; 19 width: 300px;
20 border: solid; 20 border: solid;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 <div class="composited"></div> 63 <div class="composited"></div>
64 64
65 <div id="scroller" class="overflow"> 65 <div id="scroller" class="overflow">
66 <div class="box" style="width: 200px";></div> 66 <div class="box" style="width: 200px";></div>
67 <div class="box" style="width: 210px;"></div> 67 <div class="box" style="width: 210px;"></div>
68 </div> 68 </div>
69 <pre id="results"></pre> 69 <pre id="results"></pre>
70 70
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698