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

Side by Side Diff: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <style> 2 <style>
3 #transformed { 3 #transformed {
4 overflow: hidden; 4 overflow: hidden;
5 -webkit-transform: translateZ(0); 5 transform: translateZ(0);
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 background-color: salmon; 8 background-color: salmon;
9 } 9 }
10 #fixed { 10 #fixed {
11 position: fixed; 11 position: fixed;
12 background-color: chartreuse; 12 background-color: chartreuse;
13 width: 100px; 13 width: 100px;
14 height: 100px; 14 height: 100px;
15 top: -50px; 15 top: -50px;
16 } 16 }
17 </style> 17 </style>
18 <div id="transformed"> 18 <div id="transformed">
19 <div id="fixed"></div> 19 <div id="fixed"></div>
20 </div> 20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698