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

Side by Side Diff: LayoutTests/compositing/will-change/containing-block-creation-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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #willChangeTop { 5 #willChangeTop {
6 position: absolute; 6 position: absolute;
7 left: 200px; 7 left: 200px;
8 top: 100px; 8 top: 100px;
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
11 background-color: blue; 11 background-color: blue;
12 color: white; 12 color: white;
13 } 13 }
14 14
15 #willChangeTransform { 15 #willChangeTransform {
16 -webkit-transform: translateZ(0); 16 transform: translateZ(0);
17 position: absolute; 17 position: absolute;
18 left: 200px; 18 left: 200px;
19 top: 300px; 19 top: 300px;
20 width: 100px; 20 width: 100px;
21 height: 100px; 21 height: 100px;
22 background-color: blue; 22 background-color: blue;
23 color: white; 23 color: white;
24 } 24 }
25 25
26 .fixed { 26 .fixed {
(...skipping 15 matching lines...) Expand all
42 will-change: top 42 will-change: top
43 <div class="fixed"></div> 43 <div class="fixed"></div>
44 </div> 44 </div>
45 <div id="willChangeTransform"> 45 <div id="willChangeTransform">
46 will-change: -webkit-transform 46 will-change: -webkit-transform
47 <div class="fixed"></div> 47 <div class="fixed"></div>
48 </div> 48 </div>
49 </body> 49 </body>
50 50
51 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698