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

Side by Side Diff: LayoutTests/compositing/rtl/rtl-fixed-overflow-scrolled.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/run-after-display.js"></script> 3 <script src="../../resources/run-after-display.js"></script>
4 <style> 4 <style>
5 body { 5 body {
6 direction: rtl; 6 direction: rtl;
7 margin: 0px; 7 margin: 0px;
8 background-color: red; 8 background-color: red;
9 } 9 }
10 10
11 .positioned { 11 .positioned {
12 position: fixed; 12 position: fixed;
13 top: 50px; 13 top: 50px;
14 left: 50px; 14 left: 50px;
15 width: 100px; 15 width: 100px;
16 height: 100px; 16 height: 100px;
17 } 17 }
18 18
19 .indicator { 19 .indicator {
20 background-color: red; 20 background-color: red;
21 } 21 }
22 22
23 .layer { 23 .layer {
24 -webkit-transform:translateZ(0); 24 transform:translateZ(0);
25 background-color: green; 25 background-color: green;
26 } 26 }
27 27
28 #root { 28 #root {
29 width: 1000px; 29 width: 1000px;
30 height: 1000px; 30 height: 1000px;
31 background-color: white; 31 background-color: white;
32 } 32 }
33 33
34 #layertree { 34 #layertree {
(...skipping 26 matching lines...) Expand all
61 window.addEventListener('load', doTest, false); 61 window.addEventListener('load', doTest, false);
62 </script> 62 </script>
63 <body> 63 <body>
64 <div id="root"></div> 64 <div id="root"></div>
65 <div class="positioned indicator"></div> 65 <div class="positioned indicator"></div>
66 <div class="positioned layer"></div> 66 <div class="positioned layer"></div>
67 67
68 <pre id="layertree"></pre> 68 <pre id="layertree"></pre>
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/rtl/rtl-fixed-overflow.html ('k') | LayoutTests/compositing/rtl/rtl-overflow-invalidation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698