blob: e13c3b5a6b6d1f1aa50454de96e4a9daec283f2c [file] [log] [blame]
<html>
<head>
<script src="resources/profiler-test-JS-resources.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText();
if (window.internals)
internals.setJavaScriptProfilingEnabled(true);
function startTest()
{
console.profile("Other window executing JavaScript");
var myFrame = document.getElementById("mySubFrame");
var secret = myFrame.contentWindow.functionInOtherFrame();
insertGivenText(secret);
endTest();
}
function functionInParentFrame() {
return "Pi";
}
</script>
</head>
<body onload="startTest()">
This test has JS executing in another window.
<br>
<br>
To run this test manually, load it in the browser then load the WebInspector and look at
the profile. In the profile there should be a call to functionInOtherFrame().
<div id="output"></div>
<iframe src="resources/other-frame.html" id="mySubFrame"></iframe>
</body>
</html>