2007-03-22 10:30:00 -07:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Control Frame</title>
|
|
|
|
</head>
|
|
|
|
|
2010-03-03 02:12:28 -08:00
|
|
|
<script type="application/javascript">
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
const nsILayoutDebuggingTools = Components.interfaces.nsILayoutDebuggingTools;
|
|
|
|
var gDebugTools;
|
|
|
|
|
|
|
|
function Init()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools = Components.classes["@mozilla.org/layout-debug/layout-debuggingtools;1"].createInstance(nsILayoutDebuggingTools);
|
|
|
|
gDebugTools.init(window.frames.pageframe);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetShowFrameBorders(inShow)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.visualDebugging = inShow;
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetShowEventTargetBorders(inShow)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.visualEventDebugging = inShow;
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetShowReflowStats(inShow)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.reflowCounts = inShow;
|
|
|
|
}
|
|
|
|
|
|
|
|
function DumpFrames()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.dumpFrames();
|
|
|
|
}
|
|
|
|
|
|
|
|
function DumpContent()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.dumpContent();
|
|
|
|
}
|
|
|
|
|
|
|
|
function DumpViews()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.dumpViews();
|
|
|
|
}
|
|
|
|
|
|
|
|
function DumpWebShells()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
gDebugTools.dumpWebShells();
|
|
|
|
}
|
|
|
|
|
|
|
|
function InputKey(inEvent)
|
|
|
|
{
|
|
|
|
if (inEvent.keyCode == KeyEvent.DOM_VK_ENTER || inEvent.keyCode == KeyEvent.DOM_VK_RETURN)
|
|
|
|
{
|
|
|
|
var pageFrame = window.frames.pageframe;
|
|
|
|
pageFrame.location.href = document.dumpform.urlfield.value;
|
|
|
|
inEvent.preventDefault(); // avoid form submit on hitting return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function IframeLoaded()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
document.dumpform.urlfield.value = window.frames.pageframe.location.href;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<body onload="Init()">
|
|
|
|
|
|
|
|
<form name="dumpform">
|
|
|
|
<div style="margin-bottom: 5px">
|
|
|
|
URL: <input type="text" size="100" name="urlfield" value="http://www.mozilla.org" onkeypress="InputKey(event)"></input>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="button" value="Dump Frames" onclick="DumpFrames()">
|
|
|
|
<input type="button" value="Dump Content" onclick="DumpContent()">
|
|
|
|
<input type="button" value="Dump Views" onclick="DumpViews()">
|
|
|
|
<input type="button" value="Dump WebShells" onclick="DumpWebShells()">
|
|
|
|
|
|
|
|
<input type="checkbox" id="showBordersCheck" name="showBordersCheck"
|
|
|
|
onchange="SetShowFrameBorders(document.dumpform.showBordersCheck.checked)"></input>
|
|
|
|
<label for="showBordersCheck">Show Frame Borders</label>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<iframe name="pageframe" style="border: 1px solid black; width:800px; height:800px;" onload="IframeLoaded()"></iframe>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|