| OLD | NEW |
| 1 <!DOCTYPE> | 1 <!DOCTYPE> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Child layer 3d sorting</title> | 4 <title>Child layer 3d sorting</title> |
| 5 | 5 |
| 6 <style type="text/css" media="screen"> | 6 <style type="text/css" media="screen"> |
| 7 #parent { | 7 #parent { |
| 8 -webkit-transform-style: preserve-3d; | 8 -webkit-transform-style: preserve-3d; |
| 9 -webkit-transform: translateZ(0); | 9 -webkit-transform: translateZ(0); |
| 10 } | 10 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 <body> | 47 <body> |
| 48 <!-- When the test is done, you should see a green square inside the blue square
--> | 48 <!-- When the test is done, you should see a green square inside the blue square
--> |
| 49 | 49 |
| 50 <div id="parent"> | 50 <div id="parent"> |
| 51 <div id="child"> | 51 <div id="child"> |
| 52 <div></div> | 52 <div></div> |
| 53 </div> | 53 </div> |
| 54 </div> | 54 </div> |
| 55 </body> | 55 </body> |
| 56 </html> | 56 </html> |
| OLD | NEW |