RetroZilla/extensions/inspector/resources/content/viewers/dom/commandOverlay.xul

39 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-10-21 05:03:22 +02:00
<?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>