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";
15 <body onload=
"handleLoad()">