Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / inspector-enabled / resources / console-log-frame-before-navigation.html
blob6e7ff8110f9e987174024f746fe865bee094d7c1
1 <html>
2 <head>
3 <script>
4 function handleLoad() {
5 console.log("Console message (C) %d with element", 2010, document.documentElement);
7 setTimeout(function() {
8 // Note that localhost is different from the 127.0.0.1 that tests are runnung against. So this navigation
9 // is in fact cross-domain.
10 document.location = "http://localhost:8000/inspector-enabled/resources/console-log-frame-after-navigation.html";
11 }, 0);
13 </script>
14 </head>
15 <body onload="handleLoad()">
16 </body>
17 </html>