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

Side by Side Diff: LayoutTests/fast/overflow/overflow-update-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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .container { 6 .container {
7 overflow: scroll; 7 overflow: scroll;
8 height: 250px; 8 height: 250px;
9 width: 250px; 9 width: 250px;
10 margin: 10px; 10 margin: 10px;
11 border: 1px solid black; 11 border: 1px solid black;
12 } 12 }
13 13
14 .contents { 14 .contents {
15 height: 250px; 15 height: 250px;
16 width: 250px; 16 width: 250px;
17 -webkit-transform: rotate(45deg); 17 transform: rotate(45deg);
18 background-color: silver; 18 background-color: silver;
19 } 19 }
20 </style> 20 </style>
21 </head> 21 </head>
22 <body> 22 <body>
23 <div class="container"> 23 <div class="container">
24 <div class="contents"></div> 24 <div class="contents"></div>
25 </div> 25 </div>
26 26
27 <div class="container"> 27 <div class="container">
28 <img class="contents"> 28 <img class="contents">
29 </div> 29 </div>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698