Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / chrome / test / data / dom_automation / wait / test.html
blob2a7941a0e3b2a77df58ff171353b137007c0943f
1 <html>
2 <script>
3 window.onload = function() {
4 window.setTimeout(function() {
5 document.getElementById("anchor").href = "http://www.google.com";
6 }, 2000);
8 window.setTimeout(function() {
9 var div = document.createElement("div");
10 div.innerHTML = "div_inner";
11 document.body.appendChild(div);
12 }, 2000);
14 window.setTimeout(function() {
15 document.body.removeChild(document.querySelector("img"));
16 }, 2000);
18 </script>
19 <a id="anchor"></a>
20 <img width=100 height=100>
21 </html>