| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |