page_dom_nodes.html (502B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <!DOCTYPE html> 4 <html> 5 <head> 6 <meta charset="utf-8"/> 7 <title>DOM test hovering nodes page</title> 8 </head> 9 <body> 10 <h1 id="a">Node highlight test</h1> 11 <h2 id="b">Node highlight test inside object</h2> 12 <script> 13 "use strict"; 14 window.A = document.getElementById("a"); 15 window.B = {_data: document.getElementById("b")}; 16 </script> 17 </body> 18 </html>