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

Side by Side Diff: LayoutTests/compositing/iframes/resources/scrollgrandchild-grandparent.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 #trigger { 4 #trigger {
5 -webkit-transform:translateZ(0); 5 transform:translateZ(0);
6 } 6 }
7 #parent { 7 #parent {
8 width: 350px; 8 width: 350px;
9 height: 450px; 9 height: 450px;
10 border: none; 10 border: none;
11 position: absolute; 11 position: absolute;
12 -webkit-transform: translate(200px, 0px); 12 transform: translate(200px, 0px);
13 } 13 }
14 </style> 14 </style>
15 </head> 15 </head>
16 <body> 16 <body>
17 <div id="trigger"></div> 17 <div id="trigger"></div>
18 <iframe id="parent" src="scrollgrandchild-parent.html"></iframe> 18 <iframe id="parent" src="scrollgrandchild-parent.html"></iframe>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698