| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .box { | |
| width: 100px; | |
| height: 100px; | |
| background-color: green; | |
| border: 2px solid blue; | |
| } | |
| .composited { | |
| -webkit-transform: translateZ(0); | |
| } | |
| </style> | |
| <script src="resources/dump-target-display-list.js"></script> | |
| </head> | |
| <body> | |
| <div id="target" class="composited box"> | |
| </div> | |
| <pre id="output"></pre> | |
| </body> | |
| </html> |