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

Side by Side Diff: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.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 <style> 2 <style>
3 div { 3 div {
4 width: 100px; 4 width: 100px;
5 height: 50px; 5 height: 50px;
6 } 6 }
7 #transformed { 7 #transformed {
8 overflow: hidden; 8 overflow: hidden;
9 -webkit-transform: translateZ(0); 9 transform: translateZ(0);
10 height: 100px; 10 height: 100px;
11 width: 100px; 11 width: 100px;
12 12
13 } 13 }
14 #fixed { 14 #fixed {
15 position: fixed; 15 position: fixed;
16 background-color: chartreuse; 16 background-color: chartreuse;
17 width: 100px; 17 width: 100px;
18 height: 100px; 18 height: 100px;
19 top: -50px; 19 top: -50px;
20 } 20 }
21 </style> 21 </style>
22 <div style="background-color: chartreuse;"></div> 22 <div style="background-color: chartreuse;"></div>
23 <div style="background-color: salmon;"></div> 23 <div style="background-color: salmon;"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698