mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE overlay [
|
|
<!ENTITY % dtd1 SYSTEM "chrome://inspector/locale/viewers/dom.dtd"> %dtd1;
|
|
]>
|
|
|
|
<overlay id="ovDOMViewerCommands"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<commandset id="cmdsGlobalCommands">
|
|
<command id="cmd:selectByClick" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').selectByClick()"/>
|
|
|
|
<command id="cmd:find" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').showFindDialog()"/>
|
|
|
|
<command id="cmd:findNext" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').findNext()"/>
|
|
|
|
<command id="cmd:toggleAnon" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').toggleAnonContent(true)"/>
|
|
|
|
<command id="cmd:toggleSubDocs" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').toggleSubDocs()"/>
|
|
|
|
<command id="cmd:toggleWhitespaceNodes" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').toggleWhitespaceNodes()"/>
|
|
|
|
<command id="cmd:flashSelected" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').toggleFlashSelected()"/>
|
|
|
|
<command id="cmd:toggleAttributes" viewer="dom"
|
|
oncommand="inspector.getViewer('dom').toggleAttributes()"/>
|
|
</commandset>
|
|
|
|
</overlay>
|
|
|
|
|