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

Side by Side Diff: LayoutTests/compositing/layer-creation/fixed-position-out-of-view-positioning.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 <script src="../../resources/js-test.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script src="../../resources/run-after-display.js"></script> 6 <script src="../../resources/run-after-display.js"></script>
7 <style> 7 <style>
8 .fixed { 8 .fixed {
9 position: fixed; 9 position: fixed;
10 width: 50px; 10 width: 50px;
11 height: 50px; 11 height: 50px;
12 background-color: silver; 12 background-color: silver;
13 } 13 }
14 14
15 .positionedAndTransformed { 15 .positionedAndTransformed {
16 left: 20px; 16 left: 20px;
17 top: -80px; 17 top: -80px;
18 -webkit-transform: translateY(100px); 18 transform: translateY(100px);
19 } 19 }
20 </style> 20 </style>
21 21
22 <script type="text/javascript"> 22 <script type="text/javascript">
23 window.jsTestIsAsync = true; 23 window.jsTestIsAsync = true;
24 24
25 function doTest() { 25 function doTest() {
26 if (!window.internals) 26 if (!window.internals)
27 return; 27 return;
28 28
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 BEFORE: 65 BEFORE:
66 <pre id="layertree1"></pre> 66 <pre id="layertree1"></pre>
67 AFTER: 67 AFTER:
68 <pre id="layertree2"></pre> 68 <pre id="layertree2"></pre>
69 </div> 69 </div>
70 70
71 <div class="positionedAndTransformed fixed"></div> 71 <div class="positionedAndTransformed fixed"></div>
72 </body> 72 </body>
73 </html> 73 </html>
74 74
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698