| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style> | 5 <style> |
| 6 body { | 6 body { |
| 7 overflow: hidden; | 7 overflow: hidden; |
| 8 } | 8 } |
| 9 .flipped { | 9 .flipped { |
| 10 margin: 10px; | 10 margin: 10px; |
| 11 height: 200px; | 11 height: 200px; |
| 12 width: 250px; | 12 width: 250px; |
| 13 background-color: silver; | 13 background-color: silver; |
| 14 -webkit-writing-mode: vertical-rl; | 14 -webkit-writing-mode: vertical-rl; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .box { | 17 .box { |
| 18 height: 100px; | 18 height: 100px; |
| 19 width: 100px; | 19 width: 100px; |
| 20 margin: 10px 20px; | 20 margin: 10px 20px; |
| 21 background-color: blue; | 21 background-color: blue; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .composited { | 24 .composited { |
| 25 -webkit-transform: translateZ(0); | 25 transform: translateZ(0); |
| 26 } | 26 } |
| 27 | 27 |
| 28 .block { | 28 .block { |
| 29 width: 20px; | 29 width: 20px; |
| 30 height: 80px; | 30 height: 80px; |
| 31 margin: 5px; | 31 margin: 5px; |
| 32 background-color: green; | 32 background-color: green; |
| 33 } | 33 } |
| 34 | 34 |
| 35 #layers { | 35 #layers { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 60 <div class="block"></div> | 60 <div class="block"></div> |
| 61 <div class="block"></div> | 61 <div class="block"></div> |
| 62 <div class="block"></div> | 62 <div class="block"></div> |
| 63 <div class="block"></div> | 63 <div class="block"></div> |
| 64 </div> | 64 </div> |
| 65 </div> | 65 </div> |
| 66 | 66 |
| 67 <pre id="layers">Layer tree goes here in DRT</pre> | 67 <pre id="layers">Layer tree goes here in DRT</pre> |
| 68 </body> | 68 </body> |
| 69 </html> | 69 </html> |
| OLD | NEW |