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

Side by Side Diff: LayoutTests/compositing/rtl/rtl-relative.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 <style> 3 <style>
4 body { 4 body {
5 direction: rtl; 5 direction: rtl;
6 overflow: hidden; 6 overflow: hidden;
7 } 7 }
8 8
9 #indicator { 9 #indicator {
10 position: absolute; 10 position: absolute;
11 top: 58px; 11 top: 58px;
12 left: 642px; 12 left: 642px;
13 width: 100px; 13 width: 100px;
14 height: 100px; 14 height: 100px;
15 background-color: red; 15 background-color: red;
16 } 16 }
17 17
18 #layer { 18 #layer {
19 -webkit-transform:translateZ(0); 19 transform:translateZ(0);
20 position: relative; 20 position: relative;
21 top: 50px; 21 top: 50px;
22 right: 50px; 22 right: 50px;
23 width: 100px; 23 width: 100px;
24 height: 100px; 24 height: 100px;
25 background-color: green; 25 background-color: green;
26 } 26 }
27 27
28 #layertree { 28 #layertree {
29 position: absolute; 29 position: absolute;
(...skipping 11 matching lines...) Expand all
41 } 41 }
42 window.addEventListener('load', doTest, false); 42 window.addEventListener('load', doTest, false);
43 </script> 43 </script>
44 <body> 44 <body>
45 <div id="indicator"></div> 45 <div id="indicator"></div>
46 <div id="layer"></div> 46 <div id="layer"></div>
47 47
48 <pre id="layertree"></pre> 48 <pre id="layertree"></pre>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698