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

Side by Side Diff: LayoutTests/compositing/squashing/add-remove-squashed-layers.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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 div { 5 div {
6 position: absolute; 6 position: absolute;
7 z-index: 1; 7 z-index: 1;
8 width: 100px; 8 width: 100px;
9 height: 100px; 9 height: 100px;
10 } 10 }
11 11
12 .composited { 12 .composited {
13 -webkit-transform: translatez(0); 13 transform: translatez(0);
14 top: 60px; 14 top: 60px;
15 left: 60px; 15 left: 60px;
16 width: 400px; 16 width: 400px;
17 height: 400px; 17 height: 400px;
18 background-color: gray; 18 background-color: gray;
19 } 19 }
20 20
21 .overlap1 { 21 .overlap1 {
22 top: 140px; 22 top: 140px;
23 left: 140px; 23 left: 140px;
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 CASE 5, overlap2 gets added back: 184 CASE 5, overlap2 gets added back:
185 <pre id="Case5"></pre> 185 <pre id="Case5"></pre>
186 186
187 CASE 6, overlap1 gets added back, and overlap3 gets removed: 187 CASE 6, overlap1 gets added back, and overlap3 gets removed:
188 <pre id="Case6"></pre> 188 <pre id="Case6"></pre>
189 </div> 189 </div>
190 190
191 </body> 191 </body>
192 192
193 </html> 193 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698