gitextract__6ei82a5/ ├── LICENSE ├── Makefile.in ├── README.md ├── app/ │ ├── Makefile.in │ ├── Makefile.in.debug │ ├── Makefile.in.test │ ├── application.ini │ ├── bluegriffon.exe.manifest │ ├── icons/ │ │ ├── bluegriffon16.xpm │ │ └── bluegriffon50.xpm │ ├── macbuild/ │ │ └── Contents/ │ │ ├── Info.plist.in │ │ ├── MacOS-files.in │ │ └── Resources/ │ │ ├── English.lproj/ │ │ │ └── InfoPlist.strings.in │ │ └── bluegriffon.icns │ ├── macversion.py │ ├── moz.build │ ├── mozilla.in │ ├── nsEditorApp.cpp │ ├── profile/ │ │ ├── bluegriffon-prefs.js │ │ ├── channel-prefs.js │ │ └── prefs.js │ ├── splash.rc │ └── splashos2.rc ├── app-rules.mk ├── app.mozbuild ├── base/ │ ├── Makefile.in │ ├── content/ │ │ └── bluegriffon/ │ │ ├── EditorAllTags.css │ │ ├── EditorContent.css │ │ ├── EditorContentAnchors.css │ │ ├── EditorOverride.css │ │ ├── bindings/ │ │ │ ├── cssClassPicker.xml │ │ │ ├── deckedPanelsTabs.xml │ │ │ ├── ecolorpicker.xml │ │ │ ├── filepickerbutton.css │ │ │ ├── filepickerbutton.xml │ │ │ ├── floatingpanel.xml │ │ │ ├── inContext.xml │ │ │ ├── lengthbox.xml │ │ │ ├── media.xml │ │ │ ├── menulist.xml │ │ │ ├── multistate.css │ │ │ ├── multistate.xml │ │ │ ├── rotator.xml │ │ │ ├── rulers.xml │ │ │ ├── structurebar.css │ │ │ ├── structurebar.xml │ │ │ ├── tab.xml │ │ │ └── tabeditor.xml │ │ ├── credits.xhtml │ │ ├── dialogs/ │ │ │ ├── aboutDialog.js │ │ │ ├── aboutDialog.xul │ │ │ ├── convertClipboardToTable.js │ │ │ ├── convertClipboardToTable.xul │ │ │ ├── convertToTable.js │ │ │ ├── convertToTable.xul │ │ │ ├── dictionary.js │ │ │ ├── dictionary.xul │ │ │ ├── editStylesheet.js │ │ │ ├── editStylesheet.xul │ │ │ ├── form-common.js │ │ │ ├── insertAnchor.js │ │ │ ├── insertAnchor.xul │ │ │ ├── insertAudio.js │ │ │ ├── insertAudio.xul │ │ │ ├── insertButton.js │ │ │ ├── insertButton.xul │ │ │ ├── insertChars.js │ │ │ ├── insertChars.xul │ │ │ ├── insertCommentOrPI.js │ │ │ ├── insertCommentOrPI.xul │ │ │ ├── insertDatalist.js │ │ │ ├── insertDatalist.xul │ │ │ ├── insertFieldset.js │ │ │ ├── insertFieldset.xul │ │ │ ├── insertForm.js │ │ │ ├── insertForm.xul │ │ │ ├── insertFormInput.js │ │ │ ├── insertFormInput.xul │ │ │ ├── insertHR.js │ │ │ ├── insertHR.xul │ │ │ ├── insertHTML.js │ │ │ ├── insertHTML.xul │ │ │ ├── insertImage.js │ │ │ ├── insertImage.xul │ │ │ ├── insertKeygen.js │ │ │ ├── insertKeygen.xul │ │ │ ├── insertLabel.js │ │ │ ├── insertLabel.xul │ │ │ ├── insertLink.js │ │ │ ├── insertLink.xul │ │ │ ├── insertMeter.js │ │ │ ├── insertMeter.xul │ │ │ ├── insertOutput.js │ │ │ ├── insertOutput.xul │ │ │ ├── insertProgress.js │ │ │ ├── insertProgress.xul │ │ │ ├── insertSelect.js │ │ │ ├── insertSelect.xul │ │ │ ├── insertStylesheet.js │ │ │ ├── insertStylesheet.xul │ │ │ ├── insertTOC.js │ │ │ ├── insertTOC.xul │ │ │ ├── insertTable.js │ │ │ ├── insertTable.xul │ │ │ ├── insertTextarea.js │ │ │ ├── insertTextarea.xul │ │ │ ├── insertVideo.js │ │ │ ├── insertVideo.xul │ │ │ ├── languages.js │ │ │ ├── languages.xul │ │ │ ├── listProperties.js │ │ │ ├── listProperties.xul │ │ │ ├── markupCleaner.js │ │ │ ├── markupCleaner.xul │ │ │ ├── newDocument.js │ │ │ ├── newDocument.xul │ │ │ ├── newPageWizard.js │ │ │ ├── newPageWizard.xul │ │ │ ├── openLocation.js │ │ │ ├── openLocation.xul │ │ │ ├── pageProperties.js │ │ │ ├── pageProperties.xul │ │ │ ├── parsingError.js │ │ │ ├── parsingError.xul │ │ │ ├── releaseNotes.xul │ │ │ ├── spellCheck.js │ │ │ ├── spellCheck.xul │ │ │ ├── updateAvailable.js │ │ │ └── updateAvailable.xul │ │ ├── js/ │ │ │ ├── autoInsertTable.inc │ │ │ ├── beautify-html.js │ │ │ ├── blanks.inc │ │ │ ├── bluegriffon.js │ │ │ ├── colourPicker.js │ │ │ ├── commands.js │ │ │ ├── customize.js │ │ │ ├── dummyCommands.inc │ │ │ ├── editCommands.inc │ │ │ ├── fileCommands.inc │ │ │ ├── findbar.inc │ │ │ ├── formatCommands.inc │ │ │ ├── html5.js │ │ │ ├── inContext.js │ │ │ ├── insertionCommands.inc │ │ │ ├── languages.js │ │ │ ├── liveview.inc │ │ │ ├── macWindowMenu.js │ │ │ ├── markupCleaner.js │ │ │ ├── navigationCommands.inc │ │ │ ├── observers.inc │ │ │ ├── phpAndComments.inc │ │ │ ├── printCommands.inc │ │ │ ├── rebuildTOC-old.js │ │ │ ├── rebuildTOC.js │ │ │ ├── recentPages.js │ │ │ ├── recentPages.js2 │ │ │ ├── shutdown.inc │ │ │ ├── startup.inc │ │ │ ├── tableCommands.inc │ │ │ ├── tableResizer.js │ │ │ ├── updateManager.js │ │ │ ├── viewCommands.inc │ │ │ └── zoomManager.js │ │ ├── prefs/ │ │ │ ├── advanced.js │ │ │ ├── advanced.xul │ │ │ ├── connection.js │ │ │ ├── connection.xul │ │ │ ├── deactivateLicense.js │ │ │ ├── deactivateLicense.xul │ │ │ ├── editShortcut.js │ │ │ ├── editShortcut.xul │ │ │ ├── file.js │ │ │ ├── file.xul │ │ │ ├── general.xul │ │ │ ├── license.js │ │ │ ├── license.xul │ │ │ ├── newPage.js │ │ │ ├── newPage.xul │ │ │ ├── osx.js │ │ │ ├── osx.xul │ │ │ ├── prefs.js │ │ │ ├── prefs.xul │ │ │ ├── shortcuts.js │ │ │ ├── shortcuts.xul │ │ │ ├── source.js │ │ │ ├── source.xul │ │ │ ├── styles.js │ │ │ ├── styles.xul │ │ │ ├── update.js │ │ │ └── update.xul │ │ ├── txns/ │ │ │ ├── diChangeFileStylesheetTxn.js │ │ │ ├── diCommentOrPIChangeTxn.js │ │ │ ├── diInnerHtmlChangedTxn.js │ │ │ ├── diNodeDeletionTxn.js │ │ │ ├── diNodeInsertionTxn.js │ │ │ ├── diRemoveAttributeNSTxn.js │ │ │ ├── diSetAttributeNSTxn.js │ │ │ └── diStyleAttrChangeTxn.js │ │ ├── utils/ │ │ │ ├── dgid.js │ │ │ ├── global.js │ │ │ ├── login.js │ │ │ └── notifiers.js │ │ └── xul/ │ │ ├── autoInsertTable.inc │ │ ├── bluegriffon.xul │ │ ├── colourPicker.xul │ │ ├── extensionsOverlay.xul │ │ ├── findbar.inc │ │ ├── formatbarpalette.inc │ │ ├── formatmenulistsbarpalette.inc │ │ ├── hiddenWindow.xul │ │ ├── macWindowMenu.inc │ │ ├── maintoolbarpalette.inc │ │ ├── menubar.inc │ │ ├── overlays.inc │ │ ├── popups.inc │ │ ├── scripts.inc │ │ └── sets.inc │ ├── jar.mn │ ├── jar.mn.in │ ├── locale/ │ │ └── en-US/ │ │ └── bluegriffon/ │ │ └── prefs/ │ │ ├── license.properties │ │ └── newPage.dtd │ ├── moz.build │ └── res/ │ ├── base-min.css │ ├── cm2.html │ ├── codemirror/ │ │ ├── addon/ │ │ │ ├── comment/ │ │ │ │ ├── comment.js │ │ │ │ └── continuecomment.js │ │ │ ├── dialog/ │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── display/ │ │ │ │ ├── fullscreen.css │ │ │ │ ├── fullscreen.js │ │ │ │ ├── panel.js │ │ │ │ ├── placeholder.js │ │ │ │ └── rulers.js │ │ │ ├── edit/ │ │ │ │ ├── closebrackets.js │ │ │ │ ├── closetag.js │ │ │ │ ├── continuelist.js │ │ │ │ ├── matchbrackets.js │ │ │ │ ├── matchtags.js │ │ │ │ └── trailingspace.js │ │ │ ├── fold/ │ │ │ │ ├── brace-fold.js │ │ │ │ ├── comment-fold.js │ │ │ │ ├── foldcode.js │ │ │ │ ├── foldgutter.css │ │ │ │ ├── foldgutter.js │ │ │ │ ├── indent-fold.js │ │ │ │ ├── markdown-fold.js │ │ │ │ └── xml-fold.js │ │ │ ├── hint/ │ │ │ │ ├── anyword-hint.js │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ ├── sql-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint/ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ ├── css-lint.js │ │ │ │ ├── javascript-lint.js │ │ │ │ ├── json-lint.js │ │ │ │ ├── lint.css │ │ │ │ ├── lint.js │ │ │ │ └── yaml-lint.js │ │ │ ├── merge/ │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── mode/ │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ ├── multiplex_test.js │ │ │ │ ├── overlay.js │ │ │ │ └── simple.js │ │ │ ├── runmode/ │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── scroll/ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ ├── scrollpastend.js │ │ │ │ ├── simplescrollbars.css │ │ │ │ └── simplescrollbars.js │ │ │ ├── search/ │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── selection/ │ │ │ │ ├── active-line.js │ │ │ │ ├── mark-selection.js │ │ │ │ └── selection-pointer.js │ │ │ ├── tern/ │ │ │ │ ├── tern.css │ │ │ │ ├── tern.js │ │ │ │ └── worker.js │ │ │ └── wrap/ │ │ │ └── hardwrap.js │ │ ├── lib/ │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── mode/ │ │ │ ├── apl/ │ │ │ │ ├── apl.js │ │ │ │ └── index.html │ │ │ ├── asciiarmor/ │ │ │ │ ├── asciiarmor.js │ │ │ │ └── index.html │ │ │ ├── asterisk/ │ │ │ │ ├── asterisk.js │ │ │ │ └── index.html │ │ │ ├── clike/ │ │ │ │ ├── clike.js │ │ │ │ ├── index.html │ │ │ │ └── scala.html │ │ │ ├── clojure/ │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── cmake/ │ │ │ │ ├── cmake.js │ │ │ │ └── index.html │ │ │ ├── cobol/ │ │ │ │ ├── cobol.js │ │ │ │ └── index.html │ │ │ ├── coffeescript/ │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── commonlisp/ │ │ │ │ ├── commonlisp.js │ │ │ │ └── index.html │ │ │ ├── css/ │ │ │ │ ├── css.js │ │ │ │ ├── index.html │ │ │ │ ├── less.html │ │ │ │ ├── less_test.js │ │ │ │ ├── scss.html │ │ │ │ ├── scss_test.js │ │ │ │ └── test.js │ │ │ ├── cypher/ │ │ │ │ ├── cypher.js │ │ │ │ └── index.html │ │ │ ├── d/ │ │ │ │ ├── d.js │ │ │ │ └── index.html │ │ │ ├── dart/ │ │ │ │ ├── dart.js │ │ │ │ └── index.html │ │ │ ├── diff/ │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── django/ │ │ │ │ ├── django.js │ │ │ │ └── index.html │ │ │ ├── dockerfile/ │ │ │ │ ├── dockerfile.js │ │ │ │ └── index.html │ │ │ ├── dtd/ │ │ │ │ ├── dtd.js │ │ │ │ └── index.html │ │ │ ├── dylan/ │ │ │ │ ├── dylan.js │ │ │ │ └── index.html │ │ │ ├── ebnf/ │ │ │ │ ├── ebnf.js │ │ │ │ └── index.html │ │ │ ├── ecl/ │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── eiffel/ │ │ │ │ ├── eiffel.js │ │ │ │ └── index.html │ │ │ ├── erlang/ │ │ │ │ ├── erlang.js │ │ │ │ └── index.html │ │ │ ├── forth/ │ │ │ │ ├── forth.js │ │ │ │ └── index.html │ │ │ ├── fortran/ │ │ │ │ ├── fortran.js │ │ │ │ └── index.html │ │ │ ├── gas/ │ │ │ │ ├── gas.js │ │ │ │ └── index.html │ │ │ ├── gfm/ │ │ │ │ ├── gfm.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── gherkin/ │ │ │ │ ├── gherkin.js │ │ │ │ └── index.html │ │ │ ├── go/ │ │ │ │ ├── go.js │ │ │ │ └── index.html │ │ │ ├── groovy/ │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haml/ │ │ │ │ ├── haml.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── handlebars/ │ │ │ │ ├── handlebars.js │ │ │ │ └── index.html │ │ │ ├── haskell/ │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── haxe/ │ │ │ │ ├── haxe.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded/ │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed/ │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── http/ │ │ │ │ ├── http.js │ │ │ │ └── index.html │ │ │ ├── idl/ │ │ │ │ ├── idl.js │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── jade/ │ │ │ │ ├── index.html │ │ │ │ └── jade.js │ │ │ ├── javascript/ │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── json-ld.html │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2/ │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── julia/ │ │ │ │ ├── index.html │ │ │ │ └── julia.js │ │ │ ├── kotlin/ │ │ │ │ ├── index.html │ │ │ │ └── kotlin.js │ │ │ ├── livescript/ │ │ │ │ ├── index.html │ │ │ │ └── livescript.js │ │ │ ├── lua/ │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown/ │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── meta.js │ │ │ ├── mirc/ │ │ │ │ ├── index.html │ │ │ │ └── mirc.js │ │ │ ├── mllike/ │ │ │ │ ├── index.html │ │ │ │ └── mllike.js │ │ │ ├── modelica/ │ │ │ │ ├── index.html │ │ │ │ └── modelica.js │ │ │ ├── mumps/ │ │ │ │ ├── index.html │ │ │ │ └── mumps.js │ │ │ ├── nginx/ │ │ │ │ ├── index.html │ │ │ │ └── nginx.js │ │ │ ├── ntriples/ │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── octave/ │ │ │ │ ├── index.html │ │ │ │ └── octave.js │ │ │ ├── pascal/ │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── pegjs/ │ │ │ │ ├── index.html │ │ │ │ └── pegjs.js │ │ │ ├── perl/ │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php/ │ │ │ │ ├── index.html │ │ │ │ ├── php.js │ │ │ │ └── test.js │ │ │ ├── pig/ │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── properties/ │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── puppet/ │ │ │ │ ├── index.html │ │ │ │ └── puppet.js │ │ │ ├── python/ │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── q/ │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r/ │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm/ │ │ │ │ ├── changes/ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── rpm.js │ │ │ ├── rst/ │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby/ │ │ │ │ ├── index.html │ │ │ │ ├── ruby.js │ │ │ │ └── test.js │ │ │ ├── rust/ │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── sass/ │ │ │ │ ├── index.html │ │ │ │ └── sass.js │ │ │ ├── scheme/ │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell/ │ │ │ │ ├── index.html │ │ │ │ ├── shell.js │ │ │ │ └── test.js │ │ │ ├── sieve/ │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── slim/ │ │ │ │ ├── index.html │ │ │ │ ├── slim.js │ │ │ │ └── test.js │ │ │ ├── smalltalk/ │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty/ │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── solr/ │ │ │ │ ├── index.html │ │ │ │ └── solr.js │ │ │ ├── soy/ │ │ │ │ ├── index.html │ │ │ │ └── soy.js │ │ │ ├── sparql/ │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── spreadsheet/ │ │ │ │ ├── index.html │ │ │ │ └── spreadsheet.js │ │ │ ├── sql/ │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex/ │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── stylus/ │ │ │ │ ├── index.html │ │ │ │ └── stylus.js │ │ │ ├── tcl/ │ │ │ │ ├── index.html │ │ │ │ └── tcl.js │ │ │ ├── textile/ │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── textile.js │ │ │ ├── tiddlywiki/ │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki/ │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── toml/ │ │ │ │ ├── index.html │ │ │ │ └── toml.js │ │ │ ├── tornado/ │ │ │ │ ├── index.html │ │ │ │ └── tornado.js │ │ │ ├── troff/ │ │ │ │ ├── index.html │ │ │ │ └── troff.js │ │ │ ├── turtle/ │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── vb/ │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript/ │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity/ │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog/ │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── verilog.js │ │ │ ├── xml/ │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xml.js │ │ │ ├── xquery/ │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yaml/ │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80/ │ │ │ ├── index.html │ │ │ └── z80.js │ │ ├── theme/ │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── colorforth.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── liquibyte.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── neo.css │ │ │ ├── night.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ ├── xq-light.css │ │ │ └── zenburn.css │ │ └── themes-list.js │ ├── csseditor.html │ ├── html5.html │ ├── html_strict.html │ ├── html_transitional.html │ ├── markdowneditor.html │ ├── polyglot.xhtml │ ├── reset-fonts-grids.css │ ├── scripteditor.html │ ├── xhtml11.xhtml │ ├── xhtml5.xhtml │ ├── xhtml_strict.html │ ├── xhtml_strict.xhtml │ ├── xhtml_transitional.html │ └── xhtml_transitional.xhtml ├── branding/ │ ├── Makefile.in │ ├── bluegriffon.icns │ ├── branding.nsi │ ├── configure.sh │ ├── disk.icns │ ├── document.icns │ ├── dsstore │ └── moz.build ├── build.mk ├── components/ │ ├── Makefile.in │ ├── bgCharUnicodeAutocomplete.js │ ├── bgCharUnicodeAutocomplete.manifest │ ├── bgCommandHandler.js │ ├── bgCommandHandler.manifest │ ├── bgLocationAutocomplete.js │ ├── bgLocationAutocomplete.manifest │ ├── devtools/ │ │ ├── content/ │ │ │ ├── dbg-messenger-overlay.js │ │ │ └── dbg-messenger-overlay.xul │ │ ├── extension/ │ │ │ ├── Makefile.in │ │ │ ├── bootstrap.js │ │ │ ├── content/ │ │ │ │ ├── options.js │ │ │ │ └── options.xul │ │ │ ├── install.rdf │ │ │ ├── jar.mn │ │ │ ├── locale/ │ │ │ │ └── en-US/ │ │ │ │ ├── dbgserver.dtd │ │ │ │ └── dbgserver.properties │ │ │ └── moz.build │ │ ├── jar.mn │ │ ├── modules/ │ │ │ ├── RemoteDebuggerServer.jsm │ │ │ └── XULRootActor.js │ │ └── moz.build │ ├── fuelApplication.js │ ├── fuelApplication.manifest │ ├── moz.build │ ├── phpStreamConverter.js │ └── phpStreamConverter.manifest ├── config/ │ ├── codename.txt │ ├── gecko_dev_content.patch │ ├── gecko_dev_idl.patch │ ├── gecko_dev_revision.txt │ ├── mozconfig.macosx │ ├── mozconfig.ubuntu64 │ ├── mozconfig.win │ ├── mozilla_central_revision.txt │ ├── version.txt │ └── win/ │ ├── bluegriffon.iss │ └── bluegriffon32.iss ├── confvars.sh ├── defs.mk ├── extensions/ │ ├── Makefile.in │ ├── fs/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── addFont.js │ │ │ ├── addFont.xul │ │ │ ├── fontsquirrel.js │ │ │ ├── fs.js │ │ │ ├── fs.xul │ │ │ ├── fsOverlay.js │ │ │ └── fsOverlay.xul │ │ ├── install.rdf │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ └── fs.css │ ├── gfd/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── addFont.js │ │ │ ├── addFont.xul │ │ │ ├── directory.js │ │ │ ├── gfd.js │ │ │ ├── gfd.xul │ │ │ ├── gfdOverlay.js │ │ │ ├── gfdOverlay.xul │ │ │ └── preview.html │ │ ├── install.rdf │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ └── gfd.css │ ├── inspector/ │ │ ├── .hg/ │ │ │ ├── 00changelog.i │ │ │ ├── branch │ │ │ ├── cache/ │ │ │ │ ├── branch2-served │ │ │ │ └── tags │ │ │ ├── dirstate │ │ │ ├── hgrc │ │ │ ├── requires │ │ │ ├── store/ │ │ │ │ ├── 00changelog.d │ │ │ │ ├── 00changelog.i │ │ │ │ ├── 00manifest.d │ │ │ │ ├── 00manifest.i │ │ │ │ ├── data/ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ ├── base/ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── js/ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── inspector-cmdline.js.i │ │ │ │ │ │ │ └── moz.build.i │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ ├── moz.build.i │ │ │ │ │ │ ├── public/ │ │ │ │ │ │ │ ├── _m_a_n_i_f_e_s_t___i_d_l.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── in_i_bitmap.idl.i │ │ │ │ │ │ │ ├── in_i_bitmap_depot.idl.i │ │ │ │ │ │ │ ├── in_i_bitmap_u_r_i.idl.i │ │ │ │ │ │ │ ├── in_i_c_s_s_value_search.idl.i │ │ │ │ │ │ │ ├── in_i_d_o_m_data_source.idl.i │ │ │ │ │ │ │ ├── in_i_d_o_m_r_d_f_resource.idl.i │ │ │ │ │ │ │ ├── in_i_d_o_m_utils.idl.i │ │ │ │ │ │ │ ├── in_i_d_o_m_view.idl.i │ │ │ │ │ │ │ ├── in_i_deep_tree_walker.idl.i │ │ │ │ │ │ │ ├── in_i_file_search.idl.i │ │ │ │ │ │ │ ├── in_i_flasher.idl.i │ │ │ │ │ │ │ ├── in_i_p_n_g_encoder.idl.i │ │ │ │ │ │ │ ├── in_i_screen_capturer.idl.i │ │ │ │ │ │ │ ├── in_i_search_observer.idl.i │ │ │ │ │ │ │ ├── in_i_search_orphan_images.idl.i │ │ │ │ │ │ │ ├── in_i_search_process.idl.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── ns_i_c_s_s_dec_data_source.idl.i │ │ │ │ │ │ │ ├── ns_i_c_s_s_dec_int_holder.idl.i │ │ │ │ │ │ │ ├── ns_i_c_s_s_rule_data_source.idl.i │ │ │ │ │ │ │ ├── ns_i_d_o_m_d_s_resource.idl.i │ │ │ │ │ │ │ ├── ns_i_ins_d_o_m_data_source.idl.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── dsinfo.h.i │ │ │ │ │ │ │ ├── in_bitmap.cpp.i │ │ │ │ │ │ │ ├── in_bitmap.h.i │ │ │ │ │ │ │ ├── in_bitmap_channel.cpp.i │ │ │ │ │ │ │ ├── in_bitmap_channel.h.i │ │ │ │ │ │ │ ├── in_bitmap_decoder.cpp.i │ │ │ │ │ │ │ ├── in_bitmap_decoder.h.i │ │ │ │ │ │ │ ├── in_bitmap_depot.cpp.i │ │ │ │ │ │ │ ├── in_bitmap_depot.h.i │ │ │ │ │ │ │ ├── in_bitmap_protocol_handler.cpp.i │ │ │ │ │ │ │ ├── in_bitmap_protocol_handler.h.i │ │ │ │ │ │ │ ├── in_bitmap_u_r_i.cpp.i │ │ │ │ │ │ │ ├── in_bitmap_u_r_i.h.i │ │ │ │ │ │ │ ├── in_c_s_s_value_search.cpp.i │ │ │ │ │ │ │ ├── in_c_s_s_value_search.h.i │ │ │ │ │ │ │ ├── in_d_o_m_data_source.cpp.i │ │ │ │ │ │ │ ├── in_d_o_m_data_source.h.i │ │ │ │ │ │ │ ├── in_d_o_m_r_d_f_resource.cpp.i │ │ │ │ │ │ │ ├── in_d_o_m_r_d_f_resource.h.i │ │ │ │ │ │ │ ├── in_d_o_m_utils.cpp.i │ │ │ │ │ │ │ ├── in_d_o_m_utils.h.i │ │ │ │ │ │ │ ├── in_d_o_m_view.cpp.i │ │ │ │ │ │ │ ├── in_d_o_m_view.h.i │ │ │ │ │ │ │ ├── in_deep_tree_walker.cpp.i │ │ │ │ │ │ │ ├── in_deep_tree_walker.h.i │ │ │ │ │ │ │ ├── in_file_search.cpp.i │ │ │ │ │ │ │ ├── in_file_search.h.i │ │ │ │ │ │ │ ├── in_flasher.cpp.i │ │ │ │ │ │ │ ├── in_flasher.h.i │ │ │ │ │ │ │ ├── in_layout_utils.cpp.i │ │ │ │ │ │ │ ├── in_layout_utils.h.i │ │ │ │ │ │ │ ├── in_p_n_g_encoder.cpp.i │ │ │ │ │ │ │ ├── in_p_n_g_encoder.h.i │ │ │ │ │ │ │ ├── in_search_item_image.cpp.i │ │ │ │ │ │ │ ├── in_search_item_image.h.i │ │ │ │ │ │ │ ├── in_search_loop.cpp.i │ │ │ │ │ │ │ ├── in_search_loop.h.i │ │ │ │ │ │ │ ├── in_search_orphan_images.cpp.i │ │ │ │ │ │ │ ├── in_search_orphan_images.h.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── ns_c_s_s_dec_data_source.cpp.i │ │ │ │ │ │ │ ├── ns_c_s_s_dec_data_source.h.i │ │ │ │ │ │ │ ├── ns_c_s_s_dec_int_holder.cpp.i │ │ │ │ │ │ │ ├── ns_c_s_s_dec_int_holder.h.i │ │ │ │ │ │ │ ├── ns_c_s_s_rule_data_source.cpp.i │ │ │ │ │ │ │ ├── ns_c_s_s_rule_data_source.h.i │ │ │ │ │ │ │ ├── ns_d_o_m_d_s_resource.cpp.i │ │ │ │ │ │ │ ├── ns_d_o_m_d_s_resource.h.i │ │ │ │ │ │ │ ├── ns_d_o_m_data_source.cpp.i │ │ │ │ │ │ │ ├── ns_d_o_m_data_source.h.i │ │ │ │ │ │ │ ├── win/ │ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ │ ├── in_screen_capturer.cpp.i │ │ │ │ │ │ │ │ ├── in_screen_capturer.h.i │ │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ ├── build/ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── install.js.i │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ ├── moz.build.i │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── inspector.pkg.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── ns_inspector_module.cpp.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ ├── install.rdf.i │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ ├── macbuild/ │ │ │ │ │ │ ├── _inspector._prefix.i │ │ │ │ │ │ ├── _inspector_debug._prefix.i │ │ │ │ │ │ ├── inspector.mcp.i │ │ │ │ │ │ ├── inspector.xml.i │ │ │ │ │ │ ├── inspector_i_d_l.mcp.i │ │ │ │ │ │ └── inspector_i_d_l.xml.i │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ ├── makefiles.sh.i │ │ │ │ │ ├── moz.build.i │ │ │ │ │ ├── resources/ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ ├── content/ │ │ │ │ │ │ │ ├── _flasher.js.i │ │ │ │ │ │ │ ├── _inspector_app.js.i │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── _viewer_pane.js.i │ │ │ │ │ │ │ ├── _viewer_registry.js.i │ │ │ │ │ │ │ ├── browser_overlay.xul.i │ │ │ │ │ │ │ ├── command_overlay.xul.i │ │ │ │ │ │ │ ├── contents.rdf.i │ │ │ │ │ │ │ ├── contents.rdf.in.i │ │ │ │ │ │ │ ├── editing_overlay.xul.i │ │ │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ │ │ ├── multipanel.css.i │ │ │ │ │ │ │ │ ├── multipanel.xml.i │ │ │ │ │ │ │ │ ├── titled_splitter.css.i │ │ │ │ │ │ │ │ ├── titled_splitter.xml.i │ │ │ │ │ │ │ │ ├── tree_editable.css.i │ │ │ │ │ │ │ │ ├── tree_editable.xml.i │ │ │ │ │ │ │ │ └── wsm-colorpicker.js.i │ │ │ │ │ │ │ ├── hooks.js.i │ │ │ │ │ │ │ ├── inspector-history.rdf.i │ │ │ │ │ │ │ ├── inspector-prefs.rdf.i │ │ │ │ │ │ │ ├── inspector.css.i │ │ │ │ │ │ │ ├── inspector.js.i │ │ │ │ │ │ │ ├── inspector.xml.i │ │ │ │ │ │ │ ├── inspector.xul.i │ │ │ │ │ │ │ ├── inspector_overlay.xul.i │ │ │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ │ │ ├── jsutil/ │ │ │ │ │ │ │ │ ├── commands/ │ │ │ │ │ │ │ │ │ └── base_commands.js.i │ │ │ │ │ │ │ │ ├── events/ │ │ │ │ │ │ │ │ │ └── _observer_manager.js.i │ │ │ │ │ │ │ │ ├── rdf/ │ │ │ │ │ │ │ │ │ ├── _r_d_f_array.js.i │ │ │ │ │ │ │ │ │ └── _r_d_f_u.js.i │ │ │ │ │ │ │ │ ├── system/ │ │ │ │ │ │ │ │ │ ├── _clipboard_utils.js.i │ │ │ │ │ │ │ │ │ ├── _disk_search.js.i │ │ │ │ │ │ │ │ │ ├── _file_picker_utils.js.i │ │ │ │ │ │ │ │ │ ├── _pref_utils.js.i │ │ │ │ │ │ │ │ │ ├── clipboard_flavors.js.i │ │ │ │ │ │ │ │ │ └── file.js.i │ │ │ │ │ │ │ │ ├── xpcom/ │ │ │ │ │ │ │ │ │ └── _x_p_c_u.js.i │ │ │ │ │ │ │ │ └── xul/ │ │ │ │ │ │ │ │ ├── _d_n_d_utils.js.i │ │ │ │ │ │ │ │ ├── _frame_exchange.js.i │ │ │ │ │ │ │ │ ├── in_base_outliner_view.js.i │ │ │ │ │ │ │ │ ├── in_base_tree_view.js.i │ │ │ │ │ │ │ │ ├── in_data_tree_view.js.i │ │ │ │ │ │ │ │ ├── in_form_manager.js.i │ │ │ │ │ │ │ │ ├── in_outliner_builder.js.i │ │ │ │ │ │ │ │ ├── in_tree_builder.js.i │ │ │ │ │ │ │ │ └── in_tree_table_builder.js.i │ │ │ │ │ │ │ ├── keyset_overlay.xul.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── object.js.i │ │ │ │ │ │ │ ├── object.xul.i │ │ │ │ │ │ │ ├── popup_overlay.xul.i │ │ │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ │ │ ├── _m_a_n_i_f_e_s_t.i │ │ │ │ │ │ │ │ ├── inspector.js.i │ │ │ │ │ │ │ │ ├── pref-inspector.js.i │ │ │ │ │ │ │ │ ├── pref-inspector.xul.i │ │ │ │ │ │ │ │ ├── pref-sidebar.js.i │ │ │ │ │ │ │ │ ├── pref-sidebar.xul.i │ │ │ │ │ │ │ │ ├── prefs.xul.i │ │ │ │ │ │ │ │ └── prefs_overlay.xul.i │ │ │ │ │ │ │ ├── res/ │ │ │ │ │ │ │ │ ├── _linux/ │ │ │ │ │ │ │ │ │ ├── win_inspector_main.xpm.i │ │ │ │ │ │ │ │ │ └── win_inspector_main16.xpm.i │ │ │ │ │ │ │ │ ├── _m_a_n_i_f_e_s_t.i │ │ │ │ │ │ │ │ ├── _o_s2/ │ │ │ │ │ │ │ │ │ └── win_inspector_main.ico.i │ │ │ │ │ │ │ │ ├── _w_i_n_n_t/ │ │ │ │ │ │ │ │ │ └── win_inspector_main.ico.i │ │ │ │ │ │ │ │ ├── search-registry.rdf.i │ │ │ │ │ │ │ │ ├── viewer-registry.rdf.i │ │ │ │ │ │ │ │ ├── win_inspector_main.ico.i │ │ │ │ │ │ │ │ ├── win_inspector_main.xpm.i │ │ │ │ │ │ │ │ ├── win_inspector_main16.xpm.i │ │ │ │ │ │ │ │ └── win_inspector_main_o_s2.ico.i │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ ├── in_search_module.js.i │ │ │ │ │ │ │ │ ├── in_search_service.js.i │ │ │ │ │ │ │ │ ├── in_search_tree_builder.js.i │ │ │ │ │ │ │ │ ├── in_search_utils.js.i │ │ │ │ │ │ │ │ └── modules/ │ │ │ │ │ │ │ │ ├── command_overlay.xul.i │ │ │ │ │ │ │ │ ├── find_files/ │ │ │ │ │ │ │ │ │ ├── dialog.js.i │ │ │ │ │ │ │ │ │ ├── dialog.xul.i │ │ │ │ │ │ │ │ │ └── find_files.xml.i │ │ │ │ │ │ │ │ ├── junk_imgs/ │ │ │ │ │ │ │ │ │ ├── dialog.js.i │ │ │ │ │ │ │ │ │ ├── dialog.xul.i │ │ │ │ │ │ │ │ │ └── junk_imgs.xml.i │ │ │ │ │ │ │ │ └── popup_overlay.xul.i │ │ │ │ │ │ │ ├── search-registry.rdf.i │ │ │ │ │ │ │ ├── sidebar/ │ │ │ │ │ │ │ │ ├── _inspector_sidebar.js.i │ │ │ │ │ │ │ │ └── sidebar.xul.i │ │ │ │ │ │ │ ├── sidebar.js.i │ │ │ │ │ │ │ ├── sidebar.xul.i │ │ │ │ │ │ │ ├── statusbar_overlay.xul.i │ │ │ │ │ │ │ ├── tasks_overlay-cz.xul.i │ │ │ │ │ │ │ ├── tasks_overlay-ff.xul.i │ │ │ │ │ │ │ ├── tasks_overlay-mobile.xul.i │ │ │ │ │ │ │ ├── tasks_overlay-sb.xul.i │ │ │ │ │ │ │ ├── tasks_overlay-tb.xul.i │ │ │ │ │ │ │ ├── tasks_overlay.xul.i │ │ │ │ │ │ │ ├── tests/ │ │ │ │ │ │ │ │ └── allskin.xul.i │ │ │ │ │ │ │ ├── toolbox_overlay.xul.i │ │ │ │ │ │ │ ├── util.dtd.i │ │ │ │ │ │ │ ├── util_window.xul.i │ │ │ │ │ │ │ ├── utils.js.i │ │ │ │ │ │ │ ├── venkman_overlay.xul.i │ │ │ │ │ │ │ ├── viewer-registry.rdf.i │ │ │ │ │ │ │ ├── viewer_overlay.xul.i │ │ │ │ │ │ │ ├── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event/ │ │ │ │ │ │ │ │ │ ├── accessible_event.js.i │ │ │ │ │ │ │ │ │ └── accessible_event.xul.i │ │ │ │ │ │ │ │ ├── accessible_events/ │ │ │ │ │ │ │ │ │ ├── accessible_events.js.i │ │ │ │ │ │ │ │ │ ├── accessible_events.xul.i │ │ │ │ │ │ │ │ │ └── handler_help_dialog.xul.i │ │ │ │ │ │ │ │ ├── accessible_object/ │ │ │ │ │ │ │ │ │ ├── accessible_object.js.i │ │ │ │ │ │ │ │ │ └── accessible_object.xul.i │ │ │ │ │ │ │ │ ├── accessible_props/ │ │ │ │ │ │ │ │ │ ├── accessible_prop_viewer_mgr.js.i │ │ │ │ │ │ │ │ │ ├── accessible_props.js.i │ │ │ │ │ │ │ │ │ └── accessible_props.xul.i │ │ │ │ │ │ │ │ ├── accessible_relations/ │ │ │ │ │ │ │ │ │ ├── accessible_relations.js.i │ │ │ │ │ │ │ │ │ └── accessible_relations.xul.i │ │ │ │ │ │ │ │ ├── accessible_tree/ │ │ │ │ │ │ │ │ │ ├── accessible_tree.js.i │ │ │ │ │ │ │ │ │ ├── accessible_tree.xul.i │ │ │ │ │ │ │ │ │ ├── eval_j_s_dialog.js.i │ │ │ │ │ │ │ │ │ └── eval_j_s_dialog.xul.i │ │ │ │ │ │ │ │ ├── box_model/ │ │ │ │ │ │ │ │ │ ├── box_model.js.i │ │ │ │ │ │ │ │ │ ├── box_model.xul.i │ │ │ │ │ │ │ │ │ └── color_picker.xul.i │ │ │ │ │ │ │ │ ├── computed_style/ │ │ │ │ │ │ │ │ │ ├── computed_style.js.i │ │ │ │ │ │ │ │ │ └── computed_style.xul.i │ │ │ │ │ │ │ │ ├── dom/ │ │ │ │ │ │ │ │ │ ├── _find_dialog.js.i │ │ │ │ │ │ │ │ │ ├── columns_dialog.js.i │ │ │ │ │ │ │ │ │ ├── columns_dialog.xul.i │ │ │ │ │ │ │ │ │ ├── command_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── dom.js.i │ │ │ │ │ │ │ │ │ ├── dom.xul.i │ │ │ │ │ │ │ │ │ ├── find_dialog.xul.i │ │ │ │ │ │ │ │ │ ├── insert_dialog.js.i │ │ │ │ │ │ │ │ │ ├── insert_dialog.xul.i │ │ │ │ │ │ │ │ │ ├── keyset_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── popup_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── pseudo_class_dialog.js.i │ │ │ │ │ │ │ │ │ └── pseudo_class_dialog.xul.i │ │ │ │ │ │ │ │ ├── dom_node/ │ │ │ │ │ │ │ │ │ ├── dom_node.js.i │ │ │ │ │ │ │ │ │ ├── dom_node.xul.i │ │ │ │ │ │ │ │ │ ├── dom_node_dialog.js.i │ │ │ │ │ │ │ │ │ └── dom_node_dialog.xul.i │ │ │ │ │ │ │ │ ├── js_object/ │ │ │ │ │ │ │ │ │ ├── eval_expr_dialog.js.i │ │ │ │ │ │ │ │ │ ├── eval_expr_dialog.xul.i │ │ │ │ │ │ │ │ │ ├── js_object.js.i │ │ │ │ │ │ │ │ │ ├── js_object.xul.i │ │ │ │ │ │ │ │ │ ├── js_object_view.js.i │ │ │ │ │ │ │ │ │ ├── js_object_viewer.js.i │ │ │ │ │ │ │ │ │ └── js_object_viewer.xul.i │ │ │ │ │ │ │ │ ├── node_element/ │ │ │ │ │ │ │ │ │ ├── node_element.js.i │ │ │ │ │ │ │ │ │ └── node_element.xul.i │ │ │ │ │ │ │ │ ├── node_text/ │ │ │ │ │ │ │ │ │ ├── node_text.js.i │ │ │ │ │ │ │ │ │ └── node_text.xul.i │ │ │ │ │ │ │ │ ├── style_rules/ │ │ │ │ │ │ │ │ │ ├── command_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── keyset_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── popup_overlay.xul.i │ │ │ │ │ │ │ │ │ ├── style_rules.js.i │ │ │ │ │ │ │ │ │ └── style_rules.xul.i │ │ │ │ │ │ │ │ ├── stylesheets/ │ │ │ │ │ │ │ │ │ ├── stylesheets.js.i │ │ │ │ │ │ │ │ │ └── stylesheets.xul.i │ │ │ │ │ │ │ │ ├── used_font_faces/ │ │ │ │ │ │ │ │ │ ├── used_font_faces.js.i │ │ │ │ │ │ │ │ │ └── used_font_faces.xul.i │ │ │ │ │ │ │ │ └── xbl_bindings/ │ │ │ │ │ │ │ │ ├── xbl_bindings.js.i │ │ │ │ │ │ │ │ └── xbl_bindings.xul.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ ├── locale/ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── ca/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── contents.rdf.i │ │ │ │ │ │ │ ├── cs/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── cs-_c_z/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── da/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── de/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── el/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── en-_g_b/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── en-_u_s/ │ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ │ ├── contents.rdf.i │ │ │ │ │ │ │ │ ├── contents.rdf.in.i │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ ├── viewers/ │ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ │ ├── node_element.dtd.i │ │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ │ ├── fi/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── fr/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── ga-_i_e/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── hu/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── moz.build.i │ │ │ │ │ │ │ ├── nb-_n_o/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── pl/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── pt-_b_r/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── ru/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── sk/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── sv-_s_e/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ ├── viewer-registry.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── accessible_event.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.dtd.i │ │ │ │ │ │ │ │ ├── accessible_events.properties.i │ │ │ │ │ │ │ │ ├── accessible_events_handler_help_dialog.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.dtd.i │ │ │ │ │ │ │ │ ├── accessible_props.properties.i │ │ │ │ │ │ │ │ ├── accessible_relations.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree.dtd.i │ │ │ │ │ │ │ │ ├── accessible_tree_eval_j_s_dialog.dtd.i │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ ├── used_font_faces.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── zh-_c_n/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ ├── zh-_t_w/ │ │ │ │ │ │ │ │ ├── editing.dtd.i │ │ │ │ │ │ │ │ ├── inspector.dtd.i │ │ │ │ │ │ │ │ ├── inspector.properties.i │ │ │ │ │ │ │ │ ├── prefs.dtd.i │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── find_files.dtd.i │ │ │ │ │ │ │ │ │ └── junk_imgs.dtd.i │ │ │ │ │ │ │ │ ├── tasks_overlay.dtd.i │ │ │ │ │ │ │ │ └── viewers/ │ │ │ │ │ │ │ │ ├── box_model.dtd.i │ │ │ │ │ │ │ │ ├── computed_style.dtd.i │ │ │ │ │ │ │ │ ├── dom.dtd.i │ │ │ │ │ │ │ │ ├── dom_node.dtd.i │ │ │ │ │ │ │ │ ├── js_object.dtd.i │ │ │ │ │ │ │ │ ├── style_rules.dtd.i │ │ │ │ │ │ │ │ ├── stylesheets.dtd.i │ │ │ │ │ │ │ │ └── xbl_bindings.dtd.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ ├── moz.build.i │ │ │ │ │ │ ├── skin/ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ ├── classic/ │ │ │ │ │ │ │ │ ├── _image_search_item.gif.i │ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ │ ├── btn_find-dis.gif.i │ │ │ │ │ │ │ │ ├── btn_find.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting-act.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting-dis.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting.gif.i │ │ │ │ │ │ │ │ ├── contents.rdf.i │ │ │ │ │ │ │ │ ├── icon_important.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_list-dis.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_list.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_menu-dis.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_menu.gif.i │ │ │ │ │ │ │ │ ├── inspector.css.i │ │ │ │ │ │ │ │ ├── inspector_window.css.i │ │ │ │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ │ ├── multipanel.css.i │ │ │ │ │ │ │ │ ├── panelset.css.i │ │ │ │ │ │ │ │ ├── sidebar.css.i │ │ │ │ │ │ │ │ ├── titled_splitter.css.i │ │ │ │ │ │ │ │ ├── titledsplitter-close.gif.i │ │ │ │ │ │ │ │ ├── tree_editable.css.i │ │ │ │ │ │ │ │ ├── viewer_pane.css.i │ │ │ │ │ │ │ │ ├── viewers/ │ │ │ │ │ │ │ │ │ ├── accessible_event/ │ │ │ │ │ │ │ │ │ │ └── accessible_event.css.i │ │ │ │ │ │ │ │ │ ├── accessible_events/ │ │ │ │ │ │ │ │ │ │ └── accessible_events.css.i │ │ │ │ │ │ │ │ │ ├── accessible_props/ │ │ │ │ │ │ │ │ │ │ └── accessible_props.css.i │ │ │ │ │ │ │ │ │ ├── accessible_tree/ │ │ │ │ │ │ │ │ │ │ └── accessible_tree.css.i │ │ │ │ │ │ │ │ │ ├── box_model/ │ │ │ │ │ │ │ │ │ │ └── box_model.css.i │ │ │ │ │ │ │ │ │ ├── dom/ │ │ │ │ │ │ │ │ │ │ ├── columns_dialog.css.i │ │ │ │ │ │ │ │ │ │ ├── dom.css.i │ │ │ │ │ │ │ │ │ │ └── find_dialog.css.i │ │ │ │ │ │ │ │ │ ├── dom_node/ │ │ │ │ │ │ │ │ │ │ └── dom_node.css.i │ │ │ │ │ │ │ │ │ ├── node_element/ │ │ │ │ │ │ │ │ │ │ └── node_element.css.i │ │ │ │ │ │ │ │ │ ├── node_text/ │ │ │ │ │ │ │ │ │ │ └── node_text.css.i │ │ │ │ │ │ │ │ │ ├── style_rules/ │ │ │ │ │ │ │ │ │ │ └── style_rules.css.i │ │ │ │ │ │ │ │ │ └── xbl_bindings/ │ │ │ │ │ │ │ │ │ └── xbl_bindings.css.i │ │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ ├── modern/ │ │ │ │ │ │ │ │ ├── _image_search_item.gif.i │ │ │ │ │ │ │ │ ├── _makefile.in.i │ │ │ │ │ │ │ │ ├── btn_find-dis.gif.i │ │ │ │ │ │ │ │ ├── btn_find.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting-act.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting-dis.gif.i │ │ │ │ │ │ │ │ ├── btn_selecting.gif.i │ │ │ │ │ │ │ │ ├── contents.rdf.i │ │ │ │ │ │ │ │ ├── icon_important.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_list-dis.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_list.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_menu-dis.gif.i │ │ │ │ │ │ │ │ ├── icon_viewer_menu.gif.i │ │ │ │ │ │ │ │ ├── inspector.css.i │ │ │ │ │ │ │ │ ├── inspector_window.css.i │ │ │ │ │ │ │ │ ├── jar.mn.i │ │ │ │ │ │ │ │ ├── makefile.win.i │ │ │ │ │ │ │ │ ├── multipanel.css.i │ │ │ │ │ │ │ │ ├── panelset.css.i │ │ │ │ │ │ │ │ ├── sidebar.css.i │ │ │ │ │ │ │ │ ├── titled_splitter.css.i │ │ │ │ │ │ │ │ ├── titledsplitter-close.gif.i │ │ │ │ │ │ │ │ ├── tree_editable.css.i │ │ │ │ │ │ │ │ ├── viewer_pane.css.i │ │ │ │ │ │ │ │ ├── viewers/ │ │ │ │ │ │ │ │ │ ├── accessible_event/ │ │ │ │ │ │ │ │ │ │ └── accessible_event.css.i │ │ │ │ │ │ │ │ │ ├── accessible_events/ │ │ │ │ │ │ │ │ │ │ └── accessible_events.css.i │ │ │ │ │ │ │ │ │ ├── accessible_props/ │ │ │ │ │ │ │ │ │ │ └── accessible_props.css.i │ │ │ │ │ │ │ │ │ ├── accessible_tree/ │ │ │ │ │ │ │ │ │ │ └── accessible_tree.css.i │ │ │ │ │ │ │ │ │ ├── box_model/ │ │ │ │ │ │ │ │ │ │ └── box_model.css.i │ │ │ │ │ │ │ │ │ ├── dom/ │ │ │ │ │ │ │ │ │ │ ├── columns_dialog.css.i │ │ │ │ │ │ │ │ │ │ ├── dom.css.i │ │ │ │ │ │ │ │ │ │ └── find_dialog.css.i │ │ │ │ │ │ │ │ │ ├── dom_node/ │ │ │ │ │ │ │ │ │ │ └── dom_node.css.i │ │ │ │ │ │ │ │ │ ├── node_element/ │ │ │ │ │ │ │ │ │ │ └── node_element.css.i │ │ │ │ │ │ │ │ │ ├── node_text/ │ │ │ │ │ │ │ │ │ │ └── node_text.css.i │ │ │ │ │ │ │ │ │ ├── style_rules/ │ │ │ │ │ │ │ │ │ │ └── style_rules.css.i │ │ │ │ │ │ │ │ │ └── xbl_bindings/ │ │ │ │ │ │ │ │ │ └── xbl_bindings.css.i │ │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ │ └── ~2ecvsignore.i │ │ │ │ │ ├── ~2ecvsignore.i │ │ │ │ │ ├── ~2ehgignore.i │ │ │ │ │ └── ~2ehgtags.i │ │ │ │ ├── fncache │ │ │ │ ├── phaseroots │ │ │ │ ├── undo │ │ │ │ └── undo.phaseroots │ │ │ ├── undo.bookmarks │ │ │ ├── undo.branch │ │ │ ├── undo.desc │ │ │ └── undo.dirstate │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── Makefile.in │ │ ├── base/ │ │ │ └── js/ │ │ │ └── inspector-cmdline.js │ │ ├── build/ │ │ │ ├── Makefile.in │ │ │ ├── install.js │ │ │ └── moz.build │ │ ├── install.rdf │ │ ├── jar.mn │ │ ├── moz.build │ │ └── resources/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── Flasher.js │ │ │ ├── ViewerRegistry.js │ │ │ ├── browserOverlay.xul │ │ │ ├── commandOverlay.xul │ │ │ ├── editingOverlay.xul │ │ │ ├── extensions/ │ │ │ │ ├── titledSplitter.css │ │ │ │ ├── titledSplitter.xml │ │ │ │ └── wsm-colorpicker.js │ │ │ ├── hooks.js │ │ │ ├── inspector.css │ │ │ ├── inspector.js │ │ │ ├── inspector.xml │ │ │ ├── inspector.xul │ │ │ ├── inspectorOverlay.xul │ │ │ ├── jsutil/ │ │ │ │ ├── commands/ │ │ │ │ │ └── baseCommands.js │ │ │ │ ├── events/ │ │ │ │ │ └── ObserverManager.js │ │ │ │ ├── rdf/ │ │ │ │ │ ├── RDFArray.js │ │ │ │ │ └── RDFU.js │ │ │ │ ├── system/ │ │ │ │ │ ├── DiskSearch.js │ │ │ │ │ ├── FilePickerUtils.js │ │ │ │ │ ├── PrefUtils.js │ │ │ │ │ └── clipboardFlavors.js │ │ │ │ ├── xpcom/ │ │ │ │ │ └── XPCU.js │ │ │ │ └── xul/ │ │ │ │ ├── DNDUtils.js │ │ │ │ ├── FrameExchange.js │ │ │ │ ├── inBaseTreeView.js │ │ │ │ ├── inDataTreeView.js │ │ │ │ ├── inFormManager.js │ │ │ │ └── inTreeBuilder.js │ │ │ ├── keysetOverlay.xul │ │ │ ├── object.js │ │ │ ├── object.xul │ │ │ ├── popupOverlay.xul │ │ │ ├── prefs/ │ │ │ │ ├── inspector.js │ │ │ │ ├── pref-inspector.js │ │ │ │ ├── pref-inspector.xul │ │ │ │ ├── pref-sidebar.js │ │ │ │ └── prefsOverlay.xul │ │ │ ├── res/ │ │ │ │ ├── Linux/ │ │ │ │ │ ├── winInspectorMain.xpm │ │ │ │ │ └── winInspectorMain16.xpm │ │ │ │ ├── search-registry.rdf │ │ │ │ └── viewer-registry.rdf │ │ │ ├── sidebar.js │ │ │ ├── sidebar.xul │ │ │ ├── statusbarOverlay.xul │ │ │ ├── tasksOverlay-cz.xul │ │ │ ├── tasksOverlay-ff.xul │ │ │ ├── tasksOverlay-mobile.xul │ │ │ ├── tasksOverlay-sb.xul │ │ │ ├── tasksOverlay-tb.xul │ │ │ ├── tasksOverlay.xul │ │ │ ├── tests/ │ │ │ │ └── allskin.xul │ │ │ ├── toolboxOverlay.xul │ │ │ ├── toolsOverlay-bg.xul │ │ │ ├── utils.js │ │ │ ├── venkmanOverlay.xul │ │ │ └── viewers/ │ │ │ ├── accessibleEvent/ │ │ │ │ ├── accessibleEvent.js │ │ │ │ └── accessibleEvent.xul │ │ │ ├── accessibleEvents/ │ │ │ │ ├── accessibleEvents.js │ │ │ │ ├── accessibleEvents.xul │ │ │ │ └── handlerHelpDialog.xul │ │ │ ├── accessibleObject/ │ │ │ │ ├── accessibleObject.js │ │ │ │ └── accessibleObject.xul │ │ │ ├── accessibleProps/ │ │ │ │ ├── accessiblePropViewerMgr.js │ │ │ │ ├── accessibleProps.js │ │ │ │ └── accessibleProps.xul │ │ │ ├── accessibleRelations/ │ │ │ │ ├── accessibleRelations.js │ │ │ │ └── accessibleRelations.xul │ │ │ ├── accessibleTree/ │ │ │ │ ├── accessibleTree.js │ │ │ │ ├── accessibleTree.xul │ │ │ │ ├── evalJSDialog.js │ │ │ │ └── evalJSDialog.xul │ │ │ ├── boxModel/ │ │ │ │ ├── boxModel.js │ │ │ │ └── boxModel.xul │ │ │ ├── computedStyle/ │ │ │ │ ├── computedStyle.js │ │ │ │ └── computedStyle.xul │ │ │ ├── dom/ │ │ │ │ ├── FindDialog.js │ │ │ │ ├── columnsDialog.js │ │ │ │ ├── columnsDialog.xul │ │ │ │ ├── commandOverlay.xul │ │ │ │ ├── dom.js │ │ │ │ ├── dom.xul │ │ │ │ ├── findDialog.xul │ │ │ │ ├── insertDialog.js │ │ │ │ ├── insertDialog.xul │ │ │ │ ├── keysetOverlay.xul │ │ │ │ ├── popupOverlay.xul │ │ │ │ ├── pseudoClassDialog.js │ │ │ │ └── pseudoClassDialog.xul │ │ │ ├── domNode/ │ │ │ │ ├── domNode.js │ │ │ │ ├── domNode.xul │ │ │ │ ├── domNodeDialog.js │ │ │ │ └── domNodeDialog.xul │ │ │ ├── jsObject/ │ │ │ │ ├── evalExprDialog.js │ │ │ │ ├── evalExprDialog.xul │ │ │ │ ├── jsObject.js │ │ │ │ ├── jsObject.xul │ │ │ │ ├── jsObjectViewer.js │ │ │ │ └── jsObjectViewer.xul │ │ │ ├── styleRules/ │ │ │ │ ├── commandOverlay.xul │ │ │ │ ├── keysetOverlay.xul │ │ │ │ ├── popupOverlay.xul │ │ │ │ ├── styleRules.js │ │ │ │ └── styleRules.xul │ │ │ ├── stylesheets/ │ │ │ │ ├── stylesheets.js │ │ │ │ └── stylesheets.xul │ │ │ ├── usedFontFaces/ │ │ │ │ ├── usedFontFaces.js │ │ │ │ └── usedFontFaces.xul │ │ │ └── xblBindings/ │ │ │ ├── xblBindings.js │ │ │ └── xblBindings.xul │ │ ├── locale/ │ │ │ ├── Makefile.in │ │ │ ├── ca/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── cs/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── da/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── de/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── el/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── en-GB/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── en-US/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── fi/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── fr/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── ga-IE/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── hu/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── jar.mn │ │ │ ├── moz.build │ │ │ ├── nb-NO/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── pl/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── pt-BR/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── ru/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── sk/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── sv-SE/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ ├── viewer-registry.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── accessibleEvent.dtd │ │ │ │ ├── accessibleEvents.dtd │ │ │ │ ├── accessibleEvents.properties │ │ │ │ ├── accessibleEventsHandlerHelpDialog.dtd │ │ │ │ ├── accessibleProps.dtd │ │ │ │ ├── accessibleProps.properties │ │ │ │ ├── accessibleRelations.dtd │ │ │ │ ├── accessibleTree.dtd │ │ │ │ ├── accessibleTreeEvalJSDialog.dtd │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ ├── usedFontFaces.dtd │ │ │ │ └── xblBindings.dtd │ │ │ ├── zh-CN/ │ │ │ │ ├── editing.dtd │ │ │ │ ├── inspector.dtd │ │ │ │ ├── inspector.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── search/ │ │ │ │ │ ├── findFiles.dtd │ │ │ │ │ └── junkImgs.dtd │ │ │ │ ├── tasksOverlay.dtd │ │ │ │ └── viewers/ │ │ │ │ ├── boxModel.dtd │ │ │ │ ├── computedStyle.dtd │ │ │ │ ├── dom.dtd │ │ │ │ ├── domNode.dtd │ │ │ │ ├── jsObject.dtd │ │ │ │ ├── styleRules.dtd │ │ │ │ ├── stylesheets.dtd │ │ │ │ └── xblBindings.dtd │ │ │ └── zh-TW/ │ │ │ ├── editing.dtd │ │ │ ├── inspector.dtd │ │ │ ├── inspector.properties │ │ │ ├── prefs.dtd │ │ │ ├── search/ │ │ │ │ ├── findFiles.dtd │ │ │ │ └── junkImgs.dtd │ │ │ ├── tasksOverlay.dtd │ │ │ └── viewers/ │ │ │ ├── boxModel.dtd │ │ │ ├── computedStyle.dtd │ │ │ ├── dom.dtd │ │ │ ├── domNode.dtd │ │ │ ├── jsObject.dtd │ │ │ ├── styleRules.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── xblBindings.dtd │ │ ├── moz.build │ │ └── skin/ │ │ ├── classic/ │ │ │ ├── inspector.css │ │ │ ├── inspectorWindow.css │ │ │ ├── panelset.css │ │ │ ├── sidebar.css │ │ │ ├── titledSplitter.css │ │ │ └── viewers/ │ │ │ ├── accessibleEvent/ │ │ │ │ └── accessibleEvent.css │ │ │ ├── accessibleEvents/ │ │ │ │ └── accessibleEvents.css │ │ │ ├── accessibleProps/ │ │ │ │ └── accessibleProps.css │ │ │ ├── accessibleTree/ │ │ │ │ └── accessibleTree.css │ │ │ ├── boxModel/ │ │ │ │ └── boxModel.css │ │ │ ├── dom/ │ │ │ │ ├── columnsDialog.css │ │ │ │ ├── dom.css │ │ │ │ └── findDialog.css │ │ │ ├── domNode/ │ │ │ │ └── domNode.css │ │ │ ├── styleRules/ │ │ │ │ └── styleRules.css │ │ │ └── xblBindings/ │ │ │ └── xblBindings.css │ │ └── modern/ │ │ ├── inspector.css │ │ ├── inspectorWindow.css │ │ ├── panelset.css │ │ ├── sidebar.css │ │ ├── titledSplitter.css │ │ └── viewers/ │ │ ├── accessibleEvent/ │ │ │ └── accessibleEvent.css │ │ ├── accessibleEvents/ │ │ │ └── accessibleEvents.css │ │ ├── accessibleProps/ │ │ │ └── accessibleProps.css │ │ ├── accessibleTree/ │ │ │ └── accessibleTree.css │ │ ├── boxModel/ │ │ │ └── boxModel.css │ │ ├── dom/ │ │ │ ├── columnsDialog.css │ │ │ ├── dom.css │ │ │ └── findDialog.css │ │ ├── domNode/ │ │ │ └── domNode.css │ │ ├── styleRules/ │ │ │ └── styleRules.css │ │ └── xblBindings/ │ │ └── xblBindings.css │ ├── markdown/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── js-markdown-extra.js │ │ │ ├── markdown.js │ │ │ ├── markdown.xul │ │ │ ├── markdownOverlay.js │ │ │ └── markdownOverlay.xul │ │ ├── install.rdf │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ └── moz.build │ ├── moz.build │ ├── op1/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── a11yFirstStep.js │ │ │ ├── op1.js │ │ │ ├── op1.xul │ │ │ ├── op1Overlay.js │ │ │ └── op1Overlay.xul │ │ ├── install.rdf │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ └── op1.css │ ├── scripteditor/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── editor.js │ │ │ ├── editor.xul │ │ │ ├── scripteditor.js │ │ │ ├── scripteditor.xul │ │ │ ├── scripteditorOverlay.js │ │ │ └── scripteditorOverlay.xul │ │ ├── install.rdf │ │ ├── jar.mn.in │ │ └── skin/ │ │ ├── editor.css │ │ └── scripteditor.css │ └── svg-edit/ │ ├── Makefile.in │ ├── chrome.manifest │ ├── content/ │ │ ├── editor/ │ │ │ ├── canvg/ │ │ │ │ ├── canvg.js │ │ │ │ └── rgbcolor.js │ │ │ ├── contextmenu/ │ │ │ │ └── jquery.contextMenu.js │ │ │ ├── embedapi.html │ │ │ ├── embedapi.js │ │ │ ├── extensions/ │ │ │ │ ├── ext-arrows.js │ │ │ │ ├── ext-closepath.js │ │ │ │ ├── ext-connector.js │ │ │ │ ├── ext-eyedropper.js │ │ │ │ ├── ext-foreignobject.js │ │ │ │ ├── ext-grid.js │ │ │ │ ├── ext-helloworld.js │ │ │ │ ├── ext-imagelib.js │ │ │ │ ├── ext-imagelib.xml │ │ │ │ ├── ext-markers.js │ │ │ │ ├── ext-server_opensave.js │ │ │ │ ├── ext-shapes.js │ │ │ │ ├── ext-shapes.xml │ │ │ │ ├── eyedropper-icon.xml │ │ │ │ ├── fileopen.php │ │ │ │ ├── filesave.php │ │ │ │ ├── foreignobject-icons.xml │ │ │ │ ├── grid-icon.xml │ │ │ │ ├── helloworld-icon.xml │ │ │ │ ├── imagelib/ │ │ │ │ │ └── index.html │ │ │ │ ├── markers-icons.xml │ │ │ │ └── shapelib/ │ │ │ │ ├── animal.json │ │ │ │ ├── arrow.json │ │ │ │ ├── dialog_balloon.json │ │ │ │ ├── electronics.json │ │ │ │ ├── flowchart.json │ │ │ │ ├── game.json │ │ │ │ ├── math.json │ │ │ │ ├── misc.json │ │ │ │ ├── music.json │ │ │ │ ├── object.json │ │ │ │ └── symbol.json │ │ │ ├── images/ │ │ │ │ ├── README.txt │ │ │ │ └── svg_edit_icons.svgz │ │ │ ├── jgraduate/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── css/ │ │ │ │ │ ├── jGraduate-0.2.0.css │ │ │ │ │ ├── jPicker-1.0.12.css │ │ │ │ │ ├── jPicker-1.0.9.css │ │ │ │ │ └── jgraduate.css │ │ │ │ └── jquery.jgraduate.js │ │ │ ├── jquery.js │ │ │ ├── js-hotkeys/ │ │ │ │ └── README.md │ │ │ ├── locale/ │ │ │ │ ├── README.txt │ │ │ │ ├── lang.af.js │ │ │ │ ├── lang.ar.js │ │ │ │ ├── lang.az.js │ │ │ │ ├── lang.be.js │ │ │ │ ├── lang.bg.js │ │ │ │ ├── lang.ca.js │ │ │ │ ├── lang.cs.js │ │ │ │ ├── lang.cy.js │ │ │ │ ├── lang.da.js │ │ │ │ ├── lang.de.js │ │ │ │ ├── lang.el.js │ │ │ │ ├── lang.en.js │ │ │ │ ├── lang.es.js │ │ │ │ ├── lang.et.js │ │ │ │ ├── lang.fa.js │ │ │ │ ├── lang.fi.js │ │ │ │ ├── lang.fr.js │ │ │ │ ├── lang.fy.js │ │ │ │ ├── lang.ga.js │ │ │ │ ├── lang.gl.js │ │ │ │ ├── lang.he.js │ │ │ │ ├── lang.hi.js │ │ │ │ ├── lang.hr.js │ │ │ │ ├── lang.hu.js │ │ │ │ ├── lang.hy.js │ │ │ │ ├── lang.id.js │ │ │ │ ├── lang.is.js │ │ │ │ ├── lang.it.js │ │ │ │ ├── lang.ja.js │ │ │ │ ├── lang.ko.js │ │ │ │ ├── lang.lt.js │ │ │ │ ├── lang.lv.js │ │ │ │ ├── lang.mk.js │ │ │ │ ├── lang.ms.js │ │ │ │ ├── lang.mt.js │ │ │ │ ├── lang.nl.js │ │ │ │ ├── lang.no.js │ │ │ │ ├── lang.pl.js │ │ │ │ ├── lang.pt-BR.js │ │ │ │ ├── lang.pt-PT.js │ │ │ │ ├── lang.ro.js │ │ │ │ ├── lang.ru.js │ │ │ │ ├── lang.sk.js │ │ │ │ ├── lang.sl.js │ │ │ │ ├── lang.sq.js │ │ │ │ ├── lang.sr.js │ │ │ │ ├── lang.sv.js │ │ │ │ ├── lang.sw.js │ │ │ │ ├── lang.th.js │ │ │ │ ├── lang.tl.js │ │ │ │ ├── lang.tr.js │ │ │ │ ├── lang.uk.js │ │ │ │ ├── lang.vi.js │ │ │ │ ├── lang.yi.js │ │ │ │ ├── lang.zh-CN.js │ │ │ │ ├── lang.zh-HK.js │ │ │ │ ├── lang.zh-TW.js │ │ │ │ ├── lang.zh.js │ │ │ │ └── locale.js │ │ │ ├── spinbtn/ │ │ │ │ ├── JQuerySpinBtn.css │ │ │ │ └── JQuerySpinBtn.js │ │ │ ├── svg-editor.css │ │ │ ├── svg-editor.html │ │ │ ├── svg-editor.js │ │ │ ├── svgcanvas.js │ │ │ └── svgicons/ │ │ │ └── jquery.svgicons.js │ │ ├── svg-edit-overlay.css │ │ ├── svg-edit-overlay.js │ │ ├── svg-edit-overlay.xul │ │ ├── svg-edit.js │ │ └── svg-edit.xul │ ├── handlers.js │ ├── install.rdf │ ├── jar.mn │ └── moz.build ├── installer/ │ ├── Makefile.in │ ├── linux/ │ │ ├── bluegriffon.desktop │ │ └── template.desktop │ ├── package-manifest.in │ ├── removed-files.in │ └── windows/ │ ├── Makefile.in │ ├── app.tag.in │ ├── moz.build │ └── nsis/ │ ├── defines.nsi.in │ ├── installer.nsi │ ├── shared.nsh │ ├── uninstaller.nsi │ └── updater_append.ini ├── langpacks/ │ ├── Makefile.in │ ├── cs/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── cs/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── heureka-cz.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── mapy-cz.xml │ │ │ │ │ │ │ ├── seznam-cz.xml │ │ │ │ │ │ │ └── wikipedia-cz.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── cs/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── cs.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── cs/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── cs/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── cs.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── cs/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── cs/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── cs.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── cs/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── cs/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── cs.manifest │ │ │ └── searchplugins/ │ │ │ ├── google.xml │ │ │ ├── heureka-cz.xml │ │ │ ├── jyxo-cz.xml │ │ │ ├── seznam-cz.xml │ │ │ ├── slunecnice-cz.xml │ │ │ └── wikipedia-cz.xml │ │ ├── chrome/ │ │ │ ├── cs/ │ │ │ │ └── locale/ │ │ │ │ └── cs/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── cs.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── de/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── de/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazondotcom-de.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── leo_ende_de.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── wikipedia-de.xml │ │ │ │ │ │ │ └── yahoo-de.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── de/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── de.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── de/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── de/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── de.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── de/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── de/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── de.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── de/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── de/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── de.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazondotcom-de.xml │ │ │ ├── bing.xml │ │ │ ├── eBay-de.xml │ │ │ ├── google.xml │ │ │ ├── leo_ende_de.xml │ │ │ ├── wikipedia-de.xml │ │ │ └── yahoo-de.xml │ │ ├── chrome/ │ │ │ ├── de/ │ │ │ │ └── locale/ │ │ │ │ └── de/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── de.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── en-US/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── en-US/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazondotcom.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── twitter.xml │ │ │ │ │ │ │ ├── wikipedia.xml │ │ │ │ │ │ │ ├── yahoo-en-CA.xml │ │ │ │ │ │ │ ├── yahoo.xml │ │ │ │ │ │ │ └── yandex-en.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── en-US/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── en-US.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── en-US/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── en-US/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── en-US.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── en-US/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── en-US/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── en-US.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── en-US/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── en-US/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── en-US.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazondotcom.xml │ │ │ ├── bing.xml │ │ │ ├── eBay.xml │ │ │ ├── google.xml │ │ │ ├── twitter.xml │ │ │ ├── wikipedia.xml │ │ │ └── yahoo.xml │ │ ├── chrome/ │ │ │ ├── en-US/ │ │ │ │ └── locale/ │ │ │ │ └── en-US/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── en-US.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── es-ES/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── es-ES/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── drae.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── twitter.xml │ │ │ │ │ │ │ ├── wikipedia-es.xml │ │ │ │ │ │ │ └── yahoo-es.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── es-ES/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── es-ES.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── es-ES/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── es-ES/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── es-ES.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── es-ES/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── es-ES/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── es-ES.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── es-ES/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── es-ES/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── es-ES.manifest │ │ │ └── searchplugins/ │ │ │ ├── bing.xml │ │ │ ├── drae.xml │ │ │ ├── eBay-es.xml │ │ │ ├── google.xml │ │ │ ├── twitter.xml │ │ │ ├── wikipedia-es.xml │ │ │ └── yahoo-es.xml │ │ ├── chrome/ │ │ │ ├── es-ES/ │ │ │ │ └── locale/ │ │ │ │ └── es-ES/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── es-ES.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── fi/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── fi/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── bookplus-fi.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── wikipedia-fi.xml │ │ │ │ │ │ │ └── yahoo-fi.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── fi/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── fi.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── fi/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── fi/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── fi.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── fi/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── fi/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── fi.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── fi/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── fi/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── fi.manifest │ │ │ └── searchplugins/ │ │ │ ├── bing.xml │ │ │ ├── bookplus-fi.xml │ │ │ ├── eBay-fi.xml │ │ │ ├── google.xml │ │ │ ├── wikipedia-fi.xml │ │ │ └── yahoo-fi.xml │ │ ├── chrome/ │ │ │ ├── fi/ │ │ │ │ └── locale/ │ │ │ │ └── fi/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── fi.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── fr/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── fr/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazon-france.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── cnrtl-tlfi-fr.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── wikipedia-fr.xml │ │ │ │ │ │ │ └── yahoo-france.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── fr/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── fr.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── fr/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── fr/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── fr.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── fr/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── fr/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── fr.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── fr/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── fr/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── fr.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazon-france.xml │ │ │ ├── bing.xml │ │ │ ├── cnrtl-tlfi-fr.xml │ │ │ ├── eBay-france.xml │ │ │ ├── google.xml │ │ │ ├── wikipedia-fr.xml │ │ │ └── yahoo-france.xml │ │ ├── chrome/ │ │ │ ├── fr/ │ │ │ │ └── locale/ │ │ │ │ └── fr/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── fr.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── getlangpacks.sh │ ├── gl/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── gl/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazon-en-GB.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── wikipedia-gl.xml │ │ │ │ │ │ │ └── yahoo-es.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── gl/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── gl.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── gl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── gl/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── gl.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── gl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── gl/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── gl.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── gl/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── gl/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── gl.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazon-en-GB.xml │ │ │ ├── creativecommons.xml │ │ │ ├── eBay-es.xml │ │ │ ├── google.xml │ │ │ ├── wikipedia-gl.xml │ │ │ └── yahoo-es.xml │ │ ├── chrome/ │ │ │ ├── gl/ │ │ │ │ └── locale/ │ │ │ │ ├── gl/ │ │ │ │ │ ├── alerts/ │ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ │ ├── alert.properties │ │ │ │ │ │ └── notificationNames.properties │ │ │ │ │ ├── autoconfig/ │ │ │ │ │ │ └── autoconfig.properties │ │ │ │ │ ├── cookie/ │ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ │ ├── formautofill/ │ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ │ ├── global/ │ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ │ ├── actions.dtd │ │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ │ ├── config.dtd │ │ │ │ │ │ ├── config.properties │ │ │ │ │ │ ├── console.dtd │ │ │ │ │ │ ├── console.properties │ │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ │ ├── crashes.properties │ │ │ │ │ │ ├── css.properties │ │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ ├── dialog.properties │ │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ │ ├── dom/ │ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ │ ├── filefield.properties │ │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ │ ├── findbar.properties │ │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ │ ├── global.dtd │ │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ │ ├── intl.css │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ ├── keys.properties │ │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ │ ├── layout/ │ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ │ ├── narrate.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ │ ├── notification.dtd │ │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ │ ├── plugins.properties │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ │ ├── printing.properties │ │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ └── search.properties │ │ │ │ │ │ ├── security/ │ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ │ └── security.properties │ │ │ │ │ │ ├── svg/ │ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ │ ├── tree.dtd │ │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ │ ├── webapps.properties │ │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ │ ├── wizard.properties │ │ │ │ │ │ ├── xbl.properties │ │ │ │ │ │ ├── xml/ │ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ │ └── xul.properties │ │ │ │ │ ├── global-platform/ │ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ │ ├── unix/ │ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ │ └── win/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── global-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── mozapps/ │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ │ └── update.properties │ │ │ │ │ │ ├── handling/ │ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ │ └── handling.properties │ │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ │ ├── profile/ │ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ │ ├── update/ │ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ │ └── updates.properties │ │ │ │ │ │ └── xpinstall/ │ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ │ ├── necko/ │ │ │ │ │ │ └── necko.properties │ │ │ │ │ ├── passwordmgr/ │ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ │ └── passwordmgr.properties │ │ │ │ │ ├── pipnss/ │ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── pippki/ │ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ │ ├── pippki.properties │ │ │ │ │ │ └── validation.dtd │ │ │ │ │ ├── places/ │ │ │ │ │ │ └── places.properties │ │ │ │ │ ├── pluginproblem/ │ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ │ └── services/ │ │ │ │ │ ├── errors.properties │ │ │ │ │ └── sync.properties │ │ │ │ └── webapprt/ │ │ │ │ ├── webapp.dtd │ │ │ │ └── webapp.properties │ │ │ └── gl.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── he/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── he/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── morfix-dic.xml │ │ │ │ │ │ │ ├── wikipedia-he.xml │ │ │ │ │ │ │ └── yahoo.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── he/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── he.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── he/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── he/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── he.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── he/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── he/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── he.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── he/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── he/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── he.manifest │ │ │ └── searchplugins/ │ │ │ ├── google.xml │ │ │ ├── morfix-dic.xml │ │ │ ├── wikipedia-he.xml │ │ │ └── yahoo.xml │ │ ├── chrome/ │ │ │ ├── he/ │ │ │ │ └── locale/ │ │ │ │ └── he/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── he.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── hu/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── hu/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── sztaki-en-hu.xml │ │ │ │ │ │ │ ├── vatera.xml │ │ │ │ │ │ │ └── wikipedia-hu.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── hu/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── hu.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── hu/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── hu.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── hu/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── hu.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── hu/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── hu/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── hu.manifest │ │ │ └── searchplugins/ │ │ │ ├── creativecommons.xml │ │ │ ├── eBay-hu.xml │ │ │ ├── google.xml │ │ │ ├── sztaki-en-hu.xml │ │ │ ├── vatera.xml │ │ │ └── wikipedia-hu.xml │ │ ├── chrome/ │ │ │ ├── hu/ │ │ │ │ └── locale/ │ │ │ │ └── hu/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── hu.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── it/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── it/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazon-it.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── hoepli.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── wikipedia-it.xml │ │ │ │ │ │ │ └── yahoo-it.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── it/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── it.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── it/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── it.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── it/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── it.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── it/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── it/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── it.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazon-it.xml │ │ │ ├── bing.xml │ │ │ ├── eBay-it.xml │ │ │ ├── google.xml │ │ │ ├── hoepli.xml │ │ │ ├── wikipedia-it.xml │ │ │ └── yahoo-it.xml │ │ ├── chrome/ │ │ │ ├── it/ │ │ │ │ └── locale/ │ │ │ │ └── it/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── it.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── ja/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── ja/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazon-jp.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── oshiete-goo.xml │ │ │ │ │ │ │ ├── rakuten.xml │ │ │ │ │ │ │ ├── twitter-ja.xml │ │ │ │ │ │ │ ├── wikipedia-ja.xml │ │ │ │ │ │ │ ├── yahoo-jp-auctions.xml │ │ │ │ │ │ │ └── yahoo-jp.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── ja/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── ja.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ja/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── ja.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ja/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── ja.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── ja/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── ja/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── ja.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazon-jp.xml │ │ │ ├── google-jp.xml │ │ │ ├── oshiete-goo.xml │ │ │ ├── rakuten.xml │ │ │ ├── twitter-ja.xml │ │ │ ├── wikipedia-ja.xml │ │ │ ├── yahoo-jp-auctions.xml │ │ │ └── yahoo-jp.xml │ │ ├── chrome/ │ │ │ ├── ja/ │ │ │ │ └── locale/ │ │ │ │ └── ja/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── ja.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── ko/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── ko/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── danawa-kr.xml │ │ │ │ │ │ │ ├── daum-kr.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── naver-kr.xml │ │ │ │ │ │ │ └── wikipedia-kr.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── ko/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── ko.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ko/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ko/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── ko.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ko/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ko/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── ko.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── ko/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── ko/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── ko.manifest │ │ │ └── searchplugins/ │ │ │ ├── danawa-kr.xml │ │ │ ├── daum-kr.xml │ │ │ ├── google.xml │ │ │ ├── naver-kr.xml │ │ │ └── wikipedia-kr.xml │ │ ├── chrome/ │ │ │ ├── ko/ │ │ │ │ └── locale/ │ │ │ │ └── ko/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── ko.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── moz.build │ ├── nl/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── nl/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── bolcom-nl.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── marktplaats-nl.xml │ │ │ │ │ │ │ └── wikipedia-nl.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── nl/ │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ │ └── formautofill.properties │ │ │ │ │ └── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── nl.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── nl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── nl/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── nl.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── nl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── nl/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── nl.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── nl/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── nl/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── nl.manifest │ │ │ └── searchplugins/ │ │ │ ├── bing.xml │ │ │ ├── bolcom-nl.xml │ │ │ ├── google.xml │ │ │ ├── marktplaats-nl.xml │ │ │ └── wikipedia-nl.xml │ │ ├── chrome/ │ │ │ ├── nl/ │ │ │ │ └── locale/ │ │ │ │ └── nl/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── nl.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── pl/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── pl/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── allegro-pl.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── pwn-pl.xml │ │ │ │ │ │ │ ├── wikipedia-pl.xml │ │ │ │ │ │ │ └── wolnelektury-pl.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── pl/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── pl.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── pl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── pl/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── pl.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── pl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── pl/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── pl.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── pl/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── pl/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── pl.manifest │ │ │ └── searchplugins/ │ │ │ ├── allegro-pl.xml │ │ │ ├── fbc-pl.xml │ │ │ ├── google.xml │ │ │ ├── merlin-pl.xml │ │ │ ├── pwn-pl.xml │ │ │ ├── wikipedia-pl.xml │ │ │ └── wp-pl.xml │ │ ├── chrome/ │ │ │ ├── pl/ │ │ │ │ └── locale/ │ │ │ │ └── pl/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── pl.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── ru/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── .mkdir.done │ │ │ │ ├── ru/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── mailru.xml │ │ │ │ │ │ │ ├── ozonru.xml │ │ │ │ │ │ │ ├── priceru.xml │ │ │ │ │ │ │ ├── wikipedia-ru.xml │ │ │ │ │ │ │ └── yandex-ru.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── ru/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── ru.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ru/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ru/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── ru.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── ru/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── ru/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── ru.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── ru/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── ru/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── ru.manifest │ │ │ └── searchplugins/ │ │ │ ├── ddg.xml │ │ │ ├── google.xml │ │ │ ├── mailru.xml │ │ │ ├── ozonru.xml │ │ │ ├── priceru.xml │ │ │ ├── wikipedia-ru.xml │ │ │ ├── yandex-slovari.xml │ │ │ └── yandex.xml │ │ ├── chrome/ │ │ │ ├── .mkdir.done │ │ │ ├── ru/ │ │ │ │ └── locale/ │ │ │ │ └── ru/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ └── plugins.dtd │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ └── pipnss.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ └── pippki.properties │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── ru.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── sl/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── sl/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── ceneji.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── najdi-si.xml │ │ │ │ │ │ │ ├── odpiralni.xml │ │ │ │ │ │ │ ├── twitter.xml │ │ │ │ │ │ │ └── wikipedia-sl.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── sl/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── sl.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sl/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── sl.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sl/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sl/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── sl.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── sl/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── sl/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── sl.manifest │ │ │ └── searchplugins/ │ │ │ ├── ceneji.xml │ │ │ ├── google.xml │ │ │ ├── najdi-si.xml │ │ │ ├── odpiralni.xml │ │ │ ├── twitter.xml │ │ │ └── wikipedia-sl.xml │ │ ├── chrome/ │ │ │ ├── sl/ │ │ │ │ └── locale/ │ │ │ │ └── sl/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── sl.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── sr/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── sr/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazon-en-GB.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── pogodak.xml │ │ │ │ │ │ │ └── wikipedia-sr.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── sr/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── sr.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sr/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sr/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── sr.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sr/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sr/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── sr.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── sr/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── sr/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── sr.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazon-en-GB.xml │ │ │ ├── bing.xml │ │ │ ├── eBay-en-GB.xml │ │ │ ├── google.xml │ │ │ ├── pogodakyu.xml │ │ │ ├── vokabular.xml │ │ │ └── wikipedia-sr.xml │ │ ├── chrome/ │ │ │ ├── sr/ │ │ │ │ └── locale/ │ │ │ │ └── sr/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── sr.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── sv-SE/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── sv-SE/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── allaannonser-sv-SE.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ ├── prisjakt-sv-SE.xml │ │ │ │ │ │ │ ├── tyda-sv-SE.xml │ │ │ │ │ │ │ ├── wikipedia-sv-SE.xml │ │ │ │ │ │ │ └── yahoo-sv-SE.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── sv-SE/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── sv-SE.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sv-SE/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sv-SE/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── sv-SE.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── sv-SE/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── sv-SE/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── sv-SE.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── sv-SE/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── sv-SE/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── sv-SE.manifest │ │ │ └── searchplugins/ │ │ │ ├── allaannonser-sv-SE.xml │ │ │ ├── bing.xml │ │ │ ├── google.xml │ │ │ ├── prisjakt-sv-SE.xml │ │ │ ├── tyda-sv-SE.xml │ │ │ ├── wikipedia-sv-SE.xml │ │ │ └── yahoo-sv-SE.xml │ │ ├── chrome/ │ │ │ ├── sv-SE/ │ │ │ │ └── locale/ │ │ │ │ └── sv-SE/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── sv-SE.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ ├── zh-CN/ │ │ ├── bluegriffon/ │ │ │ └── chrome.manifest │ │ ├── browser/ │ │ │ ├── chrome/ │ │ │ │ ├── zh-CN/ │ │ │ │ │ └── locale/ │ │ │ │ │ ├── branding/ │ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ │ ├── brand.properties │ │ │ │ │ │ └── browserconfig.properties │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ │ ├── accounts.properties │ │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ ├── browser.dtd │ │ │ │ │ │ ├── browser.properties │ │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ │ ├── loop/ │ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ │ └── migration.properties │ │ │ │ │ │ ├── netError.dtd │ │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ │ ├── newTab.properties │ │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ │ ├── places/ │ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ │ └── places.properties │ │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ │ ├── advanced-scripts.dtd │ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ │ ├── search.properties │ │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ │ ├── amazondotcn.xml │ │ │ │ │ │ │ ├── baidu.xml │ │ │ │ │ │ │ ├── bing.xml │ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ └── wikipedia-zh-CN.xml │ │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ │ ├── tabview.properties │ │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ │ ├── translation.dtd │ │ │ │ │ │ ├── translation.properties │ │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ │ ├── browser-region/ │ │ │ │ │ │ └── region.properties │ │ │ │ │ ├── feedback/ │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ └── main.properties │ │ │ │ │ ├── pdfviewer/ │ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ └── zh-CN/ │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ │ └── webide.properties │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ └── formautofill.properties │ │ │ │ └── zh-CN.manifest │ │ │ ├── chrome.manifest │ │ │ ├── crashreporter-override.ini │ │ │ ├── defaults/ │ │ │ │ ├── preferences/ │ │ │ │ │ └── firefox-l10n.js │ │ │ │ └── profile/ │ │ │ │ ├── bookmarks.html │ │ │ │ ├── chrome/ │ │ │ │ │ ├── userChrome-example.css │ │ │ │ │ └── userContent-example.css │ │ │ │ ├── localstore.rdf │ │ │ │ └── mimeTypes.rdf │ │ │ ├── features/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── firefox@getpocket.com/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── zh-CN/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── zh-CN/ │ │ │ │ │ │ └── pocket.properties │ │ │ │ │ └── zh-CN.manifest │ │ │ │ ├── loop@mozilla.org/ │ │ │ │ │ ├── chrome.manifest │ │ │ │ │ ├── zh-CN/ │ │ │ │ │ │ └── locale/ │ │ │ │ │ │ └── zh-CN/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ └── zh-CN.manifest │ │ │ │ └── presentation@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── zh-CN/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── zh-CN/ │ │ │ │ │ └── presentation.properties │ │ │ │ └── zh-CN.manifest │ │ │ └── searchplugins/ │ │ │ ├── amazondotcn.xml │ │ │ ├── baidu.xml │ │ │ ├── baiduzhidao.xml │ │ │ ├── bing.xml │ │ │ ├── creativecommons.xml │ │ │ ├── eachnet.xml │ │ │ ├── google.xml │ │ │ ├── paipai.xml │ │ │ └── wikipedia-zh-CN.xml │ │ ├── chrome/ │ │ │ ├── zh-CN/ │ │ │ │ └── locale/ │ │ │ │ └── zh-CN/ │ │ │ │ ├── alerts/ │ │ │ │ │ ├── alert.dtd │ │ │ │ │ ├── alert.properties │ │ │ │ │ └── notificationNames.properties │ │ │ │ ├── autoconfig/ │ │ │ │ │ └── autoconfig.properties │ │ │ │ ├── cookie/ │ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ │ └── cookieAcceptDialog.properties │ │ │ │ ├── formautofill/ │ │ │ │ │ └── requestAutocomplete.dtd │ │ │ │ ├── global/ │ │ │ │ │ ├── AccessFu.properties │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── aboutAbout.dtd │ │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ │ ├── aboutProfiles.properties │ │ │ │ │ ├── aboutReader.properties │ │ │ │ │ ├── aboutRights.dtd │ │ │ │ │ ├── aboutRights.properties │ │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ │ ├── aboutSupport.dtd │ │ │ │ │ ├── aboutSupport.properties │ │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ │ ├── actions.dtd │ │ │ │ │ ├── appPicker.dtd │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── autocomplete.properties │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── charsetMenu.dtd │ │ │ │ │ ├── charsetMenu.properties │ │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ │ ├── charsetTitles.properties │ │ │ │ │ ├── commonDialog.dtd │ │ │ │ │ ├── commonDialogs.properties │ │ │ │ │ ├── config.dtd │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── console.dtd │ │ │ │ │ ├── console.properties │ │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ │ ├── crashes.dtd │ │ │ │ │ ├── crashes.properties │ │ │ │ │ ├── css.properties │ │ │ │ │ ├── customizeCharset.dtd │ │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ │ ├── customizeToolbar.properties │ │ │ │ │ ├── dateFormat.properties │ │ │ │ │ ├── datetimepicker.dtd │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ └── styleinspector.properties │ │ │ │ │ ├── dialog.properties │ │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ │ ├── dom/ │ │ │ │ │ │ └── dom.properties │ │ │ │ │ ├── downloadProgress.properties │ │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ │ ├── filefield.properties │ │ │ │ │ ├── filepicker.dtd │ │ │ │ │ ├── filepicker.properties │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── findbar.properties │ │ │ │ │ ├── finddialog.dtd │ │ │ │ │ ├── finddialog.properties │ │ │ │ │ ├── global-strres.properties │ │ │ │ │ ├── global.dtd │ │ │ │ │ ├── globalKeys.dtd │ │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ │ ├── intl.css │ │ │ │ │ ├── intl.properties │ │ │ │ │ ├── keys.properties │ │ │ │ │ ├── languageNames.properties │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ │ └── xmlparser.properties │ │ │ │ │ ├── layout_errors.properties │ │ │ │ │ ├── mathml/ │ │ │ │ │ │ └── mathml.properties │ │ │ │ │ ├── mozilla.dtd │ │ │ │ │ ├── narrate.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── netErrorApp.dtd │ │ │ │ │ ├── notification.dtd │ │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ │ ├── plugins.properties │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ ├── printPageSetup.dtd │ │ │ │ │ ├── printPreview.dtd │ │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ │ ├── printProgress.dtd │ │ │ │ │ ├── printdialog.dtd │ │ │ │ │ ├── printdialog.properties │ │ │ │ │ ├── printing.properties │ │ │ │ │ ├── printjoboptions.dtd │ │ │ │ │ ├── regionNames.properties │ │ │ │ │ ├── resetProfile.dtd │ │ │ │ │ ├── resetProfile.properties │ │ │ │ │ ├── search/ │ │ │ │ │ │ └── search.properties │ │ │ │ │ ├── security/ │ │ │ │ │ │ ├── caps.properties │ │ │ │ │ │ ├── csp.properties │ │ │ │ │ │ └── security.properties │ │ │ │ │ ├── storage.properties │ │ │ │ │ ├── svg/ │ │ │ │ │ │ └── svg.properties │ │ │ │ │ ├── textcontext.dtd │ │ │ │ │ ├── tree.dtd │ │ │ │ │ ├── videocontrols.dtd │ │ │ │ │ ├── viewSource.dtd │ │ │ │ │ ├── viewSource.properties │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ ├── webapps.properties │ │ │ │ │ ├── wizard.dtd │ │ │ │ │ ├── wizard.properties │ │ │ │ │ ├── xbl.properties │ │ │ │ │ ├── xml/ │ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ │ ├── xpinstall/ │ │ │ │ │ │ └── xpinstall.properties │ │ │ │ │ ├── xslt/ │ │ │ │ │ │ └── xslt.properties │ │ │ │ │ └── xul.properties │ │ │ │ ├── global-platform/ │ │ │ │ │ ├── mac/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ ├── unix/ │ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ │ ├── intl.properties │ │ │ │ │ │ └── platformKeys.properties │ │ │ │ │ └── win/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── global-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── mozapps/ │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ │ └── unknownContentType.properties │ │ │ │ │ ├── extensions/ │ │ │ │ │ │ ├── about.dtd │ │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ │ ├── extensions.properties │ │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── handling/ │ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ │ └── handling.properties │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ │ └── plugins.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ └── removemp.dtd │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ │ └── profileSelection.properties │ │ │ │ │ ├── update/ │ │ │ │ │ │ ├── history.dtd │ │ │ │ │ │ ├── updates.dtd │ │ │ │ │ │ └── updates.properties │ │ │ │ │ └── xpinstall/ │ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ │ └── xpinstallConfirm.properties │ │ │ │ ├── necko/ │ │ │ │ │ └── necko.properties │ │ │ │ ├── passwordmgr/ │ │ │ │ │ ├── passwordManager.dtd │ │ │ │ │ └── passwordmgr.properties │ │ │ │ ├── pipnss/ │ │ │ │ │ ├── nsserrors.properties │ │ │ │ │ ├── pipnss.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── pippki/ │ │ │ │ │ ├── certManager.dtd │ │ │ │ │ ├── deviceManager.dtd │ │ │ │ │ ├── pippki.dtd │ │ │ │ │ ├── pippki.properties │ │ │ │ │ └── validation.dtd │ │ │ │ ├── places/ │ │ │ │ │ └── places.properties │ │ │ │ ├── pluginproblem/ │ │ │ │ │ └── pluginproblem.dtd │ │ │ │ └── services/ │ │ │ │ ├── errors.properties │ │ │ │ └── sync.properties │ │ │ └── zh-CN.manifest │ │ ├── chrome.manifest │ │ └── install.rdf │ └── zh-TW/ │ ├── bluegriffon/ │ │ └── chrome.manifest │ ├── browser/ │ │ ├── chrome/ │ │ │ ├── zh-TW/ │ │ │ │ └── locale/ │ │ │ │ ├── branding/ │ │ │ │ │ ├── brand.dtd │ │ │ │ │ ├── brand.properties │ │ │ │ │ └── browserconfig.properties │ │ │ │ ├── browser/ │ │ │ │ │ ├── aboutAccounts.dtd │ │ │ │ │ ├── aboutCertError.dtd │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aboutHealthReport.dtd │ │ │ │ │ ├── aboutHome.dtd │ │ │ │ │ ├── aboutPrivateBrowsing.dtd │ │ │ │ │ ├── aboutPrivateBrowsing.properties │ │ │ │ │ ├── aboutRobots.dtd │ │ │ │ │ ├── aboutSearchReset.dtd │ │ │ │ │ ├── aboutSessionRestore.dtd │ │ │ │ │ ├── aboutSyncTabs.dtd │ │ │ │ │ ├── aboutTabCrashed.dtd │ │ │ │ │ ├── accounts.properties │ │ │ │ │ ├── appstrings.properties │ │ │ │ │ ├── baseMenuOverlay.dtd │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ ├── browser.dtd │ │ │ │ │ ├── browser.properties │ │ │ │ │ ├── customizableui/ │ │ │ │ │ │ └── customizableWidgets.properties │ │ │ │ │ ├── devtools/ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ ├── app-manager.dtd │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ ├── gcli.properties │ │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ ├── profiler.dtd │ │ │ │ │ │ ├── profiler.properties │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ ├── styleinspector.properties │ │ │ │ │ │ ├── tilt.properties │ │ │ │ │ │ ├── timeline.dtd │ │ │ │ │ │ ├── timeline.properties │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ └── webide.properties │ │ │ │ │ ├── downloads/ │ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ │ ├── downloads.properties │ │ │ │ │ │ └── settingsChange.dtd │ │ │ │ │ ├── engineManager.dtd │ │ │ │ │ ├── engineManager.properties │ │ │ │ │ ├── feeds/ │ │ │ │ │ │ ├── subscribe.dtd │ │ │ │ │ │ └── subscribe.properties │ │ │ │ │ ├── lightweightThemes.properties │ │ │ │ │ ├── loop/ │ │ │ │ │ │ └── loop.properties │ │ │ │ │ ├── migration/ │ │ │ │ │ │ ├── migration.dtd │ │ │ │ │ │ └── migration.properties │ │ │ │ │ ├── netError.dtd │ │ │ │ │ ├── newTab.dtd │ │ │ │ │ ├── newTab.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageInfo.dtd │ │ │ │ │ ├── pageInfo.properties │ │ │ │ │ ├── places/ │ │ │ │ │ │ ├── bookmarkProperties.properties │ │ │ │ │ │ ├── editBookmarkOverlay.dtd │ │ │ │ │ │ ├── moveBookmarks.dtd │ │ │ │ │ │ ├── places.dtd │ │ │ │ │ │ └── places.properties │ │ │ │ │ ├── preferences/ │ │ │ │ │ │ ├── aboutPermissions.dtd │ │ │ │ │ │ ├── aboutPermissions.properties │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── applicationManager.dtd │ │ │ │ │ │ ├── applicationManager.properties │ │ │ │ │ │ ├── applications.dtd │ │ │ │ │ │ ├── blocklists.dtd │ │ │ │ │ │ ├── colors.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── containers.dtd │ │ │ │ │ │ ├── containers.properties │ │ │ │ │ │ ├── content.dtd │ │ │ │ │ │ ├── cookies.dtd │ │ │ │ │ │ ├── donottrack.dtd │ │ │ │ │ │ ├── fonts.dtd │ │ │ │ │ │ ├── languages.dtd │ │ │ │ │ │ ├── main.dtd │ │ │ │ │ │ ├── permissions.dtd │ │ │ │ │ │ ├── preferences.dtd │ │ │ │ │ │ ├── preferences.properties │ │ │ │ │ │ ├── privacy.dtd │ │ │ │ │ │ ├── search.dtd │ │ │ │ │ │ ├── security.dtd │ │ │ │ │ │ ├── selectBookmark.dtd │ │ │ │ │ │ ├── siteDataSettings.dtd │ │ │ │ │ │ ├── sync.dtd │ │ │ │ │ │ ├── tabs.dtd │ │ │ │ │ │ └── translation.dtd │ │ │ │ │ ├── quitDialog.properties │ │ │ │ │ ├── safeMode.dtd │ │ │ │ │ ├── safebrowsing/ │ │ │ │ │ │ ├── phishing-afterload-warning-message.dtd │ │ │ │ │ │ └── report-phishing.dtd │ │ │ │ │ ├── sanitize.dtd │ │ │ │ │ ├── search.properties │ │ │ │ │ ├── searchbar.dtd │ │ │ │ │ ├── searchplugins/ │ │ │ │ │ │ ├── ddg.xml │ │ │ │ │ │ ├── findbook-zh-TW.xml │ │ │ │ │ │ ├── google-nocodes.xml │ │ │ │ │ │ ├── google.xml │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ ├── wikipedia-zh-TW.xml │ │ │ │ │ │ ├── yahoo-answer-zh-TW.xml │ │ │ │ │ │ ├── yahoo-bid-zh-TW.xml │ │ │ │ │ │ ├── yahoo-zh-TW-HK.xml │ │ │ │ │ │ └── yahoo-zh-TW.xml │ │ │ │ │ ├── setDesktopBackground.dtd │ │ │ │ │ ├── shellservice.properties │ │ │ │ │ ├── sitePermissions.properties │ │ │ │ │ ├── syncBrand.dtd │ │ │ │ │ ├── syncCustomize.dtd │ │ │ │ │ ├── syncGenericChange.properties │ │ │ │ │ ├── syncKey.dtd │ │ │ │ │ ├── syncProgress.dtd │ │ │ │ │ ├── syncQuota.dtd │ │ │ │ │ ├── syncQuota.properties │ │ │ │ │ ├── syncSetup.dtd │ │ │ │ │ ├── syncSetup.properties │ │ │ │ │ ├── tabbrowser.dtd │ │ │ │ │ ├── tabbrowser.properties │ │ │ │ │ ├── tabview.properties │ │ │ │ │ ├── taskbar.properties │ │ │ │ │ ├── translation.dtd │ │ │ │ │ ├── translation.properties │ │ │ │ │ └── webrtcIndicator.properties │ │ │ │ ├── browser-region/ │ │ │ │ │ └── region.properties │ │ │ │ ├── feedback/ │ │ │ │ │ ├── main.dtd │ │ │ │ │ └── main.properties │ │ │ │ ├── pdfviewer/ │ │ │ │ │ ├── chrome.properties │ │ │ │ │ └── viewer.properties │ │ │ │ └── zh-TW/ │ │ │ │ ├── devtools/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── VariablesView.dtd │ │ │ │ │ │ ├── aboutdebugging.dtd │ │ │ │ │ │ ├── aboutdebugging.properties │ │ │ │ │ │ ├── animationinspector.dtd │ │ │ │ │ │ ├── animationinspector.properties │ │ │ │ │ │ ├── app-manager.properties │ │ │ │ │ │ ├── appcacheutils.properties │ │ │ │ │ │ ├── boxmodel.properties │ │ │ │ │ │ ├── canvasdebugger.dtd │ │ │ │ │ │ ├── canvasdebugger.properties │ │ │ │ │ │ ├── components.properties │ │ │ │ │ │ ├── connection-screen.dtd │ │ │ │ │ │ ├── connection-screen.properties │ │ │ │ │ │ ├── debugger.dtd │ │ │ │ │ │ ├── debugger.properties │ │ │ │ │ │ ├── device.properties │ │ │ │ │ │ ├── dom.properties │ │ │ │ │ │ ├── eyedropper.properties │ │ │ │ │ │ ├── filterwidget.dtd │ │ │ │ │ │ ├── filterwidget.properties │ │ │ │ │ │ ├── font-inspector.dtd │ │ │ │ │ │ ├── font-inspector.properties │ │ │ │ │ │ ├── graphs.properties │ │ │ │ │ │ ├── har.properties │ │ │ │ │ │ ├── inspector.dtd │ │ │ │ │ │ ├── inspector.properties │ │ │ │ │ │ ├── jit-optimizations.properties │ │ │ │ │ │ ├── jsonview.properties │ │ │ │ │ │ ├── layout.properties │ │ │ │ │ │ ├── layoutview.dtd │ │ │ │ │ │ ├── markers.properties │ │ │ │ │ │ ├── memory.properties │ │ │ │ │ │ ├── menus.properties │ │ │ │ │ │ ├── netmonitor.dtd │ │ │ │ │ │ ├── netmonitor.properties │ │ │ │ │ │ ├── performance.dtd │ │ │ │ │ │ ├── performance.properties │ │ │ │ │ │ ├── projecteditor.properties │ │ │ │ │ │ ├── promisedebugger.dtd │ │ │ │ │ │ ├── promisedebugger.properties │ │ │ │ │ │ ├── responsive.properties │ │ │ │ │ │ ├── responsiveUI.properties │ │ │ │ │ │ ├── scratchpad.dtd │ │ │ │ │ │ ├── scratchpad.properties │ │ │ │ │ │ ├── shadereditor.dtd │ │ │ │ │ │ ├── shadereditor.properties │ │ │ │ │ │ ├── shared.properties │ │ │ │ │ │ ├── sourceeditor.dtd │ │ │ │ │ │ ├── sourceeditor.properties │ │ │ │ │ │ ├── startup.properties │ │ │ │ │ │ ├── storage.dtd │ │ │ │ │ │ ├── storage.properties │ │ │ │ │ │ ├── styleeditor.dtd │ │ │ │ │ │ ├── styleeditor.properties │ │ │ │ │ │ ├── styleinspector.dtd │ │ │ │ │ │ ├── toolbox.dtd │ │ │ │ │ │ ├── toolbox.properties │ │ │ │ │ │ ├── webConsole.dtd │ │ │ │ │ │ ├── webaudioeditor.dtd │ │ │ │ │ │ ├── webaudioeditor.properties │ │ │ │ │ │ ├── webconsole.properties │ │ │ │ │ │ ├── webide.dtd │ │ │ │ │ │ └── webide.properties │ │ │ │ │ └── shared/ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ ├── debugger.properties │ │ │ │ │ ├── gcli.properties │ │ │ │ │ ├── gclicommands.properties │ │ │ │ │ ├── shared.properties │ │ │ │ │ └── styleinspector.properties │ │ │ │ └── formautofill.properties │ │ │ └── zh-TW.manifest │ │ ├── chrome.manifest │ │ ├── crashreporter-override.ini │ │ ├── defaults/ │ │ │ ├── preferences/ │ │ │ │ └── firefox-l10n.js │ │ │ └── profile/ │ │ │ ├── bookmarks.html │ │ │ ├── chrome/ │ │ │ │ ├── userChrome-example.css │ │ │ │ └── userContent-example.css │ │ │ ├── localstore.rdf │ │ │ └── mimeTypes.rdf │ │ ├── features/ │ │ │ ├── chrome.manifest │ │ │ ├── firefox@getpocket.com/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── zh-TW/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── zh-TW/ │ │ │ │ │ └── pocket.properties │ │ │ │ └── zh-TW.manifest │ │ │ ├── loop@mozilla.org/ │ │ │ │ ├── chrome.manifest │ │ │ │ ├── zh-TW/ │ │ │ │ │ └── locale/ │ │ │ │ │ └── zh-TW/ │ │ │ │ │ └── loop.properties │ │ │ │ └── zh-TW.manifest │ │ │ └── presentation@mozilla.org/ │ │ │ ├── chrome.manifest │ │ │ ├── zh-TW/ │ │ │ │ └── locale/ │ │ │ │ └── zh-TW/ │ │ │ │ └── presentation.properties │ │ │ └── zh-TW.manifest │ │ └── searchplugins/ │ │ ├── creativecommons.xml │ │ ├── findbook-zh-TW.xml │ │ ├── google.xml │ │ ├── wikipedia-zh-TW.xml │ │ ├── yahoo-answer-zh-TW.xml │ │ ├── yahoo-bid-zh-TW.xml │ │ └── yahoo-zh-TW.xml │ ├── chrome/ │ │ ├── zh-TW/ │ │ │ └── locale/ │ │ │ └── zh-TW/ │ │ │ ├── alerts/ │ │ │ │ ├── alert.dtd │ │ │ │ ├── alert.properties │ │ │ │ └── notificationNames.properties │ │ │ ├── autoconfig/ │ │ │ │ └── autoconfig.properties │ │ │ ├── cookie/ │ │ │ │ ├── cookieAcceptDialog.dtd │ │ │ │ └── cookieAcceptDialog.properties │ │ │ ├── formautofill/ │ │ │ │ └── requestAutocomplete.dtd │ │ │ ├── global/ │ │ │ │ ├── AccessFu.properties │ │ │ │ ├── about.dtd │ │ │ │ ├── aboutAbout.dtd │ │ │ │ ├── aboutNetworking.dtd │ │ │ │ ├── aboutProfiles.dtd │ │ │ │ ├── aboutProfiles.properties │ │ │ │ ├── aboutReader.properties │ │ │ │ ├── aboutRights.dtd │ │ │ │ ├── aboutRights.properties │ │ │ │ ├── aboutServiceWorkers.dtd │ │ │ │ ├── aboutServiceWorkers.properties │ │ │ │ ├── aboutSupport.dtd │ │ │ │ ├── aboutSupport.properties │ │ │ │ ├── aboutTelemetry.dtd │ │ │ │ ├── aboutTelemetry.properties │ │ │ │ ├── aboutWebrtc.properties │ │ │ │ ├── actions.dtd │ │ │ │ ├── appPicker.dtd │ │ │ │ ├── appstrings.properties │ │ │ │ ├── autocomplete.properties │ │ │ │ ├── brand.dtd │ │ │ │ ├── browser.properties │ │ │ │ ├── charsetMenu.dtd │ │ │ │ ├── charsetMenu.properties │ │ │ │ ├── charsetOverlay.dtd │ │ │ │ ├── charsetTitles.properties │ │ │ │ ├── commonDialog.dtd │ │ │ │ ├── commonDialogs.properties │ │ │ │ ├── config.dtd │ │ │ │ ├── config.properties │ │ │ │ ├── console.dtd │ │ │ │ ├── console.properties │ │ │ │ ├── contentAreaCommands.properties │ │ │ │ ├── crashes.dtd │ │ │ │ ├── crashes.properties │ │ │ │ ├── css.properties │ │ │ │ ├── customizeCharset.dtd │ │ │ │ ├── customizeToolbar.dtd │ │ │ │ ├── customizeToolbar.properties │ │ │ │ ├── dateFormat.properties │ │ │ │ ├── datetimepicker.dtd │ │ │ │ ├── devtools/ │ │ │ │ │ ├── csscoverage.dtd │ │ │ │ │ ├── csscoverage.properties │ │ │ │ │ ├── debugger.properties │ │ │ │ │ └── styleinspector.properties │ │ │ │ ├── dialog.properties │ │ │ │ ├── dialogOverlay.dtd │ │ │ │ ├── dom/ │ │ │ │ │ └── dom.properties │ │ │ │ ├── downloadProgress.properties │ │ │ │ ├── editMenuOverlay.dtd │ │ │ │ ├── extensions.properties │ │ │ │ ├── fallbackMenubar.properties │ │ │ │ ├── filefield.properties │ │ │ │ ├── filepicker.dtd │ │ │ │ ├── filepicker.properties │ │ │ │ ├── findbar.dtd │ │ │ │ ├── findbar.properties │ │ │ │ ├── finddialog.dtd │ │ │ │ ├── finddialog.properties │ │ │ │ ├── global-strres.properties │ │ │ │ ├── global.dtd │ │ │ │ ├── globalKeys.dtd │ │ │ │ ├── headsUpDisplay.properties │ │ │ │ ├── intl.css │ │ │ │ ├── intl.properties │ │ │ │ ├── keys.properties │ │ │ │ ├── languageNames.properties │ │ │ │ ├── layout/ │ │ │ │ │ ├── HtmlForm.properties │ │ │ │ │ ├── MediaDocument.properties │ │ │ │ │ ├── htmlparser.properties │ │ │ │ │ └── xmlparser.properties │ │ │ │ ├── layout_errors.properties │ │ │ │ ├── mathml/ │ │ │ │ │ └── mathml.properties │ │ │ │ ├── mozilla.dtd │ │ │ │ ├── narrate.properties │ │ │ │ ├── netError.dtd │ │ │ │ ├── netErrorApp.dtd │ │ │ │ ├── notification.dtd │ │ │ │ ├── nsWebBrowserPersist.properties │ │ │ │ ├── plugins.properties │ │ │ │ ├── preferences.dtd │ │ │ │ ├── printPageSetup.dtd │ │ │ │ ├── printPreview.dtd │ │ │ │ ├── printPreviewProgress.dtd │ │ │ │ ├── printProgress.dtd │ │ │ │ ├── printdialog.dtd │ │ │ │ ├── printdialog.properties │ │ │ │ ├── printing.properties │ │ │ │ ├── printjoboptions.dtd │ │ │ │ ├── regionNames.properties │ │ │ │ ├── resetProfile.dtd │ │ │ │ ├── resetProfile.properties │ │ │ │ ├── search/ │ │ │ │ │ └── search.properties │ │ │ │ ├── security/ │ │ │ │ │ ├── caps.properties │ │ │ │ │ ├── csp.properties │ │ │ │ │ └── security.properties │ │ │ │ ├── storage.properties │ │ │ │ ├── svg/ │ │ │ │ │ └── svg.properties │ │ │ │ ├── textcontext.dtd │ │ │ │ ├── tree.dtd │ │ │ │ ├── videocontrols.dtd │ │ │ │ ├── viewSource.dtd │ │ │ │ ├── viewSource.properties │ │ │ │ ├── webConsole.dtd │ │ │ │ ├── webapps.properties │ │ │ │ ├── wizard.dtd │ │ │ │ ├── wizard.properties │ │ │ │ ├── xbl.properties │ │ │ │ ├── xml/ │ │ │ │ │ └── prettyprint.dtd │ │ │ │ ├── xpinstall/ │ │ │ │ │ └── xpinstall.properties │ │ │ │ ├── xslt/ │ │ │ │ │ └── xslt.properties │ │ │ │ └── xul.properties │ │ │ ├── global-platform/ │ │ │ │ ├── mac/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ ├── unix/ │ │ │ │ │ ├── accessible.properties │ │ │ │ │ ├── intl.properties │ │ │ │ │ └── platformKeys.properties │ │ │ │ └── win/ │ │ │ │ ├── accessible.properties │ │ │ │ ├── intl.properties │ │ │ │ └── platformKeys.properties │ │ │ ├── global-region/ │ │ │ │ └── region.properties │ │ │ ├── mozapps/ │ │ │ │ ├── downloads/ │ │ │ │ │ ├── downloads.dtd │ │ │ │ │ ├── downloads.properties │ │ │ │ │ ├── settingsChange.dtd │ │ │ │ │ ├── unknownContentType.dtd │ │ │ │ │ └── unknownContentType.properties │ │ │ │ ├── extensions/ │ │ │ │ │ ├── about.dtd │ │ │ │ │ ├── blocklist.dtd │ │ │ │ │ ├── extensions.dtd │ │ │ │ │ ├── extensions.properties │ │ │ │ │ ├── newaddon.dtd │ │ │ │ │ ├── newaddon.properties │ │ │ │ │ ├── selectAddons.dtd │ │ │ │ │ ├── selectAddons.properties │ │ │ │ │ ├── update.dtd │ │ │ │ │ └── update.properties │ │ │ │ ├── handling/ │ │ │ │ │ ├── handling.dtd │ │ │ │ │ └── handling.properties │ │ │ │ ├── plugins/ │ │ │ │ │ ├── plugins.dtd │ │ │ │ │ └── plugins.properties │ │ │ │ ├── preferences/ │ │ │ │ │ ├── changemp.dtd │ │ │ │ │ ├── ocsp.dtd │ │ │ │ │ ├── preferences.properties │ │ │ │ │ └── removemp.dtd │ │ │ │ ├── profile/ │ │ │ │ │ ├── createProfileWizard.dtd │ │ │ │ │ ├── profileSelection.dtd │ │ │ │ │ └── profileSelection.properties │ │ │ │ ├── update/ │ │ │ │ │ ├── history.dtd │ │ │ │ │ ├── updates.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── xpinstall/ │ │ │ │ ├── xpinstallConfirm.dtd │ │ │ │ └── xpinstallConfirm.properties │ │ │ ├── necko/ │ │ │ │ └── necko.properties │ │ │ ├── passwordmgr/ │ │ │ │ ├── passwordManager.dtd │ │ │ │ └── passwordmgr.properties │ │ │ ├── pipnss/ │ │ │ │ ├── nsserrors.properties │ │ │ │ ├── pipnss.properties │ │ │ │ └── security.properties │ │ │ ├── pippki/ │ │ │ │ ├── certManager.dtd │ │ │ │ ├── deviceManager.dtd │ │ │ │ ├── pippki.dtd │ │ │ │ ├── pippki.properties │ │ │ │ └── validation.dtd │ │ │ ├── places/ │ │ │ │ └── places.properties │ │ │ ├── pluginproblem/ │ │ │ │ └── pluginproblem.dtd │ │ │ └── services/ │ │ │ ├── errors.properties │ │ │ └── sync.properties │ │ └── zh-TW.manifest │ ├── chrome.manifest │ └── install.rdf ├── locales/ │ ├── Makefile.in │ ├── cs/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── de/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── en-US/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── es-ES/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── fi/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── fr/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── gl/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── he/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── hu/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── it/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── ja/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── ko/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── moz.build │ ├── nl/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── pl/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── pt-PT/ │ │ ├── aria.mn │ │ ├── base/ │ │ │ └── locale/ │ │ │ ├── bluegriffon/ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ ├── aria.dtd │ │ │ │ ├── bluegriffon.dtd │ │ │ │ ├── bluegriffon.properties │ │ │ │ ├── colourPicker.dtd │ │ │ │ ├── convertToTable.dtd │ │ │ │ ├── credits.dtd │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ ├── dictionary.dtd │ │ │ │ ├── editStylesheet.dtd │ │ │ │ ├── filePicking.dtd │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ ├── html5.properties │ │ │ │ ├── insertAnchor.dtd │ │ │ │ ├── insertAudio.dtd │ │ │ │ ├── insertButton.dtd │ │ │ │ ├── insertChars.dtd │ │ │ │ ├── insertDatalist.dtd │ │ │ │ ├── insertFieldset.dtd │ │ │ │ ├── insertForm.dtd │ │ │ │ ├── insertFormInput.dtd │ │ │ │ ├── insertHR.dtd │ │ │ │ ├── insertHTML.dtd │ │ │ │ ├── insertImage.dtd │ │ │ │ ├── insertKeygen.dtd │ │ │ │ ├── insertLabel.dtd │ │ │ │ ├── insertLink.dtd │ │ │ │ ├── insertLink.properties │ │ │ │ ├── insertMeter.dtd │ │ │ │ ├── insertOutput.dtd │ │ │ │ ├── insertProgress.dtd │ │ │ │ ├── insertSelect.dtd │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ ├── insertTable.dtd │ │ │ │ ├── insertTable.properties │ │ │ │ ├── insertTextarea.dtd │ │ │ │ ├── insertVideo.dtd │ │ │ │ ├── insertVideo.properties │ │ │ │ ├── language.properties │ │ │ │ ├── languages.dtd │ │ │ │ ├── markupCleaner.dtd │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ ├── media.dtd │ │ │ │ ├── media.properties │ │ │ │ ├── newDocument.dtd │ │ │ │ ├── newPageWizard.dtd │ │ │ │ ├── newPageWizard.properties │ │ │ │ ├── openLocation.dtd │ │ │ │ ├── openLocation.properties │ │ │ │ ├── pageProperties.dtd │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ ├── parsingError.dtd │ │ │ │ ├── prefs/ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ ├── connection.dtd │ │ │ │ │ ├── general.dtd │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ ├── styles.dtd │ │ │ │ │ └── update.dtd │ │ │ │ ├── prefs.dtd │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ ├── rotator.dtd │ │ │ │ ├── spellCheck.dtd │ │ │ │ ├── spellCheck.properties │ │ │ │ ├── structurebar.dtd │ │ │ │ ├── tabeditor.dtd │ │ │ │ └── updateAvailable.dtd │ │ │ └── branding/ │ │ │ ├── brand.dtd │ │ │ └── brand.properties │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ └── sidebars/ │ │ │ └── aria/ │ │ │ ├── aria.dtd │ │ │ ├── aria.properties │ │ │ └── ariaOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── extensions/ │ │ │ ├── fs/ │ │ │ │ ├── addFont.dtd │ │ │ │ ├── fs.dtd │ │ │ │ ├── fs.properties │ │ │ │ └── fsOverlay.dtd │ │ │ ├── gfd/ │ │ │ │ ├── addFont.dtd │ │ │ │ ├── gfd.dtd │ │ │ │ └── gfdOverlay.dtd │ │ │ ├── op1/ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ ├── op1.dtd │ │ │ │ └── op1Overlay.dtd │ │ │ └── tipoftheday/ │ │ │ ├── tipoftheday.dtd │ │ │ ├── tipoftheday.rdf │ │ │ └── tipofthedayOverlay.dtd │ │ ├── fs.mn │ │ ├── gfd.mn │ │ └── sidebars/ │ │ ├── cssproperties/ │ │ │ ├── backgrounditem.dtd │ │ │ ├── backgrounditem.properties │ │ │ ├── colorstopitem.dtd │ │ │ ├── cssproperties.dtd │ │ │ ├── cssproperties.properties │ │ │ ├── csspropertiesOverlay.dtd │ │ │ ├── griditemposition.dtd │ │ │ ├── textshadowitem.dtd │ │ │ ├── transformationitem.dtd │ │ │ └── transitionitem.dtd │ │ ├── domexplorer/ │ │ │ ├── domexplorer.dtd │ │ │ └── domexplorerOverlay.dtd │ │ └── stylesheets/ │ │ ├── stylesheets.dtd │ │ └── stylesheetsOverlay.dtd │ ├── ru/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── sl/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── sr/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── foo │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── sv-SE/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ ├── zh-CN/ │ │ ├── aria.mn │ │ ├── base.mn │ │ ├── bluegriffon/ │ │ │ ├── base/ │ │ │ │ └── locale/ │ │ │ │ ├── bluegriffon/ │ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ │ ├── aria.dtd │ │ │ │ │ ├── bluegriffon.dtd │ │ │ │ │ ├── bluegriffon.properties │ │ │ │ │ ├── colourPicker.dtd │ │ │ │ │ ├── convertToTable.dtd │ │ │ │ │ ├── credits.dtd │ │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ │ ├── dictionary.dtd │ │ │ │ │ ├── editStylesheet.dtd │ │ │ │ │ ├── filePicking.dtd │ │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ │ ├── findbar.dtd │ │ │ │ │ ├── html5.properties │ │ │ │ │ ├── insertAnchor.dtd │ │ │ │ │ ├── insertAudio.dtd │ │ │ │ │ ├── insertButton.dtd │ │ │ │ │ ├── insertChars.dtd │ │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ │ ├── insertDatalist.dtd │ │ │ │ │ ├── insertFieldset.dtd │ │ │ │ │ ├── insertForm.dtd │ │ │ │ │ ├── insertFormInput.dtd │ │ │ │ │ ├── insertHR.dtd │ │ │ │ │ ├── insertHTML.dtd │ │ │ │ │ ├── insertImage.dtd │ │ │ │ │ ├── insertKeygen.dtd │ │ │ │ │ ├── insertLabel.dtd │ │ │ │ │ ├── insertLink.dtd │ │ │ │ │ ├── insertLink.properties │ │ │ │ │ ├── insertMeter.dtd │ │ │ │ │ ├── insertOutput.dtd │ │ │ │ │ ├── insertProgress.dtd │ │ │ │ │ ├── insertSelect.dtd │ │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ │ ├── insertTOC.dtd │ │ │ │ │ ├── insertTable.dtd │ │ │ │ │ ├── insertTable.properties │ │ │ │ │ ├── insertTextarea.dtd │ │ │ │ │ ├── insertVideo.dtd │ │ │ │ │ ├── insertVideo.properties │ │ │ │ │ ├── language.properties │ │ │ │ │ ├── languages.dtd │ │ │ │ │ ├── listProperties.dtd │ │ │ │ │ ├── markupCleaner.dtd │ │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ │ ├── media.dtd │ │ │ │ │ ├── media.properties │ │ │ │ │ ├── newDocument.dtd │ │ │ │ │ ├── newPageWizard.dtd │ │ │ │ │ ├── newPageWizard.properties │ │ │ │ │ ├── openLocation.dtd │ │ │ │ │ ├── openLocation.properties │ │ │ │ │ ├── pageProperties.dtd │ │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ │ ├── panels.dtd │ │ │ │ │ ├── parsingError.dtd │ │ │ │ │ ├── polyglot.dtd │ │ │ │ │ ├── prefs/ │ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ │ ├── connection.dtd │ │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ │ ├── file.dtd │ │ │ │ │ │ ├── general.dtd │ │ │ │ │ │ ├── license.dtd │ │ │ │ │ │ ├── license.properties │ │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ │ ├── osx.dtd │ │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ │ ├── source.dtd │ │ │ │ │ │ ├── styles.dtd │ │ │ │ │ │ ├── update.dtd │ │ │ │ │ │ └── update.properties │ │ │ │ │ ├── prefs.dtd │ │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ │ ├── rotator.dtd │ │ │ │ │ ├── spellCheck.dtd │ │ │ │ │ ├── spellCheck.properties │ │ │ │ │ ├── structurebar.dtd │ │ │ │ │ ├── svg-edit.properties │ │ │ │ │ ├── tabeditor.dtd │ │ │ │ │ ├── updateAvailable.dtd │ │ │ │ │ └── updates.properties │ │ │ │ └── branding/ │ │ │ │ ├── brand.dtd │ │ │ │ └── brand.properties │ │ │ ├── extensions/ │ │ │ │ ├── fs/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── fs.dtd │ │ │ │ │ ├── fs.properties │ │ │ │ │ └── fsOverlay.dtd │ │ │ │ ├── gfd/ │ │ │ │ │ ├── addFont.dtd │ │ │ │ │ ├── gfd.dtd │ │ │ │ │ └── gfdOverlay.dtd │ │ │ │ ├── markdown/ │ │ │ │ │ ├── markdown.dtd │ │ │ │ │ └── markdownOverlay.dtd │ │ │ │ ├── op1/ │ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ │ ├── op1.dtd │ │ │ │ │ └── op1Overlay.dtd │ │ │ │ └── tipoftheday/ │ │ │ │ ├── tipoftheday.dtd │ │ │ │ ├── tipoftheday.rdf │ │ │ │ └── tipofthedayOverlay.dtd │ │ │ └── sidebars/ │ │ │ ├── aria/ │ │ │ │ ├── aria.dtd │ │ │ │ ├── aria.properties │ │ │ │ └── ariaOverlay.dtd │ │ │ ├── cssproperties/ │ │ │ │ ├── backgrounditem.dtd │ │ │ │ ├── backgrounditem.properties │ │ │ │ ├── colorstopitem.dtd │ │ │ │ ├── cssproperties.dtd │ │ │ │ ├── cssproperties.properties │ │ │ │ ├── csspropertiesOverlay.dtd │ │ │ │ ├── editGridTemplate.dtd │ │ │ │ ├── fontFeatures.properties │ │ │ │ ├── griditemposition.dtd │ │ │ │ ├── textshadowitem.dtd │ │ │ │ ├── transformationitem.dtd │ │ │ │ └── transitionitem.dtd │ │ │ ├── domexplorer/ │ │ │ │ ├── domexplorer.dtd │ │ │ │ └── domexplorerOverlay.dtd │ │ │ ├── its20/ │ │ │ │ ├── its20.dtd │ │ │ │ ├── its20.properties │ │ │ │ ├── its20Overlay.dtd │ │ │ │ ├── locNoteRule.dtd │ │ │ │ ├── selector.dtd │ │ │ │ ├── termRule.dtd │ │ │ │ └── translateRule.dtd │ │ │ ├── scripteditor/ │ │ │ │ ├── editor.dtd │ │ │ │ ├── scripteditor.dtd │ │ │ │ ├── scripteditor.properties │ │ │ │ └── scripteditorOverlay.dtd │ │ │ └── stylesheets/ │ │ │ ├── editor.dtd │ │ │ ├── stylesheets.dtd │ │ │ └── stylesheetsOverlay.dtd │ │ ├── cssproperties.mn │ │ ├── domexplorer.mn │ │ ├── fs.mn │ │ ├── gfd.mn │ │ ├── its20.mn │ │ ├── markdown.mn │ │ ├── op1.mn │ │ ├── scripteditor.mn │ │ ├── stylesheets.mn │ │ └── tipoftheday.mn │ └── zh-TW/ │ ├── aria.mn │ ├── base.mn │ ├── bluegriffon/ │ │ ├── base/ │ │ │ └── locale/ │ │ │ ├── bluegriffon/ │ │ │ │ ├── aboutDialog.dtd │ │ │ │ ├── aria.dtd │ │ │ │ ├── bluegriffon.dtd │ │ │ │ ├── bluegriffon.properties │ │ │ │ ├── colourPicker.dtd │ │ │ │ ├── convertToTable.dtd │ │ │ │ ├── credits.dtd │ │ │ │ ├── cssClassPicker.dtd │ │ │ │ ├── dictionary.dtd │ │ │ │ ├── editStylesheet.dtd │ │ │ │ ├── filePicking.dtd │ │ │ │ ├── filepickerbutton.dtd │ │ │ │ ├── findbar.dtd │ │ │ │ ├── html5.properties │ │ │ │ ├── insertAnchor.dtd │ │ │ │ ├── insertAudio.dtd │ │ │ │ ├── insertButton.dtd │ │ │ │ ├── insertChars.dtd │ │ │ │ ├── insertCommentOrPI.dtd │ │ │ │ ├── insertDatalist.dtd │ │ │ │ ├── insertFieldset.dtd │ │ │ │ ├── insertForm.dtd │ │ │ │ ├── insertFormInput.dtd │ │ │ │ ├── insertHR.dtd │ │ │ │ ├── insertHTML.dtd │ │ │ │ ├── insertImage.dtd │ │ │ │ ├── insertKeygen.dtd │ │ │ │ ├── insertLabel.dtd │ │ │ │ ├── insertLink.dtd │ │ │ │ ├── insertLink.properties │ │ │ │ ├── insertMeter.dtd │ │ │ │ ├── insertOutput.dtd │ │ │ │ ├── insertProgress.dtd │ │ │ │ ├── insertSelect.dtd │ │ │ │ ├── insertStylesheet.dtd │ │ │ │ ├── insertTOC.dtd │ │ │ │ ├── insertTable.dtd │ │ │ │ ├── insertTable.properties │ │ │ │ ├── insertTextarea.dtd │ │ │ │ ├── insertVideo.dtd │ │ │ │ ├── insertVideo.properties │ │ │ │ ├── language.properties │ │ │ │ ├── languages.dtd │ │ │ │ ├── listProperties.dtd │ │ │ │ ├── markupCleaner.dtd │ │ │ │ ├── masterPasswordQuery.properties │ │ │ │ ├── media.dtd │ │ │ │ ├── media.properties │ │ │ │ ├── newDocument.dtd │ │ │ │ ├── newPageWizard.dtd │ │ │ │ ├── newPageWizard.properties │ │ │ │ ├── openLocation.dtd │ │ │ │ ├── openLocation.properties │ │ │ │ ├── pageProperties.dtd │ │ │ │ ├── pagePropertiesPreview.html │ │ │ │ ├── panels.dtd │ │ │ │ ├── parsingError.dtd │ │ │ │ ├── polyglot.dtd │ │ │ │ ├── prefs/ │ │ │ │ │ ├── advanced.dtd │ │ │ │ │ ├── connection.dtd │ │ │ │ │ ├── deactivateLicense.dtd │ │ │ │ │ ├── file.dtd │ │ │ │ │ ├── general.dtd │ │ │ │ │ ├── license.dtd │ │ │ │ │ ├── license.properties │ │ │ │ │ ├── newPage.dtd │ │ │ │ │ ├── osx.dtd │ │ │ │ │ ├── shortcuts.dtd │ │ │ │ │ ├── shortcuts.properties │ │ │ │ │ ├── source.dtd │ │ │ │ │ ├── styles.dtd │ │ │ │ │ ├── update.dtd │ │ │ │ │ └── update.properties │ │ │ │ ├── prefs.dtd │ │ │ │ ├── propertiesDeck.dtd │ │ │ │ ├── rotator.dtd │ │ │ │ ├── spellCheck.dtd │ │ │ │ ├── spellCheck.properties │ │ │ │ ├── structurebar.dtd │ │ │ │ ├── svg-edit.properties │ │ │ │ ├── tabeditor.dtd │ │ │ │ ├── updateAvailable.dtd │ │ │ │ └── updates.properties │ │ │ └── branding/ │ │ │ ├── brand.dtd │ │ │ └── brand.properties │ │ ├── extensions/ │ │ │ ├── fs/ │ │ │ │ ├── addFont.dtd │ │ │ │ ├── fs.dtd │ │ │ │ ├── fs.properties │ │ │ │ └── fsOverlay.dtd │ │ │ ├── gfd/ │ │ │ │ ├── addFont.dtd │ │ │ │ ├── gfd.dtd │ │ │ │ └── gfdOverlay.dtd │ │ │ ├── markdown/ │ │ │ │ ├── markdown.dtd │ │ │ │ └── markdownOverlay.dtd │ │ │ ├── op1/ │ │ │ │ ├── a11yFirstStep.properties │ │ │ │ ├── op1.dtd │ │ │ │ └── op1Overlay.dtd │ │ │ └── tipoftheday/ │ │ │ ├── tipoftheday.dtd │ │ │ ├── tipoftheday.rdf │ │ │ └── tipofthedayOverlay.dtd │ │ └── sidebars/ │ │ ├── aria/ │ │ │ ├── aria.dtd │ │ │ ├── aria.properties │ │ │ └── ariaOverlay.dtd │ │ ├── cssproperties/ │ │ │ ├── backgrounditem.dtd │ │ │ ├── backgrounditem.properties │ │ │ ├── colorstopitem.dtd │ │ │ ├── cssproperties.dtd │ │ │ ├── cssproperties.properties │ │ │ ├── csspropertiesOverlay.dtd │ │ │ ├── editGridTemplate.dtd │ │ │ ├── fontFeatures.properties │ │ │ ├── griditemposition.dtd │ │ │ ├── textshadowitem.dtd │ │ │ ├── transformationitem.dtd │ │ │ └── transitionitem.dtd │ │ ├── domexplorer/ │ │ │ ├── domexplorer.dtd │ │ │ └── domexplorerOverlay.dtd │ │ ├── its20/ │ │ │ ├── its20.dtd │ │ │ ├── its20.properties │ │ │ ├── its20Overlay.dtd │ │ │ ├── locNoteRule.dtd │ │ │ ├── selector.dtd │ │ │ ├── termRule.dtd │ │ │ └── translateRule.dtd │ │ ├── scripteditor/ │ │ │ ├── editor.dtd │ │ │ ├── scripteditor.dtd │ │ │ ├── scripteditor.properties │ │ │ └── scripteditorOverlay.dtd │ │ └── stylesheets/ │ │ ├── editor.dtd │ │ ├── stylesheets.dtd │ │ └── stylesheetsOverlay.dtd │ ├── cssproperties.mn │ ├── domexplorer.mn │ ├── fs.mn │ ├── gfd.mn │ ├── its20.mn │ ├── markdown.mn │ ├── op1.mn │ ├── scripteditor.mn │ ├── stylesheets.mn │ └── tipoftheday.mn ├── makefiles.sh ├── modules/ │ ├── Makefile.in │ ├── bgQuit.jsm │ ├── colourPickerHelper.jsm │ ├── cssHelper.jsm │ ├── cssInspector.jsm │ ├── cssProperties.jsm │ ├── editorHelper.jsm │ ├── fileChanges.jsm │ ├── fileHelper.jsm │ ├── filePicker.jsm │ ├── fireFtp.jsm │ ├── handlersManager.jsm │ ├── l10nHelper.jsm │ ├── moz.build │ ├── printHelper.jsm │ ├── projectManager.jsm │ ├── prompterHelper.jsm │ ├── screens.jsm │ ├── unicodeHelper.jsm │ └── urlHelper.jsm ├── moz.build ├── moz.configure ├── sidebars/ │ ├── Makefile.in │ ├── aria/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── aria-properties.js │ │ │ ├── aria-roles.js │ │ │ ├── aria.js │ │ │ ├── aria.xml │ │ │ ├── aria.xul │ │ │ ├── ariaOverlay.xul │ │ │ └── foo.js │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ └── aria.css │ ├── cssproperties/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── all.js │ │ │ ├── all.xul │ │ │ ├── backgrounditem.xml │ │ │ ├── bezier.js │ │ │ ├── borders.js │ │ │ ├── borders.xul │ │ │ ├── boxshadowitem.xml │ │ │ ├── colors.js │ │ │ ├── colors.xul │ │ │ ├── colorstopitem.xml │ │ │ ├── columns.js │ │ │ ├── columns.xul │ │ │ ├── common.js │ │ │ ├── cssproperties.js │ │ │ ├── cssproperties.xul │ │ │ ├── csspropertiesOverlay.xul │ │ │ ├── cssproperty.xml │ │ │ ├── editGridTemplateEntry.js │ │ │ ├── editGridTemplateEntry.xul │ │ │ ├── flexbox.js │ │ │ ├── flexbox.xul │ │ │ ├── fonts.js │ │ │ ├── fonts.xul │ │ │ ├── general.js │ │ │ ├── general.xul │ │ │ ├── geometry.js │ │ │ ├── geometry.xul │ │ │ ├── griditemposition.xml │ │ │ ├── griditems.js │ │ │ ├── griditems.xul │ │ │ ├── grids.js │ │ │ ├── grids.xul │ │ │ ├── images.js │ │ │ ├── images.xul │ │ │ ├── lists.js │ │ │ ├── lists.xul │ │ │ ├── misc.js │ │ │ ├── misc.xul │ │ │ ├── popups.xul │ │ │ ├── position.js │ │ │ ├── position.xul │ │ │ ├── shadows.js │ │ │ ├── shadows.xul │ │ │ ├── styles/ │ │ │ │ ├── cssproperties.css │ │ │ │ ├── flexbox.inc │ │ │ │ ├── float.inc │ │ │ │ ├── font-style.inc │ │ │ │ ├── font-weight.inc │ │ │ │ ├── text-align.inc │ │ │ │ ├── text-decoration.inc │ │ │ │ └── writing-mode.inc │ │ │ ├── tables.js │ │ │ ├── tables.xul │ │ │ ├── textshadowitem.xml │ │ │ ├── transformationitem.xml │ │ │ ├── transforms.js │ │ │ ├── transforms.xul │ │ │ ├── transitionitem.xml │ │ │ ├── transitions.js │ │ │ ├── transitions.xul │ │ │ ├── variables.js │ │ │ └── variables.xul │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ ├── backgrounditem.css │ │ ├── borders.css │ │ ├── colors.css │ │ ├── colorstopitem.css │ │ ├── columns.css │ │ ├── cssproperties.css │ │ ├── flexbox.css │ │ ├── general.css │ │ ├── geometry.css │ │ ├── griditems.css │ │ ├── grids.css │ │ ├── position.css │ │ ├── shadows.css │ │ ├── transformationitem.css │ │ ├── transforms.css │ │ ├── transitionitem.css │ │ └── transitions.css │ ├── domexplorer/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── context.js │ │ │ ├── domexplorer.js │ │ │ ├── domexplorer.xul │ │ │ ├── domexplorerOverlay.js │ │ │ └── domexplorerOverlay.xul │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ └── domexplorer.css │ ├── its20/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── common.js │ │ │ ├── global.js │ │ │ ├── global.xul │ │ │ ├── implemented.js │ │ │ ├── its20.js │ │ │ ├── its20.xul │ │ │ ├── its20Overlay.js │ │ │ ├── its20Overlay.xul │ │ │ ├── localAttrs/ │ │ │ │ ├── annotatorsRef.js │ │ │ │ ├── annotatorsRef.xul │ │ │ │ ├── locNote.js │ │ │ │ ├── locNote.xul │ │ │ │ ├── popups1.xul │ │ │ │ ├── term.js │ │ │ │ ├── term.xul │ │ │ │ ├── translate.js │ │ │ │ └── translate.xul │ │ │ └── ruleDialogs/ │ │ │ ├── common.js │ │ │ ├── locNoteRule.js │ │ │ ├── locNoteRule.xul │ │ │ ├── selector.js │ │ │ ├── selector.xul │ │ │ ├── termRule.js │ │ │ ├── termRule.xul │ │ │ ├── translateRule.js │ │ │ └── translateRule.xul │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── locale/ │ │ │ └── dummy │ │ ├── moz.build │ │ └── skin/ │ │ └── its20.css │ ├── moz.build │ ├── scripteditor/ │ │ ├── Makefile.in │ │ ├── content/ │ │ │ ├── editor.js │ │ │ ├── editor.xul │ │ │ ├── scripteditor.js │ │ │ ├── scripteditor.xul │ │ │ ├── scripteditorOverlay.js │ │ │ └── scripteditorOverlay.xul │ │ ├── jar.mn │ │ ├── jar.mn.in │ │ ├── moz.build │ │ └── skin/ │ │ ├── editor.css │ │ └── scripteditor.css │ └── stylesheets/ │ ├── Makefile.in │ ├── content/ │ │ ├── editor.js │ │ ├── editor.xul │ │ ├── stylesheets.js │ │ ├── stylesheets.xul │ │ ├── stylesheetsOverlay.js │ │ └── stylesheetsOverlay.xul │ ├── jar.mn │ ├── jar.mn.in │ ├── moz.build │ └── skin/ │ ├── editor.css │ └── stylesheets.css ├── src/ │ ├── Makefile.in │ ├── diOSIntegration.mac/ │ │ ├── Makefile.in │ │ ├── diIOSIntegration.idl │ │ ├── diOSIntegration.h │ │ ├── diOSIntegration.mm │ │ ├── diOSIntegrationCIID.h │ │ ├── diOSIntegrationFactory.cpp │ │ ├── dibadge.manifest │ │ └── moz.build │ ├── dibgutils/ │ │ ├── Makefile.in │ │ ├── diIAttrChangedTxn.idl │ │ ├── diIAttrNameChangedTxn.idl │ │ ├── diIChangeFileStylesheetTxn.idl │ │ ├── diIInnerHtmlChangedTxn.idl │ │ ├── diINodeInsertionTxn.idl │ │ ├── diIRemoveAttributeNSTxn.idl │ │ ├── diISetAttributeNSTxn.idl │ │ ├── diIStyleAttrChangeTxn.idl │ │ ├── diITextNodeChangedTxn.idl │ │ └── moz.build │ └── moz.build └── themes/ ├── Makefile.in ├── mac/ │ ├── Makefile.in │ ├── classic/ │ │ ├── aboutDialog.css │ │ ├── black.css │ │ ├── bluegriffon.css │ │ ├── bluegriffonDialogs.css │ │ ├── colourPicker.css │ │ ├── ebm/ │ │ │ ├── ebm.css │ │ │ ├── filepicker.css │ │ │ ├── metadata2.css │ │ │ └── metadata3.css │ │ ├── ecolorpicker.css │ │ ├── extensionsOverlay.css │ │ ├── formatToolbar.css │ │ ├── inContext.css │ │ ├── insertAudio.css │ │ ├── insertChars.css │ │ ├── insertImage.css │ │ ├── insertTable.css │ │ ├── insertVideo.css │ │ ├── languages.css │ │ ├── listboxBg.css │ │ ├── mainToolbar.css │ │ ├── medium.css │ │ ├── newPageWizard.css │ │ ├── pageProperties.css │ │ ├── panels/ │ │ │ ├── deckedPanelsTabs.css │ │ │ └── floatingpanel.css │ │ ├── prefs/ │ │ │ └── prefs.css │ │ ├── rotator.css │ │ ├── rulers.css │ │ ├── scrollbars.css │ │ ├── structurebar.css │ │ └── tabeditor.css │ ├── jar.mn │ └── moz.build ├── moz.build ├── win/ │ ├── Makefile.in │ ├── classic/ │ │ ├── aboutDialog.css │ │ ├── black/ │ │ │ └── menulist.css │ │ ├── black.css │ │ ├── bluegriffon-aero.css │ │ ├── bluegriffon.css │ │ ├── bluegriffonDialogs.css │ │ ├── colourPicker.css │ │ ├── ebm/ │ │ │ ├── ebm.css │ │ │ ├── filepicker.css │ │ │ ├── metadata2.css │ │ │ └── metadata3.css │ │ ├── ecolorpicker.css │ │ ├── extensionsOverlay.css │ │ ├── formatToolbar.css │ │ ├── inContext.css │ │ ├── insertAudio.css │ │ ├── insertChars.css │ │ ├── insertImage.css │ │ ├── insertTable.css │ │ ├── insertVideo.css │ │ ├── languages.css │ │ ├── listboxBg.css │ │ ├── mainToolbar.css │ │ ├── medium.css │ │ ├── newPageWizard.css │ │ ├── pageProperties.css │ │ ├── panels/ │ │ │ ├── deckedPanelsTabs.css │ │ │ └── floatingpanel.css │ │ ├── prefs/ │ │ │ └── prefs.css │ │ ├── rotator.css │ │ ├── rulers.css │ │ ├── scrollbars.css │ │ ├── structurebar.css │ │ ├── tabeditor.css │ │ └── titlebar.css │ ├── jar.mn │ └── moz.build └── win.old/ ├── Makefile.in ├── classic/ │ ├── aboutDialog.css │ ├── bluegriffon.css │ ├── bluegriffonDialogs.css │ ├── colourPicker.css │ ├── ecolorpicker.css │ ├── formatToolbar.css │ ├── inContext.css │ ├── insertAudio.css │ ├── insertChars.css │ ├── insertImage.css │ ├── insertTable.css │ ├── insertVideo.css │ ├── languages.css │ ├── listboxBg.css │ ├── mainToolbar.css │ ├── medium.css │ ├── newPageWizard.css │ ├── pageProperties.css │ ├── panels/ │ │ ├── deckedPanelsTabs.css │ │ └── floatingpanel.css │ ├── prefs/ │ │ └── prefs.css │ ├── rotator.css │ ├── rulers.css │ ├── structurebar.css │ └── tabeditor.css ├── jar.mn └── moz.build