| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 div { | 5 div { |
| 6 -webkit-transform:translateZ(0); | 6 transform:translateZ(0); |
| 7 position: absolute; | 7 position: absolute; |
| 8 top: 100px; | 8 top: 100px; |
| 9 left: 0px; | 9 left: 0px; |
| 10 width: 300px; | 10 width: 300px; |
| 11 height: 300px; | 11 height: 300px; |
| 12 background-color: green; | 12 background-color: green; |
| 13 z-index: 2; | 13 z-index: 2; |
| 14 } | 14 } |
| 15 video { | 15 video { |
| 16 position: absolute; | 16 position: absolute; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 43 <body onload="runTest()"> | 43 <body onload="runTest()"> |
| 44 <!-- video controls should appear in their own layer --> | 44 <!-- video controls should appear in their own layer --> |
| 45 <video controls> | 45 <video controls> |
| 46 </video> | 46 </video> |
| 47 | 47 |
| 48 <!-- this div is beneath the video in a stacking context and should thro
ugh the video into compositing due to overlap --> | 48 <!-- this div is beneath the video in a stacking context and should thro
ugh the video into compositing due to overlap --> |
| 49 <div></div> | 49 <div></div> |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| 52 | 52 |
| OLD | NEW |