| <!DOCTYPE html> |
| <html> |
| <style> |
| body { margin: 0; } |
| a.disabled, a > * { pointer-events: none; } |
| </style> |
| <body> |
| <a href="#"><span>Link Child</span></a> |
| <a class="disabled" href="#"><span>Disabled Link</span></a> |
| |
| <pre id="results"></pre> |
| <script> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| |
| window.onload = function () { |
| if (window.internals) |
| results.textContent = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_EVENT_REGION | internals.LAYER_TREE_INCLUDES_ROOT_LAYER_PROPERTIES); |
| }; |
| </script> |
| </body> |
| </html> |