1234567891011121314151617 |
- <!DOCTYPE HTML>
- <html dir="ltr" xml:lang="en-US" lang="en-US">
- <head>
- <meta charset="utf-8">
- <title>Console mutation test</title>
- <script>
- window.onload = function (){
- var node = document.createElement("div");
- document.body.appendChild(node);
- };
- </script>
- </head>
- <body>
- <h1>Heads Up Display DOM Mutation Test Page</h1>
- </body>
- </html>
|