3 <script src=
"resources/console-clear-arguments-test.js"></script>
6 if (window
.testRunner
) {
7 testRunner
.waitUntilDone();
8 testRunner
.dumpAsText();
12 function frameLoaded(event
) {
14 if (loadCount
=== 1) {
15 document
.getElementById('theFrame').src
= "about:blank";
19 dumpConsoleMessageArgumentCounts();
20 if (window
.testRunner
)
21 testRunner
.notifyDone();
29 Tests that Web Inspector will discard console message arguments when iframe where the message was
30 logged is navigated to a different page.
32 <iframe id=
"theFrame" onload=
"frameLoaded(event)" src=
"resources/console-clear-arguments-iframe.html"></iframe>
33 <div id=
"output"></div>