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

Side by Side Diff: LayoutTests/compositing/layer-creation/no-compositing-for-preserve-3d.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .box { 6 .box {
7 position: relative; 7 position: relative;
8 height: 100px; 8 height: 100px;
9 width: 100px; 9 width: 100px;
10 margin: 10px; 10 margin: 10px;
(...skipping 29 matching lines...) Expand all
40 <body> 40 <body>
41 41
42 <div class="preserve3d"> 42 <div class="preserve3d">
43 This layer should not be composited. 43 This layer should not be composited.
44 <div class="box"></div> 44 <div class="box"></div>
45 </div> 45 </div>
46 </div> 46 </div>
47 47
48 <div class="preserve3d"> 48 <div class="preserve3d">
49 This layer should not be composited. 49 This layer should not be composited.
50 <div class="box" style="-webkit-transform: rotate(10deg)"></div> 50 <div class="box" style="transform: rotate(10deg)"></div>
51 </div> 51 </div>
52 </div> 52 </div>
53 53
54 <div class="preserve3d"> 54 <div class="preserve3d">
55 This layer should be composited. 55 This layer should be composited.
56 <div class="box" style="-webkit-transform: rotateY(10deg)"></div> 56 <div class="box" style="transform: rotateY(10deg)"></div>
57 </div> 57 </div>
58 <pre id="layers">Layer tree goes here in DRT</pre> 58 <pre id="layers">Layer tree goes here in DRT</pre>
59 59
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698