4 <link rel=
"import" href=
"resources/import-open-inspector-linked.html">
5 <script src=
"../http/tests/inspector/inspector-test.js"></script>
10 return window
.greeting
;
15 InspectorTest
.runTestSuite([
16 function checkGreetingSet(next
)
18 InspectorTest
.evaluateInPage("getGreeting()", callback
);
19 function callback(result
)
21 InspectorTest
.addResult("Received: " + result
.value
);
26 function reloadPage(next
)
28 InspectorTest
.reloadPage(next
);
31 function checkReloaded(next
)
33 InspectorTest
.addResult("Page successfully reloaded");
42 <body onload=
"runTest()">
44 This tests that reloading a page with the inspector opened does not crash (rewritten test from r156199).