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

Side by Side Diff: LayoutTests/compositing/squashing/resources/squash-with-ancestor-property.css

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 #composited-background { 1 #composited-background {
2 width: 100%; 2 width: 100%;
3 height: 100%; 3 height: 100%;
4 -webkit-transform: translateZ(0); 4 transform: translateZ(0);
5 } 5 }
6 6
7 #container { 7 #container {
8 position: relative; 8 position: relative;
9 width: 400px; 9 width: 400px;
10 height: 60px; 10 height: 60px;
11 border: 1px solid black; 11 border: 1px solid black;
12 } 12 }
13 13
14 #composited-overlap-child { 14 #composited-overlap-child {
15 position: absolute; 15 position: absolute;
16 left: 0; 16 left: 0;
17 bottom: 0px; 17 bottom: 0px;
18 width: 100%; 18 width: 100%;
19 height: 60px; 19 height: 60px;
20 background-color: orange; 20 background-color: orange;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698