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

Side by Side Diff: LayoutTests/compositing/overflow/scrolls-with-respect-to-transform.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 id='root'> 2 <html id='root'>
3 <head> 3 <head>
4 <style> 4 <style>
5 div { 5 div {
6 height: 50px; 6 height: 50px;
7 width: 50px; 7 width: 50px;
8 padding: 3px; 8 padding: 3px;
9 border-style: solid; 9 border-style: solid;
10 border-color: black; 10 border-color: black;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 pre.appendChild(text); 58 pre.appendChild(text);
59 } 59 }
60 } 60 }
61 } 61 }
62 62
63 window.onload = doTest; 63 window.onload = doTest;
64 </script> 64 </script>
65 </head> 65 </head>
66 <body> 66 <body>
67 <div id='fixed' style='position: fixed'></div> 67 <div id='fixed' style='position: fixed'></div>
68 <div id='container' style='height: 350px; width: 500px; -webkit-transfor m:rotate(15deg); position:relative; top:150px; left: 150px'> 68 <div id='container' style='height: 350px; width: 500px; transform:rotate (15deg); position:relative; top:150px; left: 150px'>
69 <div id='overflow-child' style='overflow:scroll'></div> 69 <div id='overflow-child' style='overflow:scroll'></div>
70 <div id='abs-descendant'></div> 70 <div id='abs-descendant'></div>
71 <div id='fixed-descendant'></div> 71 <div id='fixed-descendant'></div>
72 <div class='filler'></div> 72 <div class='filler'></div>
73 </div> 73 </div>
74 74
75 <pre id='console'></pre> 75 <pre id='console'></pre>
76 <div id='viewportFiller' class='filler'></div> 76 <div id='viewportFiller' class='filler'></div>
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698