[Pkg-mozext-commits] [firebug] 07/28: the side effected bug- Opening editor but empty when attribute name is clicked- is fixed

David Prévot taffit at moszumanska.debian.org
Mon Mar 31 22:46:24 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag firebug-1.10.3
in repository firebug.

commit f109552818672e5a017ecf22a6bf02a2f7c54565
Author: Farshid Beheshti <Farshid.Beheshti at gmail.com>
Date:   Thu Aug 9 23:06:07 2012 +0200

    the side effected bug- Opening editor but empty when attribute name is clicked- is fixed
---
 extension/content/firebug/html/htmlPanel.js        |   11 +-
 extension/locale/en-US/firebug-amo.properties      |   14 +-
 extension/locale/en-US/firebug-tracing.properties  |  198 +-
 extension/locale/en-US/firebug.properties          | 3328 ++++++++++----------
 extension/skin/classic/migrationArrow.svg          |   26 +-
 tests/content/commandLine/5130/issue5130.html      |   58 +-
 tests/content/commandLine/5130/issue5130.js        |   44 +-
 tests/content/console/2271/issue2271.html          |   92 +-
 tests/content/console/3042/issue3042.html          |   68 +-
 tests/content/console/3042/issue3042.js            |   76 +-
 tests/content/cookies/general/cookiesPanel.html    |   62 +-
 tests/content/css/2967/issue2967.js                |   28 +-
 tests/content/css/2967/issue2967.xml               |  106 +-
 tests/content/css/3303/issue3303.html              |  108 +-
 tests/content/css/3303/issue3303.js                |  142 +-
 tests/content/css/5438/issue5438.html              |  100 +-
 tests/content/css/5438/issue5438.js                |   88 +-
 tests/content/css/5461/issue5461.html              |   82 +-
 tests/content/css/5461/issue5461.js                |   84 +-
 tests/content/css/computed/5451/issue5451.html     |   66 +-
 tests/content/css/computed/5451/issue5451.js       |   40 +-
 .../dom/5247/external/externalStylesheet.css       |    4 +-
 tests/content/dom/5247/issue5247.html              |  172 +-
 tests/content/dom/5247/issue5247.js                |  150 +-
 tests/content/firebug/5349/issue5349.html          |   66 +-
 tests/content/firebug/5349/issue5349.js            |   26 +-
 tests/content/html/3296/issue3296.html             |   80 +-
 tests/content/html/3296/issue3296.js               |   58 +-
 tests/content/net/4805/issue4805.html              |   60 +-
 tests/content/net/4805/issue4805.js                |   80 +-
 tests/content/script/4724/issue4724.html           |   66 +-
 tests/content/script/4724/issue4724.js             |  118 +-
 tests/templates/default/issueXXXX.html             |  136 +-
 tests/templates/default/issueXXXX.js               |   50 +-
 tests/templates/default/issueXXXXSeveralCases.html |  170 +-
 tests/templates/default/issueXXXXSeveralCases.js   |   96 +-
 tests/templates/default/testcase.css               |  284 +-
 tests/templates/firebugLite/issueXXXX.html         |  122 +-
 tests/templates/firebugLite/testcase.css           |  360 +--
 tests/templates/net/issueXXXX.html                 |  168 +-
 tests/templates/net/issueXXXX.js                   |   60 +-
 tests/templates/net/issueXXXX.php                  |    6 +-
 42 files changed, 3578 insertions(+), 3575 deletions(-)

diff --git a/extension/content/firebug/html/htmlPanel.js b/extension/content/firebug/html/htmlPanel.js
index 3f2ef6b..75b3078 100644
--- a/extension/content/firebug/html/htmlPanel.js
+++ b/extension/content/firebug/html/htmlPanel.js
@@ -2268,14 +2268,17 @@ AttributeEditor.prototype = domplate(Firebug.InlineEditor.prototype,
     {
         if (value == "")
             return value;
-
         var element = Firebug.getRepObject(target);
         if (element && element instanceof window.Element)
         {
-            var attributeName = Dom.getPreviousByClass(target, "nodeName").textContent;
-            return element.getAttribute(attributeName);
+            // If object that was clicked to edit was
+            // attribute value, not attribute name.
+            if (Css.hasClass(target, "nodeValue"))
+            {
+                var attributeName = Dom.getPreviousByClass(target, "nodeName").textContent;
+                return element.getAttribute(attributeName);
+            }
         }
-
         return value;
     }
 });
diff --git a/extension/locale/en-US/firebug-amo.properties b/extension/locale/en-US/firebug-amo.properties
index 8e325c2..269024c 100644
--- a/extension/locale/en-US/firebug-amo.properties
+++ b/extension/locale/en-US/firebug-amo.properties
@@ -1,7 +1,7 @@
-# LOCALIZATION NOTE (firebug.amo.summary, firebug.amo.description, firebug.amo.developer.comments):
-# These texts are used on Mozilla Add-on site: https://addons.mozilla.org/en-US/firefox/addon/1843
-# They are not direct part of Firebug extension and so, you can't see them in Firebug's UI.
-# Note that firebug.amo.summary must not exceed 250 characters (limitation by AMO site)
-firebug.amo.summary1.6=Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page...\n\nFirebug 1.6 requires Firefox 3.6 or higher.
-firebug.amo.description=Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.\n\nVisit the Firebug website for documentation, screen shots, and discussion forums: http://getfirebug.com
-firebug.amo.developer.comments=If you have any problems, please read the FireBug FAQ.\n\nhttp://getfirebug.com/faq.html
+# LOCALIZATION NOTE (firebug.amo.summary, firebug.amo.description, firebug.amo.developer.comments):
+# These texts are used on Mozilla Add-on site: https://addons.mozilla.org/en-US/firefox/addon/1843
+# They are not direct part of Firebug extension and so, you can't see them in Firebug's UI.
+# Note that firebug.amo.summary must not exceed 250 characters (limitation by AMO site)
+firebug.amo.summary1.6=Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page...\n\nFirebug 1.6 requires Firefox 3.6 or higher.
+firebug.amo.description=Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.\n\nVisit the Firebug website for documentation, screen shots, and discussion forums: http://getfirebug.com
+firebug.amo.developer.comments=If you have any problems, please read the FireBug FAQ.\n\nhttp://getfirebug.com/faq.html
diff --git a/extension/locale/en-US/firebug-tracing.properties b/extension/locale/en-US/firebug-tracing.properties
index b289184..b34d987 100644
--- a/extension/locale/en-US/firebug-tracing.properties
+++ b/extension/locale/en-US/firebug-tracing.properties
@@ -1,100 +1,100 @@
-# LOCALIZATION NOTE (Open_Firebug_Tracing, Always_Open_Firebug_Tracing):
-# Firebug tracing console menu items (located in Firebug's menu).
-Open_Firebug_Tracing=Open Firebug Tracing
-Always_Open_Firebug_Tracing=Always Open Firebug Tracing
-
-# LOCALIZATION NOTE (title.Tracing): Title for Firebug tracing console window (verb).
-title.Tracing=Tracing
-
-tracing.Show_Scope_Variables=Show Scope Variables
-tracing.Show_Time=Show Time
-tracing.tab.Stack=Stack
-tracing.tab.Exception=Exception
-tracing.tab.Properties=Properties
-tracing.tab.Scope=Scope
-tracing.tab.Response=Response
-tracing.tab.Source=Source
-tracing.tab.Interfaces=Interfaces
-tracing.tab.Object=Object
-tracing.tab.Event=Event
-tracing.cmd.Clear=Clear
-tracing.cmd.tip.Clear=Remove All Messages
-tracing.cmd.Find=Find
-tracing.cmd.tip.Find=Find Text
-tracing.cmd.Bookmark=Bookmark
-tracing.cmd.tip.Bookmark=Insert Bookmark
-tracing.cmd.Restart=Restart Firefox
-tracing.cmd.tip.Restart=Restart Firefox
-tracing.cmd.Exit=Exit Firefox
-tracing.cmd.tip.Exit=Exit Firefox
-tracing.cmd.Save=Save to File
-tracing.cmd.tip.Save=Save logs into a file
-tracing.cmd.Load=Load from File
-tracing.cmd.tip.Load=Load logs from a file
-tracing.cmd.Expand_All=Expand All
-tracing.cmd.Collapse_All=Collapse All
-tracing.cmd.Tools=Tools
-tracing.cmd.tip.Tools=Tools
-tracing.cmd.Clear_Browser_Cache=Clear Browser Cache
-tracing.cmd.tip.Clear_Browser_Cache=Clear Browser Cache
-tracing.cmd.Force_Garbage_Collector=Force Garbage Collector
-tracing.cmd.tip.Force_Garbage_Collector=Force Garbage Collector
-tracing.cmd.Open_Profile_Directory=Open Profile Directory
-tracing.cmd.tip.Open_Profile_Directory=Open Profile Directory
-tracing.option.A11Y_Description=Accessibility issues
-tracing.option.ACTIVATION_Description=Firebug activation
-tracing.option.ACTIVITYOBSERVER_Description=Firebug activity observer
-tracing.option.ANNOTATIONS_Description=Firebug website annotation
-tracing.option.BP_Description=Breakpoints
-tracing.option.CACHE_Description=Source cache
-tracing.option.COMMANDLINE_Description=Command Line & Command Line Popup
-tracing.option.COMPILATION_UNITS_Description=Script compilation units
-tracing.option.CONSOLE_Description=Console Panel
-tracing.option.CSS_Description=CSS parsing
-
-tracing.option.DISPATCH_Description=Event dispatching
-tracing.option.DOM_Description=DOM
-tracing.option.DOMPLATE_Description=Domplate creation
-tracing.option.EDITOR_Description=Inline Editor & Autocompleter
-tracing.option.ERRORLOG_Description=Error log of JS, CSS, XML etc.
-tracing.option.ERRORS_Description=Internal Firebug errors
-tracing.option.EVAL_Description=Script evaluation
-tracing.option.FBS_BP_Description=Firebug service breakpoints
-tracing.option.FBS_CREATION_Description=Firebug service script creation
-tracing.option.FBS_ERRORS_Description=Firebug service errors
-
-tracing.option.FBS_FINDDEBUGGER_Description=Firebug service find debugger
-
-tracing.option.FBS_FUNCTION_Description=Firebug service function
-tracing.option.FBS_JSDCONTEXT_Description=Firebug service JavaScript Debugger context
-tracing.option.FBS_SRCUNITS_Description=Firebug service source units
-tracing.option.FBS_STEP_Description=Firebug service JavaScript Debugger stepping
-tracing.option.FBS_TRACKFILES_Description=Firebug service tracked files
-tracing.option.FUNCTION_NAMES_Description=JavaScript function names
-tracing.option.HISTORY_Description=Firebug Navigation History
-tracing.option.HTML_Description=HTML
-tracing.option.HTTPOBSERVER_Description=HTTP request observer
-tracing.option.INFOTIP_Description=Infotip
-tracing.option.INITIALIZE_Description=Firebug initialization
-tracing.option.INSPECT_Description=Inspector
-tracing.option.JSONVIEWER_Description=JSON viewer
-tracing.option.LINETABLE_Description=Script line table
-tracing.option.LOCALE_Description=Localization
-tracing.option.LOCATIONS_Description=Source locations
-
-tracing.option.NET_Description=Net Panel
-tracing.option.NET_EVENTS_Description=Network events
-tracing.option.OPTIONS_Description=Firebug preferences
-tracing.option.PANELS_Description=Panels
-tracing.option.SHORTCUTS_Description=Keyboard shortcuts
-tracing.option.SOURCEFILES_Description=JavaScript source files
-tracing.option.SPY_Description=XMLHttpRequests observer
-tracing.option.STACK_Description=JavaScript call stack
-tracing.option.STORAGE_Description=Settings storage
-tracing.option.SVGVIEWER_Description=SVG viewer
-tracing.option.FONTS_Description=Fonts information and font viewer
-tracing.option.TOOLTIP_Description=Start Button tooltip
-tracing.option.TOPLEVEL_Description=Top level JavaScript
-tracing.option.UI_LOOP_Description=JavaScript debugging user interface
-tracing.option.WINDOWS_Description=Firebug windows & Tab Watcher
+# LOCALIZATION NOTE (Open_Firebug_Tracing, Always_Open_Firebug_Tracing):
+# Firebug tracing console menu items (located in Firebug's menu).
+Open_Firebug_Tracing=Open Firebug Tracing
+Always_Open_Firebug_Tracing=Always Open Firebug Tracing
+
+# LOCALIZATION NOTE (title.Tracing): Title for Firebug tracing console window (verb).
+title.Tracing=Tracing
+
+tracing.Show_Scope_Variables=Show Scope Variables
+tracing.Show_Time=Show Time
+tracing.tab.Stack=Stack
+tracing.tab.Exception=Exception
+tracing.tab.Properties=Properties
+tracing.tab.Scope=Scope
+tracing.tab.Response=Response
+tracing.tab.Source=Source
+tracing.tab.Interfaces=Interfaces
+tracing.tab.Object=Object
+tracing.tab.Event=Event
+tracing.cmd.Clear=Clear
+tracing.cmd.tip.Clear=Remove All Messages
+tracing.cmd.Find=Find
+tracing.cmd.tip.Find=Find Text
+tracing.cmd.Bookmark=Bookmark
+tracing.cmd.tip.Bookmark=Insert Bookmark
+tracing.cmd.Restart=Restart Firefox
+tracing.cmd.tip.Restart=Restart Firefox
+tracing.cmd.Exit=Exit Firefox
+tracing.cmd.tip.Exit=Exit Firefox
+tracing.cmd.Save=Save to File
+tracing.cmd.tip.Save=Save logs into a file
+tracing.cmd.Load=Load from File
+tracing.cmd.tip.Load=Load logs from a file
+tracing.cmd.Expand_All=Expand All
+tracing.cmd.Collapse_All=Collapse All
+tracing.cmd.Tools=Tools
+tracing.cmd.tip.Tools=Tools
+tracing.cmd.Clear_Browser_Cache=Clear Browser Cache
+tracing.cmd.tip.Clear_Browser_Cache=Clear Browser Cache
+tracing.cmd.Force_Garbage_Collector=Force Garbage Collector
+tracing.cmd.tip.Force_Garbage_Collector=Force Garbage Collector
+tracing.cmd.Open_Profile_Directory=Open Profile Directory
+tracing.cmd.tip.Open_Profile_Directory=Open Profile Directory
+tracing.option.A11Y_Description=Accessibility issues
+tracing.option.ACTIVATION_Description=Firebug activation
+tracing.option.ACTIVITYOBSERVER_Description=Firebug activity observer
+tracing.option.ANNOTATIONS_Description=Firebug website annotation
+tracing.option.BP_Description=Breakpoints
+tracing.option.CACHE_Description=Source cache
+tracing.option.COMMANDLINE_Description=Command Line & Command Line Popup
+tracing.option.COMPILATION_UNITS_Description=Script compilation units
+tracing.option.CONSOLE_Description=Console Panel
+tracing.option.CSS_Description=CSS parsing
+
+tracing.option.DISPATCH_Description=Event dispatching
+tracing.option.DOM_Description=DOM
+tracing.option.DOMPLATE_Description=Domplate creation
+tracing.option.EDITOR_Description=Inline Editor & Autocompleter
+tracing.option.ERRORLOG_Description=Error log of JS, CSS, XML etc.
+tracing.option.ERRORS_Description=Internal Firebug errors
+tracing.option.EVAL_Description=Script evaluation
+tracing.option.FBS_BP_Description=Firebug service breakpoints
+tracing.option.FBS_CREATION_Description=Firebug service script creation
+tracing.option.FBS_ERRORS_Description=Firebug service errors
+
+tracing.option.FBS_FINDDEBUGGER_Description=Firebug service find debugger
+
+tracing.option.FBS_FUNCTION_Description=Firebug service function
+tracing.option.FBS_JSDCONTEXT_Description=Firebug service JavaScript Debugger context
+tracing.option.FBS_SRCUNITS_Description=Firebug service source units
+tracing.option.FBS_STEP_Description=Firebug service JavaScript Debugger stepping
+tracing.option.FBS_TRACKFILES_Description=Firebug service tracked files
+tracing.option.FUNCTION_NAMES_Description=JavaScript function names
+tracing.option.HISTORY_Description=Firebug Navigation History
+tracing.option.HTML_Description=HTML
+tracing.option.HTTPOBSERVER_Description=HTTP request observer
+tracing.option.INFOTIP_Description=Infotip
+tracing.option.INITIALIZE_Description=Firebug initialization
+tracing.option.INSPECT_Description=Inspector
+tracing.option.JSONVIEWER_Description=JSON viewer
+tracing.option.LINETABLE_Description=Script line table
+tracing.option.LOCALE_Description=Localization
+tracing.option.LOCATIONS_Description=Source locations
+
+tracing.option.NET_Description=Net Panel
+tracing.option.NET_EVENTS_Description=Network events
+tracing.option.OPTIONS_Description=Firebug preferences
+tracing.option.PANELS_Description=Panels
+tracing.option.SHORTCUTS_Description=Keyboard shortcuts
+tracing.option.SOURCEFILES_Description=JavaScript source files
+tracing.option.SPY_Description=XMLHttpRequests observer
+tracing.option.STACK_Description=JavaScript call stack
+tracing.option.STORAGE_Description=Settings storage
+tracing.option.SVGVIEWER_Description=SVG viewer
+tracing.option.FONTS_Description=Fonts information and font viewer
+tracing.option.TOOLTIP_Description=Start Button tooltip
+tracing.option.TOPLEVEL_Description=Top level JavaScript
+tracing.option.UI_LOOP_Description=JavaScript debugging user interface
+tracing.option.WINDOWS_Description=Firebug windows & Tab Watcher
 tracing.option.XMLVIEWER_Description=XML viewer
\ No newline at end of file
diff --git a/extension/locale/en-US/firebug.properties b/extension/locale/en-US/firebug.properties
index 3c9a22f..9622126 100644
--- a/extension/locale/en-US/firebug.properties
+++ b/extension/locale/en-US/firebug.properties
@@ -1,1664 +1,1664 @@
-Firebug=Firebug
-
-# LOCALIZATION NOTE (WindowTitle): Title of detached Firebug window.
-# %S = Title of the associated web page.
-# examples: Firebug - Google
-WindowTitle=Firebug - %S
-
-# Panel titles
-Panel-console=Console
-panel.tip.console=Allows observing console messages and executing JavaScript commands
-Panel-net=Net
-panel.tip.net=Allows analyzing the network traffic
-Panel-html=HTML
-panel.tip.html=Allows inspecting and manipulating the DOM nodes
-Panel-stylesheet=CSS
-panel.tip.stylesheet=Allows inspecting and manipulating the CSS stylesheets
-Panel-script=Script
-panel.tip.script=Allows debugging of JavaScript
-Panel-dom=DOM
-panel.tip.dom=Allows inspecting and manipulating the DOM properties
-Panel-css=Style
-panel.tip.css=Allows inspecting and manipulating the CSS rules of the selected DOM node
-Panel-computed=Computed
-panel.tip.computed=Allows inspecting the computed CSS values of the selected DOM node
-Panel-layout=Layout
-panel.tip.layout=Allows inspecting and manipulating the layout data of the selected DOM node
-Panel-domSide=DOM
-panel.tip.domSide=Allows inspecting and manipulating the DOM properties of the selected DOM node
-Panel-watches=Watch
-panel.tip.watches=Allows inspecting the JavaScript variables available in the current stack frame and defining watch expressions
-Panel-breakpoints=Breakpoints
-panel.tip.breakpoints=Allows manipulating the set breakpoints
-Panel-callstack=Stack
-panel.tip.callstack=Allows observing the current JavaScript call stack
-Panel-scopes=Scopes
-
-firebug.DetachFirebug=Open Firebug in New Window
-firebug.AttachFirebug=Attach Firebug to Browser Window
-
-# LOCALIZATION NOTE (pluralRuleFirebugs): Custom plural rule for this locale.
-# If there is no Firebug translation for the current browser locale, this value
-# will be used instead of the one in chrome://global/locale/intl.properties
-# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
-pluralRule=1
-
-# LOCALIZATION NOTE (plural.Total_Firebugs2): Semicolon list of plural forms.
-# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
-# Used in a tooltip that is displayed for the Firebug icon located within Firefox toolbar.
-# Displays the number of pages with Firebug activated.
-# %1 = number of Firebug instances activated
-# example: 2 Total Firebugs
-plural.Total_Firebugs2=%1$S Total Firebug;%1$S Total Firebugs
-
-# LOCALIZATION NOTE (startbutton.tip.deactivated):
-# Used in a tooltip that is displayed for the Firebug icon located within Firefox toolbar.
-# Displays the deactivated status of Firebug
-startbutton.tip.deactivated=Deactivated
-
-# LOCALIZATION NOTE (panel.status): Label showing the status of an activable panel
-# inside a tooltip when hovering the Start Button. Will be shown for each panel.
-# first %S = panel name
-# second %S = panel activation status
-# example: Console: On
-panel.status=%S: %S
-
-inBrowser=In Browser
-minimized=Minimized
-enablement.for_all_pages=for all pages
-enablement.on=On
-enablement.off=Off
-enablement.Panel_activation_status=Panel activation status:
-none=Closed
-Firebug_-_inactive_for_current_website=Firebug - inactive for current website
-Activate_Firebug_for_the_current_website=Activate Firebug for the current website
-Minimized=Minimized
-Minimize_Firebug=Minimize Firebug
-On_for_all_web_pages=On for All Web Pages
-firebug.menu.tip.On_for_all_Web_Sites=Activate Firebug by default for all websites
-firebug.menu.Clear_Activation_List=Clear Activation List
-firebug.menu.tip.Clear_Activation_List=Clear the list of websites Firebug is activated for
-
-firebug.menu.Detached=Detached
-firebug.menu.tip.Detached=Detach Firebug into its own window
-firebug.menu.Top=Top
-firebug.menu.tip.Top=Align Firebug to the top of the user agent window
-firebug.menu.Bottom=Bottom
-firebug.menu.tip.Bottom=Align Firebug to the bottom of the user agent window
-firebug.menu.Left=Left
-firebug.menu.tip.Left=Align Firebug to the left of the user agent window
-firebug.menu.Right=Right
-firebug.menu.tip.Right=Align Firebug to the right of the user agent window
-firebug.uiLocation=Firebug UI Location
-firebug.menu.tip.UI_Location=Position of the Firebug user interface
-
-# LOCALIZATION NOTE (firebug_options): Tooltip text used for Firebug icon menu (them left
-# most button on Firebug main toolbar)
-firebug_options=Firebug Options
-
-# LOCALIZATION NOTE (firebug.Show_All_Panels): Menu item label used in 'list of all panels'
-# menu (available on Firebug's tab bar).
-firebug.Show_All_Panels=Show All Panels
-
-console.option.Show_Command_Line=Show Command Line
-console.option.tip.Show_Command_Line=Focus the Command Line / Show the Command Line Popup
-
-# Console panel options (located in tab's option menu)
-ShowJavaScriptErrors=Show JavaScript Errors
-console.option.tip.Show_JavaScript_Errors=Log JavaScript error messages into the console
-ShowJavaScriptWarnings=Show JavaScript Warnings
-console.option.tip.Show_JavaScript_Warnings=Log JavaScript warning messages into the console
-ShowCSSErrors=Show CSS Errors
-console.option.tip.Show_CSS_Errors=Log CSS error messages into the console
-ShowXMLErrors=Show XML Errors
-console.option.tip.Show_XML_Errors=Log XML error messages into the console
-ShowStackTrace=Show Stack Trace With Errors
-console.option.tip.Show_Stack_Trace=Show stack trace information for error messages
-ShowXMLHttpRequests=Show XMLHttpRequests
-console.option.tip.Show_XMLHttpRequests=Log XMLHttpRequests into the console
-ShowChromeErrors=Show Chrome Errors
-console.option.tip.Show_System_Errors=Log program and add-on internal error messages into the console
-ShowChromeMessages=Show Chrome Messages
-console.option.tip.Show_System_Messages=Log program and add-on internal messages into the console
-ShowExternalErrors=Show External Errors
-console.option.tip.Show_External_Errors=Log error messages coming from external sources into the console
-ShowNetworkErrors=Show Network Errors
-console.option.tip.Show_Network_Errors=Log network error messages into the console
-JavascriptOptionsStrict=Strict Warnings (performance penalty)
-console.option.tip.Show_Strict_Warnings=Log also strict warnings into the console
-
-Command_History=Command History
-console.option.Show_Command_Editor=Show Command Editor
-console.option.tip.Show_Command_Editor=Switch to the Command Editor
-
-commandLineShowCompleterPopup=Show Completion List Popup
-console.option.tip.Show_Completion_List_Popup=Show the popup for command auto-completion
-
-Assertion=Assertion Failure
-
-# LOCALIZATION NOTE (Line, LineAndCol): Used at many places in the UI. Displays the location
-# of an error, message, etc. within a source of a web page.
-# first %S = File name, second %S = Line number
-# examples: somePage.htm (line 64)
-# examples: somePage.htm (line 64, column 53)
-Line=%S (line %S)
-LineAndCol=%S (line %S, col %S)
-
-InstanceLine=%S #%S (line %S)
-StackItem=%S (%S line %S)
-SystemItem=<System>
-
-# LOCALIZATION NOTE (InspectInPanel): Menu item label used in a various context menus.
-# For example, right clicking on an element in the HTML panel offers an action to inspect
-# clicked element in the DOM panel.
-# %S = Target panel title
-# examples: Inspect in DOM Panel
-panel.Inspect_In_Panel=Inspect in %S Panel
-panel.tip.Inspect_In_Panel=Switch to the %S panel to examine the object there
-
-NoName=(no name)
-
-# LOCALIZATION NOTE (jsdIScript): an internal Firefox object used for debugging Firebug
-# do not translate.
-# %S = jsdIScript.tag
-jsdIScript=jsdIScript %S
-
-# LOCALIZATION NOTE (html.option.Show_Full_Text, html.option.tip.Show_Full_Text):
-# HTML panel option (located in tab's option menu). If set to true, contents
-# of an element will not be cropped
-ShowFullText=Show Full Text
-html.option.tip.Show_Full_Text=Don't crop element contents
-
-# LOCALIZATION NOTE (html.option.Show_Whitespace, html.option.tip.Show_Whitespace):
-# HTML panel option (located in tab's option menu). If set to true, whitepace inside of
-# nodes will be shown
-ShowWhitespace=Show Whitespace
-html.option.tip.Show_Whitespace=Show Whitespace inside of nodes
-
-# LOCALIZATION NOTE (html.option.Show_Comments, html.option.tip.Show_Comments):
-# HTML panel option (located in tab's option menu). If set to true, comment nodes are displayed
-ShowComments=Show Comments
-html.option.tip.Show_Comments=Show comment nodes
-
-# LOCALIZATION NOTE (html.option.Show_Text_Nodes_With_Entities, html.option.tip.Show_Text_Nodes_With_Entities):
-# HTML panel option (located in tab's option menu). If set to true, special characters will be
-# shown in their entity representation, e.g. " => ", & => &
-html.option.Show_Entities_As_Symbols=Show Entities As Symbols
-html.option.tip.Show_Entities_As_Symbols=Show all XML entities using their symbolic representation
-html.option.Show_Entities_As_Names=Show Entities As Names
-html.option.tip.Show_Entities_As_Names=Show all XML entities using their names
-html.option.Show_Entities_As_Unicode=Show Entities As Unicode
-html.option.tip.Show_Entities_As_Unicode=Show all XML entities in their Unicode representation
-
-# LOCALIZATION NOTE (html.option.Highlight_Mutations, html.option.tip.Highlight_Mutations):
-# HTML panel option (located in tab's option menu). If set to true, changes to the nodes
-# will be highlighted
-HighlightMutations=Highlight Changes
-html.option.tip.Highlight_Mutations=Highlight changes inside nodes
-
-# LOCALIZATION NOTE (html.option.Expand_Mutations, html.option.tip.Expand_Mutations):
-# HTML panel option (located in tab's option menu). If set to true, the tree view
-# will be expanded to display changed nodes
-ExpandMutations=Expand Changes
-html.option.tip.Expand_Mutations=Expand the tree view to display changed nodes
-
-# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
-# HTML panel option (located in tab's option menu). If set to true, the tree view
-# will be scrolled to display changed nodes
-ScrollToMutations=Scroll Changes Into View
-html.option.tip.Scroll_To_Mutations=Scroll the tree view to bring changed nodes into view
-
-# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
-# Inspector option (located in HTML tab's option menu and Firebug menu). If set to true,
-# a panel will be shown including information about the currently inspected element
-ShowQuickInfoBox=Show Quick Info Box
-inspect.option.tip.Show_Quick_Info_Box=Show information about the currently inspected element inside a panel overlaying the page
-
-# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
-# Inspector option (located in HTML tab's option menu and Firebug menu). If set to true, the tree view
-# will be scrolled to display changed nodes
-ShadeBoxModel=Shade Box Model
-inspect.option.tip.Shade_Box_Model=Shade the different parts of the box model
-
-ScrollIntoView=Scroll Into View
-html.tip.Scroll_Into_View=Scroll the page to make the element visible
-NewAttribute=New Attribute...
-html.tip.New_Attribute=Add a new attribute to this element
-html.Edit_Node=Edit %S...
-html.Node=Node
-html.tip.Edit_Node=Edit the %S using the full text editor
-DeleteElement=Delete Element
-html.Delete_Element=Delete the element from the tree
-DeleteNode=Delete Node
-html.Delete_Node=Delete the node from the tree
-
-# Quick Info Box
-quickInfo=Quick Info
-computedStyle=Computed Style
-
-# LOCALIZATION NOTE (html.Break_On_Mutate, html.Disable_Break_On_Mutate): Tooltips for resume
-# button that are used when the HTML panel is currently selected. The button allows stopping
-# JS execution when DOM of the current page is modified.
-html.Break_On_Mutate=Break On Mutate
-html.Disable_Break_On_Mutate=Disable Break On Mutate
-html.label.Break_On_Text_Change=Break On Text Change
-
-html.label.HTML_Breakpoints=HTML Breakpoints
-html.label.Break_On_Attribute_Change=Break On Attribute Change
-html.tip.Break_On_Attribute_Change=Stop JavaScript execution when an attribute of this element changes
-html.label.Break_On_Child_Addition_or_Removal=Break On Child Addition or Removal
-html.tip.Break_On_Child_Addition_or_Removal=Stop JavaScript execution when a child node is added to or removed from this element
-html.label.Break_On_Element_Removal=Break On Element Removal
-html.tip.Break_On_Element_Removal=Stop JavaScript execution when the element is removed
-
-# LOCALIZATION NOTE (html.label.Expand/Contract_All, html.tip.Expand/Contract_All):
-# Used within the HTML for a context menu item. The user can expand/contract
-# the element and all its children to quickly see the entire hierarchical structure
-# or collapse it.
-html.label.Expand/Contract_All=Expand/Contract All
-html.tip.Expand/Contract_All=Expand/collapse all the children recursively
-
-# LOCALIZATION NOTE (dom.label.breakOnPropertyChange, dom.tip.Break_On_Property_Change):
-# Used within the DOM panel to create a 'property breakpoint'. Right-click on an property of an object.
-# The label is also used for the 'Break On Property Change' button (available on the toolbar).
-dom.label.breakOnPropertyChange=Break On Property Change
-dom.tip.Break_On_Property_Change=Stop the JavaScript execution when this property changes
-
-# LOCALIZATION NOTE (dom.disableBreakOnPropertyChange): Used within the DOM panel for the
-# 'break on next button' in the case the option is activated
-dom.disableBreakOnPropertyChange=Disable Break On Property Change
-
-dom.label.DOM_Breakpoints=DOM Breakpoints
-
-# LOCALIZATION NOTE (EditAttribute, html.tip.Edit_Attribute): Menu item label used in HTML panel context menu. Allows
-# editing an existing HTML element attribute.
-# %S = Name of the clicked attribute
-# examples: Edit Attribute "onclick"...
-EditAttribute=Edit Attribute "%S"...
-html.tip.Edit_Attribute=Edit the value of the attribute "%S" of this element
-
-# LOCALIZATION NOTE (DeleteAttribute, html.tip.Delete_Attribute): Menu item label used in HTML panel context menu. Allows
-# deleting an existing HTML element attribute.
-# %S = Name of the clicked attribute
-# examples: Delete Attribute "onclick"...
-DeleteAttribute=Delete Attribute "%S"
-html.tip.Delete_Attribute=Delete the attribute "%S" from this element
-
-# LOCALIZATION NOTE (InheritedFrom): Displaying an HTML element name + an applied CSS rule,
-# that has been inherited. Used in the Style side panel (under HTML panel).
-# examples: Inherited from table.tabView
-InheritedFrom=Inherited from
-
-SothinkWarning=The Sothink SWF Catcher extension is preventing Firebug from working properly.<br/><br/>Please read <a href="http://www.getfirebug.com/faq.html#Sothink" target="_new">this item on the Firebug FAQ</a> for help.
-
-# LOCALIZATION NOTE (css.fontFamilyPreview): Part of a tooltip in the CSS panel
-# and Style side panel (within HTML panel) when the mouse hovers a font name
-css.fontFamilyPreview=The quick brown fox jumps over the lazy dog. 0123456789
-
-# LOCALIZATION NOTE (css.EmptyStyleSheet): Displayed in the CSS panel
-# in case there are no stylesheets attached to the current page.
-# The text between <a> and </a> is displayed as a link.
-css.EmptyStyleSheet=There are no rules. You can <a>create a rule</a>.
-
-# LOCALIZATION NOTE (css.EmptyElementCSS2): Displayed in the Style side panel
-# (available within the HTML panel) in case there are no CSS rules for the selected element.
-# The text between <a> and </a> is displayed as a link.
-css.EmptyElementCSS=This element has no style rules. You can <a>create a rule</a> for it.
-
-EditStyle=Edit Element Style...
-style.tip.Edit_Style=Edit the element's inline style
-AddRule=Add Rule...
-css.tip.AddRule=Add a general rule for this element
-NewRule=New Rule...
-css.tip.New_Rule=Add a new rule
-
-# LOCALIZATION NOTE (css.Delete_Rule, css.tip.Delete_Rule): Menu item label used in the CSS panel context menu.
-# Allows to delete an existing CSS rule
-# %S = Selector of the clicked rule
-# examples: Delete "div > p"
-css.Delete_Rule=Delete "%S"
-css.tip.Delete_Rule=Delete the rule "%S" and all its properties
-
-# LOCALIZATION NOTE (css.menu.Edit_Media_Query, css.menu.tip.Edit_Media_Query):
-# Menu item label used in the CSS panel context menu.
-# Allows to add or edit the CSS media query of an import rule
-css.menu.Edit_Media_Query=Edit Media Query...
-css.menu.tip.Edit_Media_Query=Edit the media query assigned to this rule
-
-NewProp=New Property...
-css.tip.New_Prop=Add a new property to the current rule
-
-# LOCALIZATION NOTE (EditProp, css.tip.Edit_Prop): Menu item label used in the CSS panel context menu.
-# Allows to edit an existing CSS rule property.
-# %S = Name of the clicked property
-# examples: Edit "background-color"...
-EditProp=Edit "%S"...
-css.tip.Edit_Prop=Edit the value of the property "%S"
-
-# LOCALIZATION NOTE (DisableProp): Menu item label used in the CSS panel context menu.
-# Allows to disable an existing CSS rule property.
-# %S = Name of the clicked property
-# examples: Disable "background-color"
-DisableProp=Disable "%S"
-css.tip.Disable_Prop=Disable the property "%S"
-
-# LOCALIZATION NOTE (DeleteProp, css.tip.Delete_Prop): Menu item label used in the CSS panel context menu.
-# Allows to delete an existing CSS rule property.
-# %S = Name of the clicked property
-# examples: Delete "background-color"
-DeleteProp=Delete "%S"
-css.tip.Delete_Prop=Delete the property "%S"
-
-# Console context menu labels.
-BreakOnThisError=Break on This Error
-console.menu.tip.Break_On_This_Error=Stop the JavaScript execution as soon as this error occurs
-BreakOnAllErrors=Break on All Errors
-console.menu.tip.Break_On_All_Errors=Stop the JavaScript execution as soon as an error occurs
-
-# LOCALIZATION NOTE (script.option.Track_Throw_Catch):
-# Script panel option (located in tab's option menu). If set to true, tracking of
-# throw/catch blocks is enabled.
-TrackThrowCatch=Track Throw/Catch
-script.option.tip.Track_Throw_Catch=Track exceptions even when they are caught by try/catch blocks
-
-UseLastLineForEvalName=Use Last Source Line for eval() names
-UseMD5ForEvalName=Use MD5 for eval() names
-
-# Breakpoints side panel
-Breakpoints=Breakpoints
-ErrorBreakpoints=Error Breakpoints
-LoggedFunctions=Logged Functions
-EnableAllBreakpoints=Enable All Breakpoints
-breakpoints.option.tip.Enable_All_Breakpoints=Enable all listed breakpoints
-DisableAllBreakpoints=Disable All Breakpoints
-breakpoints.option.tip.Disable_All_Breakpoints=Disable all listed breakpoints
-ClearAllBreakpoints=Remove All Breakpoints
-breakpoints.option.tip.Clear_All_Breakpoints=Remove all listed breakpoints
-ConditionInput=This breakpoint will stop only if this expression is true:
-
-# LOCALIZATION NOTE (breakpoints.Remove_Breakpoint, breakpoints.tip.Remove_Breakpoint, breakpoints.Disable_Breakpoint,
-# breakpoints.tip.Disable_Breakpoint, breakpoints.Enable_Breakpoint, breakpoints.tip.Enable_Breakpoint):
-# Context menu items in the Script panel and Breakpoints side panel.
-breakpoints.Remove_Breakpoint=Remove Breakpoint
-breakpoints.tip.Remove_Breakpoint=Remove the breakpoint
-breakpoints.Disable_Breakpoint=Disable Breakpoint
-breakpoints.tip.Disable_Breakpoint=Disable the breakpoint
-breakpoints.Enable_Breakpoint=Enable Breakpoint
-breakpoints.tip.Enable_Breakpoint=Enable the breakpoint
-
-# LOCALIZATION NOTE (script.balloon.Continue, script.balloon.Disable): Labels used for buttons
-# within balloon popup dialog. This dialog appears when the debugger halts at a breakpoint or at
-# a 'debugger;' keyword.
-# Continue: allows to resume the debugger
-# Disable: allows to disable the current 'debugger;' keyword used in the Javascript source
-script.balloon.Continue=Continue
-script.balloon.Disable=Disable
-
-ScriptsFilterStatic=Show static Scripts
-ScriptsFilterEval=Show static and eval Scripts
-ScriptsFilterEvent=Show static and event Scripts
-ScriptsFilterAll=Show static, eval and event Scripts
-ScriptsFilterStaticShort=static
-ScriptsFilterEvalShort=evals
-ScriptsFilterEventShort=events
-ScriptsFilterAllShort=all
-
-# LOCALIZATION NOTE (callstack.Expand_All, callstack.tip.Expand_All,
-# callstack.Collapse_All, callstack.tip.Collapse_All):
-# Context menu item labels used in Stack side panel (within Script panel)
-# Firebug needs to be halted at a breakpoint to see these items.
-callstack.Expand_All=Expand All
-callstack.tip.Expand_All=Expand all stack frame functions
-callstack.Collapse_All=Collapse All
-callstack.tip.Collapse_All=Collapse all stack frame functions
-
-# LOCALIZATION NOTE (callstack.Execution_not_stopped):
-# Message displayed in the Stack side panel if the script execution is not stopped.
-callstack.Execution_not_stopped=Stack frames are just shown when the script execution is stopped.
-
-# LOCALIZATION NOTE (ShowUserProps, ShowUserFuncs, ShowDOMProps, ShowDOMFuncs, ShowDOMConstants,
-# ShowOwnProperties, ShowOwnPropertiesTooltip, ShowEnumerableProperties, ShowEnumerablePropertiesTooltip,
-# ShowInlineEventHandlers):
-# Labels for DOM panel options (located in tab's option menu)
-ShowUserProps=Show User-defined Properties
-dom.option.tip.Show_User_Props=Show user-defined object properties
-ShowUserFuncs=Show User-defined Functions
-dom.option.tip.Show_User_Funcs=Show user-defined object methods
-ShowDOMProps=Show DOM Properties
-dom.option.tip.Show_DOM_Props=Show properties specified inside the DOM
-ShowDOMFuncs=Show DOM Functions
-dom.option.tip.Show_DOM_Funcs=Show functions specified inside the DOM
-ShowDOMConstants=Show DOM Constants
-dom.option.tip.Show_DOM_Constants=Show constants specified inside the DOM
-ShowInlineEventHandlers=Show Inline Event Handlers
-ShowInlineEventHandlersTooltip=Show available inline event handlers, that are not associated with a function
-ShowOwnProperties=Show Own Properties Only
-ShowOwnPropertiesTooltip=Don't show prototype chain
-ShowEnumerableProperties=Show Enumerable Properties Only
-ShowEnumerablePropertiesTooltip=Don't show non-enumerable properties
-
-NoMembersWarning=There are no properties to show for this object.
-NewWatch=New watch expression...
-
-# LOCALIZATION NOTE (AddWatch, watch.tip.Add_Watch): Context menu item in the DOM panel, Script panel and Watch side panel.
-# Adds the selection or object to the Watch side panel to observe it
-AddWatch=Add Watch
-watch.tip.Add_Watch=Add the selection/object to the Watch side panel for observation
-
-# LOCALIZATION NOTE (CopySourceCode, script.tip.Copy_Source_Code): Context menu item of the Script panel.
-# Copies the selected source code to the clipboard.
-CopySourceCode=Copy Source
-script.tip.Copy_Source_Code=Copy the selected source code to the clipboard
-
-Use_hash_plus_number_to_go_to_line=Use #<number> to go to line
-
-CopyValue=Copy Value
-dom.tip.Copy_Value=Copy the property's value to the clipboard
-Copy_Name=Copy Name
-dom.tip.Copy_Name=Copy the property's name to the clipboard
-Copy_Path=Copy Path
-dom.tip.Copy_Path=Copy the property path
-
-NewProperty=New Property...
-EditProperty=Edit Property...
-dom.tip.Edit_Property=Edit the property's value
-EditVariable=Edit Variable...
-stack.tip.Edit_Variable=Edit the variable's value
-EditWatch=Edit Watch...
-watch.tip.Edit_Watch=Edit the watch expression's value
-DeleteProperty=Delete Property
-dom.tip.Delete_Property=Delete the property
-DeleteWatch=Delete Watch
-watch.tip.Delete_Watch=Delete the watch expression
-
-# LOCALIZATION NOTE (SetBreakpoint, script.tip.Set_Breakpoint): Context menu item of the Script panel.
-# Toggles setting of a breakpoint at the current line of a script inside the Script panel.
-SetBreakpoint=Set Breakpoint
-script.tip.Set_Breakpoint=Toggles setting of a breakpoint at the current line
-
-# LOCALIZATION NOTE (EditBreakpointCondition, breakpoints.tip.Edit_Breakpoint_Condition):
-# Context menu item of the Script panel.
-# Allows to edit the condition, under which a breakpoint stops the JavaScript execution
-EditBreakpointCondition=Edit Breakpoint Condition...
-breakpoints.tip.Edit_Breakpoint_Condition=Edit the condition, under which this breakpoint stops the JavaScript execution
-
-NoBreakpointsWarning=There are no breakpoints set in this page.
-
-# LOCALIZATION NOTE (style.option.Only_Show_Applied_Styles, style.option.tip.Only_Show_Applied_Styles):
-# Style side panel option (located in tab's option menu). If set to true,
-# just styles applied to an element will be displayed and overwritten ones will be hidden.
-Only_Show_Applied_Styles=Only Show Applied Styles
-style.option.tip.Only_Show_Applied_Styles=Just show styles applied to the element
-
-# LOCALIZATION NOTE (style.option.Show_User_Agent_CSS, style.option.tip.Show_User_Agent_CSS):
-# Style side panel option (located in tab's option menu). If set to true, the Style side panel will
-# also display styles defined by the user agent.
-Show_User_Agent_CSS=Show User Agent CSS
-style.option.tip.Show_User_Agent_CSS=Also show the CSS defined by the user agent
-
-# LOCALIZATION NOTE (computed.option.label.Colors_As_Hex, computed.option.tip.Colors_As_Hex,
-#   computed.option.label.Colors_As_RGB, computed.option.tip.Colors_As_RGB,
-#   computed.option.label.Colors_As_HSL, computed.option.tip.Colors_As_HSL):
-# CSS panel, Style side panel and Computed side panel option (located in tab's option menu).
-# Allows switching the display of CSS colors between hex, rgb(a) and hsl(a) format
-computed.option.label.Colors_As_Hex=Colors As Hex
-computed.option.tip.Colors_As_Hex=Show colors in hexadecimal format
-computed.option.label.Colors_As_RGB=Colors As RGB
-computed.option.tip.Colors_As_RGB=Show colors in RGB format
-computed.option.label.Colors_As_HSL=Colors As HSL
-computed.option.tip.Colors_As_HSL=Show colors in HSL format
-
-# LOCALIZATION NOTE (style.option.label.active, style.option.tip.active):
-# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
-# the Style side panel will simulate the element being activated and therefore display
-# :active pseudo-class styles
-style.option.label.active=:active
-style.option.tip.active=Display :active pseudo-class styles
-
-# LOCALIZATION NOTE (style.option.label.hover, style.option.tip.hover):
-# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
-# the Style side panel will simulate the element being hovered and therefore display
-# :hover pseudo-class styles
-style.option.label.hover=:hover
-style.option.tip.hover=Display :hover pseudo-class styles
-
-# LOCALIZATION NOTE (style.option.label.focus, style.option.tip.focus):
-# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
-# the Style side panel will simulate the element being focused and therefore display
-# :focus pseudo-class styles
-style.option.label.focus=:focus
-style.option.tip.focus=Display :focus pseudo-class styles
-
-# LOCALIZATION NOTE (css.label.Inspect_Declaration, css.tip.Inspect_Declaration):
-# CSS panel/Style side panel context menu option. Allows inspecting a font face of a web font
-# declaration inside the CSS panel
-css.label.Inspect_Declaration=Inspect Declaration
-css.tip.Inspect_Declaration= Inspect the declaration of this font
-
-# LOCALIZATION NOTE (css.option.Expand_Shorthand_Properties, css.option.tip.Expand_Shorthand_Properties):
-# CSS panel/Style side panel option (located in tab's option menu). If set to true,
-# CSS shorthand properties like 'margin' will be split into their components, e.g. 'margin-top',
-# 'margin-left', 'margin-bottom', 'margin-right'
-Expand_Shorthand_Properties=Expand Shorthand Properties
-css.option.tip.Expand_Shorthand_Properties=Expand CSS shorthand properties into their components
-
-# LOCALIZATION NOTE (computed.option.Sort_Alphabetically, computed.option.tip.Sort_Alphabetically):
-# Computed side panel option (located in tab's option menu). If set to 'alphabetical',
-# the computed styles will be listed alphabetically by their name, otherwise they will be grouped
-# into categories
-Sort_alphabetically=Sort Alphabetically
-computed.option.tip.Sort_Alphabetically=Sort the styles by their name/group the styles into categories
-
-# LOCALIZATION NOTE (computed.option.Show_Mozilla_Specific_Styles, computed.option.tip.Show_Mozilla_Specific_Styles):
-# Computed side panel option (located in tab's option menu). If set to true,
-# also styles prefixed with -moz will be displayed
-Show_Mozilla_specific_styles=Show Mozilla Specific Styles
-computed.option.tip.Show_Mozilla_Specific_Styles=Also show styles prefixed with -moz
-
-# LOCALIZATION NOTE (computed.No_User-Defined_Styles):
-# Displayed in the Computed side panel (available within the HTML panel) in case there are no
-# user-defined CSS rules applying to the selected element.
-computed.No_User-Defined_Styles=This element has no user-defined style rules.
-
-script.Type_any_key_to_filter_list=Type any key to filter list
-
-# LOCALIZATION NOTE (LayoutPadding, LayoutBorder, LayoutMargin, LayoutPosition, LayoutAdjacent):
-# Labels used to describe layout properties a the selected HTML element.
-# Used in the Layout side panel (within HTML panel).
-LayoutPadding=padding
-LayoutBorder=border
-LayoutMargin=margin
-LayoutPosition=position
-LayoutAdjacent=adjacent
-position=position
-
-# LOCALIZATION NOTE (layout.option.Show_Rulers, layout.option.tip.Show_Rulers):
-# Layout side panel option (located in tab's option menu). If set to true,
-# rulers and guides will be displayed for the element on the page
-# when hovering parts of the layout box
-ShowRulers=Show Rulers and Guides
-layout.option.tip.Show_Rulers=Show rulers and guides on the page when hovering parts of the layout box
-
-# Net panel
-Loading=Loading...
-Headers=Headers
-
-# LOCALIZATION NOTE (net.tip.Clear)
-# Tooltip for the button inside the Net panel to clear the request list
-net.tip.Clear=Clear the request list
-
-# LOCALIZATION NOTE (net.header.Reset_Header, net.header.tip.Reset_Header)
-# Label for header context menu within the Net panel
-net.header.Reset_Header=Reset Header
-net.header.tip.Reset_Header=Reset the header display
-
-# LOCALIZATION NOTE (net.header.URL, net.header.URL_Tooltip, net.header.Status,
-# net.header.Status_Tooltip, net.header.Domain, net.header.Domain_Tooltip,
-# net.header.Size, net.header.Size_Tooltip, net.header.Timeline, net.header.Timeline_Tooltip,
-# net.header.Local_IP, net.header.Local_IP_Tooltip, net.header.Remote_IP,
-# net.header.Remote_IP_Tooltip, net.header.Protocol, net.header.Protocol_Tooltip):
-# Labels and tooltips for headers displayed on top of the Net panel.
-net.header.URL=URL
-net.header.URL_Tooltip=Requested URL and used HTTP method
-net.header.Status=Status
-net.header.Status_Tooltip=Status of the received response
-net.header.Domain=Domain
-net.header.Domain_Tooltip=Domain of the executed request
-net.header.Size=Size
-net.header.Size_Tooltip=Size of the received response (compressed size in case of compressed responses)
-net.header.Timeline=Timeline
-net.header.Timeline_Tooltip=Detailed timing info about request response round trip
-net.header.Local_IP=Local IP
-net.header.Local_IP_Tooltip=Local IP address and port number to which the request is bound
-net.header.Remote_IP=Remote IP
-net.header.Remote_IP_Tooltip=Remote IP address and port number to which the request is bound
-net.header.Protocol=Protocol
-net.header.Protocol_Tooltip=The URL protocol used to locate the resource on the web
-
-# LOCALIZATION NOTE (net.label.Network_Breakpoints): Label for network breakpoints group.
-net.label.XHR_Breakpoints=XHR Breakpoints
-
-# LOCALIZATION NOTE (net.label.Break_On_XHR, net.tip.Break_On_XHR):
-# Net panel context menu item for stopping the JavaScript execution on an XHR
-net.label.Break_On_XHR=Break On XHR
-net.tip.Break_On_XHR=Stop the JavaScript execution as soon as an XMLHttpRequest is made
-
-# LOCALIZATION NOTE (net.headers.view_source, net.headers.pretty_print): Labels used in the
-# Net panel's Headers tab (displayed if you expand a network request). The label is used
-# for a link, that switches the view between raw source code and formated header values.
-net.headers.view_source=view source
-net.headers.pretty_print=pretty print
-
-# LOCALIZATION NOTE (net.filter.Media): Label for Net panel filter (used on the Net panel toolbar)
-net.filter.Media=Media
-
-# LOCALIZATION NOTE (Post, Put): Label (verb) used in the Net panel for detailed info about
-# a network request (displayed when a Net panel entry is expanded). The content of
-# this tab displays sent data (related to an HTTP send method).
-Post=Post
-Put=Put
-
-# LOCALIZATION NOTE (Response, URLParameters, Cache, HTML, jsonviewer.tab.JSON, xmlviewer.tab.XML):
-# Labels used in the Net panel for detailed info about a network request (displayed
-# when a Net panel entry is expanded)
-Response=Response
-URLParameters=Params
-Cache=Cache
-HTML=HTML
-jsonviewer.tab.JSON=JSON
-xmlviewer.tab.XML=XML
-svgviewer.tab.SVG=SVG
-
-fontviewer.General_Info=General Info
-fontviewer.Meta_Data=Meta Data
-fontviewer.view_source=view source
-fontviewer.Preview=Preview
-fontviewer.view_characters=view characters
-fontviewer.pretty_print=pretty print
-fontviewer.view_sample=view sample
-fontviewer.uniqueid=Unique ID
-fontviewer.vendor=Vendor
-fontviewer.license=License
-fontviewer.description=Description
-fontviewer.copyright=Copyright
-fontviewer.credits=Credits
-fontviewer.trademark=Trademark
-fontviewer.licensee=Licensee
-fontviewer.extension=Extension
-fontviewer.pangram=The quick brown fox jumps over the lazy dog
-
-# LOCALIZATION NOTE (jsonviewer.sort, jsonviewer.do_not_sort): Label (verb) used in the
-# Net panel for JSON responses. Allows to sort alphabetically.
-jsonviewer.sort=Sort by key
-jsonviewer.do_not_sort=Do not sort
-
-# LOCALIZATION NOTE (net.jsonviewer.Copy_JSON): Label (verb) displayed in the JSON tab of a network request
-# in the Net & Console panel when copying JSON replies.
-# %S = Part of the JSON, that was clicked
-# example: Copy "person" as JSON
-net.jsonviewer.Copy_JSON=Copy "%S" as JSON
-
-# LOCALIZATION NOTE (RequestHeaders, ResponseHeaders, CachedResponseHeaders, PostRequestHeaders):
-# Label (noun) used in the Net panel (displayed inside the Headers tab of a request).
-RequestHeaders=Request Headers
-ResponseHeaders=Response Headers
-CachedResponseHeaders=Response Headers From Cache
-PostRequestHeaders=Request Headers From Upload Stream
-
-# LOCALIZATION NOTE (net.label.ResponseHeadersFromBFCache):
-# Label (noun) used in the Net panel and displayed instead of Response Headers
-# if the response comes directly from the cache (BFCache).
-net.label.ResponseHeadersFromBFCache=The request was resolved directly from the cache, so we have no response from the server. See below for the cached response.
-
-# LOCALIZATION NOTE (plural.Limit_Exceeded2): Semicolon list of plural forms.
-# A message displayed in the Net panel when some entries must be removed in the case the maximum number
-# of entries has been reached.
-# %1 = the number of entries removed
-# example: Firebug's log limit has been reached. 150 entries not shown.
-plural.Limit_Exceeded2=Firebug's log limit has been reached. %1$S entry not shown.;Firebug's log limit has been reached. %1$S entries not shown.
-
-LimitPrefs=Preferences
-
-# LOCALIZATION NOTE (LimitPrefsTitle): A message displayed in the Net panel when log limit
-# has been reached. Informing the user what preference should be changed to modify the limit.
-# %S = Name of a preference
-# examples: In order to change the limit modify 'firebug.extensions.console.logLimit'
-LimitPrefsTitle=In order to change the limit modify '%S'
-
-Refresh=Refresh
-panel.tip.Refresh=Refresh the panel display
-
-# LOCALIZATION NOTE (OpenInTab, firebug.tip.Open_In_Tab): Context menu option of source links,
-# stylesheets and net requests to open the underlying URL in a new browser tab
-OpenInTab=Open in New Tab
-firebug.tip.Open_In_Tab=Open the URL in a new browser tab
-
-Open_Response_In_New_Tab=Open Response in New Tab
-net.tip.Open_Response_In_New_Tab=Open the response in a new browser tab
-
-# LOCALIZATION NOTE (Profile): Caption (verb) for reported profile info.
-# (result of JavaScript profiler tool).
-Profile=Profile
-
-ProfilerStarted=The profiler is running. Click 'Profile' again to see its report.
-
-# LOCALIZATION NOTE (plural.Profile_Time2): Semicolon list of plural forms.
-# Caption for reported profile info (result of JavaScript profiler tool).
-# %1 = Number of milliseconds
-# %2 = Number of calls (plural)
-# example: (56ms, 15 calls)
-plural.Profile_Time2=(%1$Sms, %2$S call);(%1$Sms, %2$S calls)
-
-NothingToProfile=No activity to profile
-PercentTooltip=Percentage of time spent on this function
-CallsHeaderTooltip=Number of times function was called
-OwnTimeHeaderTooltip=Time spent in function excluding nested calls
-TimeHeaderTooltip=Time spent in function including nested calls
-AvgHeaderTooltip=Average time including function calls
-MinHeaderTooltip=Minimum time including function calls
-MaxHeaderTooltip=Maximum time including function calls
-ProfileButton.Enabled.Tooltip=Profile JavaScript execution time
-ProfileButton.Disabled.Tooltip=Profile JavaScript execution time (Script panel must be enabled)
-Function=Function
-Percent=Percent
-
-# LOCALIZATION NOTE (Calls, OwnTime, Time, Avg, Min, Max, File): Used in profiler report header
-# (name of a report column). In order to see this, select the Console panel, start profiling
-# by clicking the Profile button and stop it by clicking it again. The report is logged into the
-# Console panel. Make sure Script panel is enabled.
-Calls=Calls
-OwnTime=Own Time
-Time=Time
-Avg=Avg
-Min=Min
-Max=Max
-File=File
-
-# Support for standard actions.
-Copy=Copy
-Cut=Cut
-Remove=Remove
-Delete=Delete
-Paste=Paste
-SelectAll=Select All
-
-html.Copy_Node=Copy %S
-html.tip.Copy_Node=Copy the %S node and all its contents to the clipboard
-CopyInnerHTML=Copy innerHTML
-html.tip.Copy_innerHTML=Copy the contents of the element to the clipboard
-CopyXPath=Copy XPath
-html.tip.Copy_XPath=Copy the element's XPath to the clipboard
-Copy_CSS_Path=Copy CSS Path
-html.tip.Copy_CSS_Path=Copy the element's CSS path to the clipboard
-
-# LOCALIZATION NOTE (CopyError, console.menu.tip.Copy_Error): Context menu item. Used in the Console
-# panel when clicking an error object.
-CopyLocation=Copy Location
-clipboard.tip.Copy_Location=Copy the URL of the object's location to the clipboard
-
-CopyURLParameters=Copy URL Parameters
-net.tip.Copy_URL_Parameters=Copy URL parameters to the clipboard
-CopyPOSTParameters=Copy POST Parameters
-net.tip.Copy_POST_Parameters=Copy POST parameters to the clipboard
-CopyLocationParameters=Copy Location with Parameters
-net.tip.Copy_Location_Parameters=Copy the URL incl. the parameters to the clipboard
-CopyRequestHeaders=Copy Request Headers
-net.tip.Copy_Request_Headers=Copy the request headers to the clipboard
-CopyResponseHeaders=Copy Response Headers
-net.tip.Copy_Response_Headers=Copy the response headers to the clipboard
-CopyResponse=Copy Response Body
-net.tip.Copy_Response=Copy the response body to the clipboard
-
-# LOCALIZATION NOTE (CopyError, console.menu.tip.Copy_Error): Context menu item. Used in the Console
-# panel when clicking an error object.
-CopyError=Copy Error
-console.menu.tip.Copy_Error=Copy the error information to the clipboard
-
-# LOCALIZATION NOTE (CopySource, dom.tip.Copy_Source): Context menu item of. Used in the Console
-# panel when clicking an error object.
-CopySource=Copy Function
-dom.tip.Copy_Source=Copy the function's source code to the clipboard
-
-# LOCALIZATION NOTE (ShowCallsInConsole): Context menu item of a function object inside the
-# DOM panel and Watch side panel.
-# %S = Name of the function
-# example: Log Calls to "getData"
-# example: Log calls to the function "getData" inside the Console panel
-ShowCallsInConsole=Log Calls to "%S"
-dom.tip.Log_Calls_To_Function=Log calls to the function "%S" inside the Console panel
-
-# LOCALIZATION NOTE (ShowEventsInConsole, html.tip.Show_Events_In_Console):
-# Menu item label used in HTML elements context menu. Allows logging of event information
-# to the console.
-ShowEventsInConsole=Log Events
-html.tip.Show_Events_In_Console=Log event information to the console
-
-# LOCALIZATION NOTE (panel.Enabled, panel.tip.Enabled):
-# Option inside the options menu of activatable panels. Enables/Disables the panel.
-panel.Enabled=Enabled
-panel.tip.Enabled=Toggle the panel activation
-
-# LOCALIZATION NOTE (panel.tooltip.Show_Command_Line_Popup): Tooltip used for a button on main
-# Firebug toolbar. This button allows to open the Command Line within other panels
-# than the Console panel.
-panel.tooltip.Show_Command_Line_Popup=Show Command Line Popup
-
-# LOCALIZATION NOTE (console.MethodNotSupported): Message displayed in the Console panel,
-# if a specific method is not supported.
-# %S = Name of the unsupported method
-# example: Firebug console does not support 'bind'
-console.MethodNotSupported=Firebug console does not support '%S'
-
-# LOCALIZATION NOTE (commandline.MethodNotSupported): Message displayed in the Console panel,
-# if an unsupported method is entered via the Command Line.
-# %S = Name of the unsupported method
-commandline.MethodNotSupported=Firebug Command Line does not support '%S'
-
-# LOCALIZATION NOTE (console.Disable_Break_On_All_Errors, console.Break_On_All_Errors):
-# Tooltip for the "Break on... " button used when the Console panel is selected.
-console.Disable_Break_On_All_Errors=Disable Break On All Errors
-console.Break_On_All_Errors=Break On All Errors
-
-# LOCALIZATION NOTE (console.Break_On_This_Error): Tooltip for the breakpoint besides an error message
-# in the Console panel
-console.Break_On_This_Error=Break On This Error
-
-# LOCALIZATION NOTE (console.Use_Arrow_keys,_Tab_or_Enter): Hint at the top of the Completion List Popup
-# in the Command Line
-console.Use_Arrow_keys,_Tab_or_Enter=Use Arrow keys, Tab or Enter
-
-# LOCALIZATION NOTE (console.JSDisabledInFirefoxPrefs): Hint shown inside the Console panel in the case
-# JavaScript is not available
-console.JSDisabledInFirefoxPrefs=JavaScript is disabled in your Firefox preferences. If you want to use the Console panel, then please enable this option via Tools > Options > Content > Enable JavaScript
-
-# LOCALIZATION NOTE (console.multiHighlightLimitExceeded):
-# Used by the Console panel for arrays. If the user moves the mouse over an array bracket,
-# all elements in the array are highlighted on the page. If there are too many elements
-# in the array, this tooltip is displayed instead.
-# %S = Maximal number of elements to highlight
-# example: There are too many elements in the array to highlight on the page (current limit is 100).
-#          See 'extensions.firebug.multiHighlightLimit' preference.
-console.multiHighlightLimitExceeded=There are too many elements in the array to highlight on the page (current limit is %S).\nSee 'extensions.firebug.multiHighlightLimit' preference.
-
-# LOCALIZATION NOTE (commandline.disabledForXMLDocs): This message is displayed in the Console panel
-# in cases when the current page is an XML document. The text between <a> and </a> is a link,
-# that causes to switch to HTML rendering of the document.
-commandline.disabledForXMLDocs=Firebug command line is disabled for XML pages. You can <a>switch to HTML</a> to enable it.
-
-# LOCALIZATION NOTE (net.sizeinfo.Response_Body, net.sizeinfo.Post_Body, net.sizeinfo.Total_Sent,
-# net.sizeinfo.Total_Received, net.sizeinfo.Including_Headers):
-# Labels used for a detailed size info tooltip. The tooltip is displayed, if the mouse hovers over
-# a request size displayed within the Net panel. 'Total Sent' and 'Total Received' info includes
-# sent and received headers size.
-net.sizeinfo.Response_Body=Response Body
-net.sizeinfo.Post_Body=Post Body
-net.sizeinfo.Total_Sent=Total Sent
-net.sizeinfo.Total_Received=Total Received
-net.sizeinfo.Including_HTTP_Headers=Including HTTP Headers
-
-net.ActivationMessage=Net panel activated. Any requests while the net panel is inactive are not shown.
-net.responseSizeLimitMessage=Firebug response size limit has been reached. Click <a>here</a> to open the entire response in a new Firefox tab.
-
-# LOCALIZATION NOTE (net.postDataSizeLimitMessage): A warning message displayed within the Net
-# panel (inside the Post tab of an expanded request entry). The message informs the user that
-# posted data reached Firebug's size limit and only part of it is displayed in the UI.
-net.postDataSizeLimitMessage=Firebug request size limit has been reached by Firebug.
-
-net.Break_On_XHR=Break On XHR
-net.label.Parameters=Parameters
-net.label.Parts=Parts
-net.label.Source=Source
-
-# LOCALIZATION NOTE (net.label.Resend): Label for context menu item. Used when clicking
-# on a HTTP request (in the Console or Net panel) to re-send it with the same arguments.
-net.label.Resend=Resend
-net.tip.Resend=Send the request again
-
-# LOCALIZATION NOTE (net.option.Disable_Browser_Cache, net.option.tip.Disable_Browser_Cache):
-# Net panel option (located in tab's option menu). If set to true, the browser's HTTP cache is disabled
-net.option.Disable_Browser_Cache=Disable Browser Cache
-net.option.tip.Disable_Browser_Cache=Disable the browser's HTTP cache
-
-# LOCALIZATION NOTE (net.option.Show_Paint_Events, net.option.tip.Show_Paint_Events):
-# Net panel option (located in tab's option menu). If set to true, the Net panel displays
-# MozAfterPaint events.
-# See also: http://www.softwareishard.com/blog/firebug/watching-mozafterpaint-in-firebug/
-net.option.Show_Paint_Events=Show Paint Events
-net.option.tip.Show_Paint_Events=Show MozAfterPaint events as green lines inside the timeline
-
-# LOCALIZATION NOTE (net.option.Show_BFCache_Responses, net.option.tip.Show_BFCache_Responses):
-# Net panel option (located in tab's option menu). If set to true, the Net panel also displays responses coming from
-# BFCache (back-forward cache). See also: https://developer.mozilla.org/En/Working_with_BFCache
-net.option.Show_BFCache_Responses=Show BFCache Responses
-net.option.tip.Show_BFCache_Responses=Also show responses from Back-Forward Cache
-
-# LOCALIZATION NOTE (script.Break_On_Next, script.Disable_Break_On_Next):
-# Tooltip used for the Break On Next button inside panel toolbar of the Script panel.
-# (breaking on next executed JavaScript statement)
-script.Break_On_Next=Break On Next
-script.Disable_Break_On_Next=Disable Break On Next
-
-ShowHttpHeaders=Show HTTP Headers
-
-# LOCALIZATION NOTE (plural.Request_Count2): Semicolon list of plural forms.
-# A label used in the Net panel. Displays the number of HTTP requests executed by the current page.
-# %1 = Number of requests
-# example: 21 requests
-plural.Request_Count2=%1$S request;%1$S requests
-
-FromCache=from cache
-StopLoading=Stop Loading
-net.tip.Stop_Loading=Stop loading the request
-LargeData=(Very Large Data)
-ShowComputedStyle=Show Computed Style
-StyleGroup-text=Text
-StyleGroup-background=Background
-StyleGroup-box=Box Model
-StyleGroup-layout=Layout
-StyleGroup-other=Other
-Dimensions=%S x %S
-
-# LOCALIZATION NOTE (CopyColor, css.tip.Copy_Color):
-# Context menu item for color values inside the CSS panel.
-# Copies the color value to the clipboard.
-CopyColor=Copy Color
-css.tip.Copy_Color=Copy the color to the clipboard
-
-# LOCALIZATION NOTE (CopyImageLocation, css.tip.Copy_Image_Location,
-# OpenImageInNewTab, css.tip.Open_Image_In_New_Tab):
-# Context menu items for images inside the CSS panel.
-# Allow copying the URL of an image to the clipboard and opening it in a new browser tab
-CopyImageLocation=Copy Image Location
-css.tip.Copy_Image_Location=Copy the URL of the image to the clipboard
-OpenImageInNewTab=Open Image in New Tab
-css.tip.Open_Image_In_New_Tab=Open the image in a new browser tab
-
-# LOCALIZATION NOTE (callstack.option.Omit_Object_Path_Stack, callstack.option.tip.Omit_Object_Path_Stack):
-# Stack side panel option (located in tab's option menu). If set to true,
-# the object path stack won't be displayed.
-OmitObjectPathStack=Omit Toolbar Stack
-callstack.option.tip.Omit_Object_Path_Stack=Do not display the object path stack
-
-Load_Original_Source=Load Original Source
-css.tip.Load_Original_Source=Discard the changes and load the original CSS
-
-# LOCALIZATION NOTE (Copy_Rule_Declaration, css.tip.Copy_Rule_Declaration):
-# Menu item label and tooltip used in CSS panel/Style side panel context menu.
-# Allows copying the current CSS rule including all its properties to the clipboard.
-Copy_Rule_Declaration=Copy Rule Declaration
-css.tip.Copy_Rule_Declaration=Copy the rule including all its properties to the clipboard
-
-# LOCALIZATION NOTE (Copy_Style_Declaration, css.tip.Copy_Style_Declaration):
-# Menu item label and tooltip used in CSS panel/Style side panel context menu.
-# Allows copying the current CSS rule's properties to the clipboard.
-Copy_Style_Declaration=Copy Style Declaration
-css.tip.Copy_Style_Declaration=Copy the rule's properties to the clipboard
-
-# LOCALIZATION NOTE (plural.Error_Count2): Semicolon list of plural forms.
-# A label used in for Firebug Start Button. Displays the number of JavaScript errors found by Firebug.
-# %1 = Number of errors
-# example: 111 Errors
-plural.Error_Count2=%1$S Error;%1$S Errors
-
-moduleManager.title=%S Panel is disabled
-moduleManager.desc3=Use Firebug's toolbar button to enable/disable all panels at once. Use each panel's tab menu for individual control.
-moduleManager.Enable=Enable
-
-# LOCALIZATION NOTE (moduleManager.scriptPanelNotAvailable): A description used in the Script panel
-# this is for a bug that appeared in Firefox 9. Related to bug712289
-moduleManager.scriptPanelNotAvailable=The Script panel is disabled in Firefox 9 running on 32 bit Mac or Linux due to a bug in the debugger service.<br/><b>Please use Firefox 10+</b> (recommended) or a version of Firefox prior to 9 on these Operating Systems.<br/><br/>We are sorry for the inconvenience!
-
-Suspend_Firebug=Suspend Firebug
-Resume_Firebug=Resume Firebug
-Reset_Panels_To_Disabled=Reset Panels To Disabled
-Open_Console=Open Console
-Open_Console_Tooltip=Open Trace Console for Firebug.
-Scope_Chain=Scope Chain
-
-# LOCALIZATION NOTE (With_Scope, Call_Scope, Window_Scope):
-# Names of kinds of scopes. Probably best left in English.
-# With: the scope inside of the with(obj) {} statement
-With_Scope=With
-# Call: the scope inside of a function eg function foo() { XXX here XXX var f = function() {} };
-Call_Scope=Call
-# Window: the scope inside of a Javascript window object.
-Window_Scope=Window
-
-Logs=Logs
-Options=Options
-Copy_Stack=Copy Stack
-Copy Exception=Copy Exception
-
-# LOCALIZATION NOTE (requestinfo.Blocking, requestinfo.Resolving, requestinfo.Connecting,
-# requestinfo.Sending, requestinfo.Waiting, requestinfo.Receiving, requestinfo.ContentLoad,
-# requestinfo.WindowLoad):
-# Net panel timing info labels. Displayed in a tooltip (aka time-info-tip) when hovering the
-# waterfall graph in the Net panel.
-requestinfo.Blocking=Blocking
-requestinfo.Resolving=DNS Lookup
-requestinfo.Connecting=Connecting
-requestinfo.Sending=Sending
-requestinfo.Waiting=Waiting
-requestinfo.Receiving=Receiving
-requestinfo.ContentLoad='DOMContentLoaded' (event)
-requestinfo.WindowLoad='load' (event)
-
-# LOCALIZATION NOTE (requestinfo.started.label, requestinfo.phases.label, requestinfo.timings.label):
-# Labels used within a tooltip (aka time-info-tip) for waterfall graph in the Net panel.
-requestinfo.started.label=Request start time since the beginning
-requestinfo.phases.label=Request phases start and elapsed time relative to the request start:
-requestinfo.timings.label=Event timing relative to the request start:
-
-search.Firebug_Search=Firebug Search
-
-# LOCALIZATION NOTE (search.Next, search.Previous, search.Case_Sensitive, search.Case_Insensitive,
-# search.Multiple_Files, search.Use_Regular_Expression):
-# Labels used within an options menu for the search box. This menu is displayed if the search box is focused.
-search.Next=Next
-search.tip.Next=Search for the next match
-search.Previous=Previous
-search.tip.Previous=Search for the previous match
-search.Case_Sensitive=Case Sensitive
-search.tip.Case_Sensitive=Consider the case when searching
-search.Case_Insensitive=Case Insensitive
-search.tip.Case_Insensitive=Ignore the case when searching
-search.Multiple_Files=Multiple Files
-search.tip.Multiple_Files=Search inside all files related to this panel
-search.Use_Regular_Expression=Use Regular Expression
-search.tip.Use_Regular_Expression=Interpret the entered string as a regular expression when searching
-
-# LOCALIZATION NOTE (search.html.CSS_Selector, search.net.Headers, search.net.Parameters, search.net.Response_Bodies,
-# search.script.Multiple_Files):
-# Labels used within an options menu for the search box. This menu is displayed if the search box is focused.
-# These labels are specific to a certain panel.
-search.html.CSS_Selector=CSS Selector
-search.net.Headers=Headers
-search.net.Parameters=Parameters
-search.net.Response_Bodies=Response Bodies
-search.net.tip.Response_Bodies=Search also in response bodies
-
-firebug.console.Persist=Persist
-firebug.console.Do_Not_Clear_On_Reload2=Do not clear the panel on page reload
-firebug.console.Show_All_Log_Entries=Show all log entries
-firebug.console.Errors=Errors
-firebug.console.Filter_by_Errors=Filter by errors
-firebug.console.Warnings=Warnings
-firebug.console.Filter_by_Warnings=Filter by warnings
-firebug.console.Info=Info
-firebug.console.Filter_by_Info=Filter by info
-firebug.console.Debug_Info=Debug Info
-firebug.console.Filter_by_Debug_Info=Filter by debug info
-
-firebug.Deactivate_Firebug=Deactivate Firebug
-firebug.tip.Deactivate_Firebug=Deactivate Firebug for the current website
-firebug.ShowFirebug=Open Firebug
-firebug.menu.tip.Open_Firebug=Show the Firebug UI
-firebug.HideFirebug=Hide Firebug
-firebug.menu.tip.Minimize_Firebug=Minimize Firebug, but keep it active
-firebug.FocusFirebug=Focus Firebug Window
-firebug.menu.tip.Focus_Firebug=Focus Detached Firebug Window
-
-firebug.menu.Enable_All_Panels=Enable All Panels
-firebug.menu.tip.Enable_All_Panels=Enable all activable panels
-firebug.menu.Disable_All_Panels=Disable All Panels
-firebug.menu.tip.Disable_All_Panels=Disable all activable panels
-firebug.menu.Customize_shortcuts=Customize Shortcuts
-firebug.menu.tip.Customize_Shortcuts=Customize Firebug's internal key bindings
-firebug.Options=Options
-firebug.menu.tip.Options=Global Firebug preferences
-firebug.menu.Enable_Accessibility_Enhancements=Enable Accessibility Enhancements
-firebug.menu.tip.Enable_Accessibility_Enhancements=Enable full control via keyboard and other accessibility enhancements
-firebug.menu.Activate_Same_Origin_URLs2=Activate For Same Origin URLs
-firebug.menu.tip.Activate_Same_Origin_URLs=Activate Firebug for URLs matching the same origin policy
-firebug.menu.Reset_All_Firebug_Options=Reset All Firebug Options
-firebug.menu.tip.Reset_All_Firebug_Options=Reset all Firebug preferences to their default values
-firebug.menu.Firebug_Online=Firebug Online
-firebug.menu.tip.Firebug_Online=Websites related to Firebug
-firebug.menu.Extensions=Firebug Extensions...
-firebug.menu.tip.Extensions=Download and Install Firebug Extensions
-firebug.menu.Vertical_Panels=Vertical Panels
-firebug.menu.tip.Vertical_Panels=Toggle the layout of the Firebug main and side panels
-firebug.menu.Show_Info_Tips=Show Info Tips
-firebug.menu.tip.Show_Info_Tips=Show popups with information about the hovered element
-firebug.Show_Error_Count=Show Error Count
-firebug.menu.tip.Show_Error_Count=Show the number of errors logged inside the console
-firebug.TextSize=Text Size
-firebug.menu.tip.Text_Size=Change the text size used in Firebug
-firebug.IncreaseTextSize=Increase Text Size
-firebug.menu.tip.Increase_Text_Size=Increase the text sizes used in Firebug
-firebug.DecreaseTextSize=Decrease Text Size
-firebug.menu.tip.Decrease_Text_Size=Decrease the text sizes used in Firebug
-firebug.NormalTextSize=Normal Text Size
-firebug.menu.tip.Normal_Text_Size=Reset the text size used in Firebug to the default
-firebug.Website=Firebug Website...
-firebug.menu.tip.Website=Open the official Firebug website
-firebug.help=Help...
-firebug.menu.tip.help=Open the page with links to pages explaining Firebug
-firebug.Documentation=Documentation...
-firebug.menu.tip.Documentation=Open the documentation about Firebug
-firebug.KeyShortcuts=Keyboard Shortcuts...
-firebug.menu.tip.Key_Shortcuts=Open the list of mouse and keyboard shortcuts available in Firebug
-firebug.Forums=Discussion Group...
-firebug.menu.tip.Forums=Open the discussion group site
-firebug.Issues=Issue Tracker...
-firebug.menu.tip.Issues=Open the issue tracker site
-firebug.Donate=Contribute...
-firebug.menu.tip.Donate=Open the contribution site
-firebug.About=About...
-firebug.menu.tip.About=Information about Firebug
-ProfileJavaScript=Profile JavaScript
-firebug.menu.tip.Profile_JavaScript=Profile JavaScript execution time
-firebug.Search=Search
-firebug.menu.tip.Search=Set focus to the search field
-
-# Firebug shortcuts
-firebug.shortcut.reenterCommand.label=Re-enter Command
-firebug.shortcut.tip.reenterCommand=Re-enter the last command into the Command Line
-firebug.shortcut.toggleInspecting.label=Toggle Inspecting
-firebug.shortcut.tip.toggleInspecting=Enable/disable the Inspector
-firebug.shortcut.toggleQuickInfoBox.label=Toggle Quick Info Box
-firebug.shortcut.tip.toggleQuickInfoBox=Enable/disable the display of a panel with information about the currently inspected element
-firebug.shortcut.toggleProfiling.label=Toggle Profiling
-firebug.shortcut.tip.toggleProfiling=Enable/disable the JavaScript Profiler
-firebug.shortcut.focusCommandLine.label=Focus Command Line
-firebug.shortcut.tip.focusCommandLine=Open Firebug and set the focus to the Command Line / toggle the Command Line Popup
-firebug.shortcut.focusFirebugSearch.label=Focus Firebug Search
-firebug.shortcut.tip.focusFirebugSearch=Set the focus to the search field
-firebug.shortcut.focusWatchEditor.label=Focus Watch Editor
-firebug.shortcut.tip.focusWatchEditor=Switch to the Script panel and set the focus to the field for entering a new watch expression
-firebug.shortcut.focusLocation.label=Focus Location
-firebug.shortcut.tip.focusLocation=Open the Location Menu
-firebug.shortcut.nextObject.label=Next Object
-firebug.shortcut.tip.nextObject=Select the next object in the element path of a panel
-firebug.shortcut.previousObject.label=Previous Object
-firebug.shortcut.tip.previousObject=Select the previous object in the element path of a panel
-firebug.shortcut.customizeFBKeys.label=Customize Firebug Keys
-firebug.shortcut.tip.customizeFBKeys=Open the Firebug Shortcut Bindings dialog
-firebug.shortcut.detachFirebug.label=Open Firebug in New Window
-firebug.shortcut.tip.detachFirebug=Detach Firebug into its own window
-firebug.shortcut.leftFirebugTab.label=Switch to left Firebug panel
-firebug.shortcut.tip.leftFirebugTab=Switch to the Firebug panel to the left
-firebug.shortcut.rightFirebugTab.label=Switch to right Firebug panel
-firebug.shortcut.tip.rightFirebugTab=Switch to the Firebug panel to the right
-firebug.shortcut.toggleFirebug.label=Open Firebug
-firebug.shortcut.tip.toggleFirebug=Open/Minimize Firebug UI
-firebug.shortcut.closeFirebug.label=Deactivate Firebug
-firebug.shortcut.tip.closeFirebug=Deactivate Firebug for the current website
-firebug.shortcut.previousFirebugTab.label=Previous Firebug panel
-firebug.shortcut.tip.previousFirebugTab=Switch to the previously selected Firebug panel
-firebug.shortcut.clearConsole.label=Clear Console
-firebug.shortcut.tip.clearConsole=Remove all logs from the console
-firebug.shortcut.openTraceConsole.label=Open Trace Console
-firebug.shortcut.tip.openTraceConsole=Open the FBTrace Console
-firebug.shortcut.navBack.label=Go Back
-firebug.shortcut.tip.navBack=Switch to the previous panel or location list item of the navigation history
-firebug.shortcut.navForward.label=Go Forward
-firebug.shortcut.tip.navForward=Switch to the next panel or location list item of the navigation history
-firebug.shortcut.increaseTextSize.label=Increase Text Size
-firebug.shortcut.tip.increaseTextSize=Increase the text sizes used in Firebug
-firebug.shortcut.decreaseTextSize.label=Decrease Text Size
-firebug.shortcut.tip.decreaseTextSize=Decrease the text sizes used in Firebug
-firebug.shortcut.normalTextSize.label=Normal Text Size
-firebug.shortcut.tip.normalTextSize=Reset the text sizes used in Firebug to the default
-firebug.shortcut.help.label=Open help
-firebug.shortcut.tip.help=Open the page answering the frequently asked questions
-firebug.shortcut.toggleBreakOn.label=Toggle Break On ...
-firebug.shortcut.tip.toggleBreakOn=Enable/disable stopping the script execution on specific events occurring inside a panel
-
-firebug.panel_selector=Panel Selector
-
-customizeShortcuts=Firebug Shortcut Bindings
-
-# A11y Chrome Labels (not visible, spoken by screen readers)
-a11y.labels.panel_tools=panel tools
-a11y.labels.firebug_panels=Firebug panels
-a11y.labels.firebug_side_panels=Firebug side panels
-a11y.labels.firebug_window=Firebug window
-a11y.labels.firebug_status=Firebug status
-a11y.labels.reset=reset
-a11y.labels.reset_shortcut=reset %S shortcut
-aria.labels.inactive_panel=inactive panel
-
-# A11y panelNode labels (not visible, spoken by screen readers)
-a11y.labels.log_rows=log rows
-a11y.labels.call_stack=call stack
-a11y.labels.document_structure=document structure
-a11y.labels.title_panel= %S panel
-a11y.labels.title_side_panel= %S side panel
-a11y.labels.cached=cached
-aria.labels.stack_trace=stack trace
-
-# A11y Domplate labels (not visible, spoken by screen readers)
-a11y.layout.padding=padding
-a11y.layout.border=border
-a11y.layout.margin=margin
-a11y.layout.position=position
-a11y.layout.position_top=position top
-a11y.layout.position_right=position right
-a11y.layout.position_bottom=position bottom
-a11y.layout.position_left=position left
-a11y.layout.margin_top=margin top
-a11y.layout.margin_right=margin right
-a11y.layout.margin_bottom=margin bottom
-a11y.layout.margin_left=margin left
-a11y.layout.border_top=border top
-a11y.layout.border_right=border right
-a11y.layout.border_bottom=border bottom
-a11y.layout.border_left=border left
-a11y.layout.padding_top=padding top
-a11y.layout.padding_right=padding right
-a11y.layout.padding_bottom=padding bottom
-a11y.layout.padding_left=padding left
-a11y.layout.top=top
-a11y.layout.right=right
-a11y.layout.bottom=bottom
-a11y.layout.left=left
-a11y.layout.width=width
-a11y.layout.height=height
-a11y.layout.size=size
-a11y.layout.z-index=z-index
-a11y.layout.box-sizing=box-sizing
-a11y.layout.clientBoundingRect=bounding client rect
-a11y.descriptions.press_enter_to_edit_values=Press Enter followed by Tab to edit individual values
-a11y.labels.style_rules=style rules
-aria.labels.inherited_style_rules=inherited style rules
-a11y.labels.computed_styles=computed styles
-a11y.labels.dom_properties=DOM properties
-
-# LOCALIZATION NOTE:
-# Used by a11y. Not directly visible in the UI, intended for screen readers.
-# Describe contents of inline editor fields
-a11y.labels.inline_editor=inline editor
-a11y.labels.value_for_attribute_in_element=value for %S attribute in %S element
-a11y.labels.attribute_for_element=attribute for %S element
-a11y.labels.text_contents_for_element=text contents for %S element
-a11y.labels.defined_in_file=defined in %S
-a11y.labels.declarations_for_selector=style declarations for "%S" selector
-a11y.labels.property_for_selector=CSS property for selector: %S
-a11y.labels.value_property_in_selector=%S property value for selector %S
-a11y.labels.css_selector=CSS selector
-a11y.labels.source_code_for_file=source code for file %S
-a11y.labels.press_enter_to_add_new_watch_expression=press enter to add a new watch expression
-
-# LOCALIZATION NOTE (a11y.labels.overridden):
-# Used by a11y. Not directly visible in the UI, intended for screen readers.
-# Indicates, that a style property is overridden by selector with higher specificity
-a11y.labels.overridden=overridden
-
-# LOCALIZATION NOTE (a11y.hasConditionalBreakpoint, a11y.hasDisabledBreakpoint):
-# Used by a11y. Not directly visible in the UI, intended for screen readers.
-# Existence and state of a breakpoint
-a11y.updates.has_conditional_break_point=has conditional break point
-a11y.updates.has_disabled_break_point=has disabled break point
-
-# LOCALIZATION NOTE (a11y.updates.script_suspended_on_line_in_file): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# first %S = Line number, second %S = Function name, third %S = File name
-a11y.updates.script_suspended_on_line_in_file=Script suspended on line %S in %S, file %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_logrows): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a console panel search
-# first %S = String key the user is looking for, second %S = Number of rows that contain the matched text
-# examples: Match found for "test" in 17 log rows
-a11y.updates.match_found_in_logrows=Match found for "%S" in %S log rows
-
-# LOCALIZATION NOTE (a11y.updates.match_found_for_on_line): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a script panel search
-# first %S = String key the user is looking for, second $S = Line number the match was found on, third %S = File name the match was found in
-# examples: Match found for "window.alert" on line 322 in utilities.js
-a11y.updates.match_found_for_on_line=Match found for "%S" on line %S in %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_element): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing an HTML panel search (if it is found in an element node)
-# first %S = Matched search string, second %S = HTML element name containing the matched string, third %S = XPATH string specifying the matched element
-# example: Match found for "obj" in object element at /html/body/object[2]
-a11y.updates.match_found_in_element=Match found for "%S" in %S element at path %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_attribute): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing an HTML  panel search (if it is found in an attribute node)
-# first %S = Search string that was matched, second %S = Attribute name, third %S = Attribute value,
-# fourth %S = HTML element name containing, fifth %S = XPATH string specifying  the matched element
-# example: Match found for "abindex" in tabindex="0" in span element at /html/body/span[2]
-a11y.updates.match_found_in_attribute=Match found for "%S" in attribute %S=%S of %S element at path %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_text_content): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing an HTML panel search (if it is found in a text element's contents)
-# first %S = Matched search string, second %S = Element's text content,
-# third %S = HTML element name containing, fourth %S = XPATH string specifying  the matched element
-# example: Match found for "Firebug Rocks!" in h2 element at /html/body/h2[2]
-a11y.updates.match_found_in_text_content=Match found for "%S" in text content: %S of %S element at path %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_selector): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a CSS panel search (if it is found in a selector)
-# first %S = Matched search string, second %S = Selector, in which the match was found
-# example: Match found for "main" in #mainContent h2 {
-a11y.updates.match_found_in_selector=Match found for "%S" in selector %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_style_property): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a CSS panel search (if it is found in a style declaration)
-# first %S = Matched search string, second %S = Style property, in which the match was found
-# third %S = Selector the style declaration applies to
-# example: Match found for background in style declaration background-repeat: "repeat-x"; in selector #mainContent {
-a11y.updates.match_found_in_style_declaration=Match found for "%S" in style declaration %S in selector %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_dom_property): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a DOM panel search
-# first %S = Matched search string, second %S = DOM property, in which the match was found
-# examples: Match found for "time" in DOM property _starttime
-a11y.updates.match_found_in_dom_property=Match found for "%S" in DOM property %S
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_net_row): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a Net panel search
-# first %S = Matched search string, second %S = File name associated to the row, in which the match was found,
-# third %S = Column, in which the match was found, fourth %S = Column value
-# examples: Match found for "792" in GET loading_animation.gif, timeline: 792 ms
-a11y.updates.match_found_in_net_row=Match found for "%S" in %S, %S: %S;
-
-# LOCALIZATION NOTE (a11y.updates.match_found_in_net_summary_row): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Describes the match found when performing a Net panel search (if it is found in the Net summary row)
-# first %S = Matched search string, second %S = Column value, in which the match was found
-# examples: Match found for "05" in net summary row: 4.05s
-a11y.updates.match_found_in_net_summary_row=Match found for "%S" in net summary row: %S
-
-# LOCALIZATION NOTE (a11y.updates.no_matches_found): Used by a11y. Not directly
-# visible in the UI, intended for screen readers.
-# Indicates that the searched string was not matched
-# %S = Search string
-# examples: No matched found for "wefkhwefkgwekhjgjh"
-a11y.updates.no_matches_found=no matches found for "%S"
-
-# LOCALIZATION NOTE (confirmation.Reset_All_Firebug_Options):
-# Text in the confirmation dialog shown when the options should be reset
-confirmation.Reset_All_Firebug_Options=Are you sure to reset all Firebug options to the default state?
-
-# LOCALIZATION NOTE (confirmation.Edit_CSS_Source):
-# If the user has changed the CSS and clicks on the Source Edit button, a confirmation dialog is
-# displayed containing the following message
-confirmation.Edit_CSS_Source=Your existing CSS edits will be discarded.\nAre you sure you want to edit the source?
-
-# Console messages
-warning.Console_must_be_enabled=Console must be enabled
-warning.Command_line_blocked?=Command line blocked?
-message.Reload_to_activate_window_console=Reload to activate window console
-
-# LOCALIZATION NOTE (message.sourceNotAvailableFor, message.The_resource_from_this_URL_is_not_text):
-# An error message displayed in the Script panel when a source can't be displayed
-# for specific URL.
-# examples: Reload the page to get source for: http://www.example.com/script.js
-# examples: The resource from this URL is not text: http://www.example.com/script.js
-message.sourceNotAvailableFor=Reload the page to get source for
-message.The_resource_from_this_URL_is_not_text=The resource from this URL is not text
-
-# LOCALIZATION NOTE (firebug.history.Go_back_to_this_script, firebug.history.Go_forward_to_this_script,
-# firebug.history.Stay_on_this_page): Tooltips for menu items in the history popup menu.
-firebug.history.Go_back_to_this_panel=Go back to this panel
-firebug.history.Stay_on_this_panel=Stay on this panel
-firebug.history.Go_forward_to_this_panel=Go forward to this panel
-
-# LOCALIZATION NOTE (firebug.history.Go_back_one_script, firebug.history.Go_forward_one_script):
-# Tooltips for back/forward buttons on the Script panel toolbar.
-firebug.history.Go_back=Go back
-firebug.history.Go_forward=Go forward
-
-# LOCALIZATION NOTE (script.warning.inactive_during_page_load, script.suggestion.inactive_during_page_load):
-# Message displayed in the Script panel, if the debugger is inactive during page load.
-# The suggestion message represents an advice how to solve the problem. It contains a link enclosed in <a> and </a>
-# to reload the sources
-script.warning.inactive_during_page_load=Script Panel was inactive during page load
-script.suggestion.inactive_during_page_load2=<a>Reload</a> to see all sources
-
-# LOCALIZATION NOTE (script.warning.javascript_not_enabled, script.suggestion.javascript_not_enabled):
-# This message is displayed within the Script panel if javascript is not enabled.
-# The suggestion message represents an advice how to solve the problem.
-script.warning.javascript_not_enabled=Javascript is not enabled
-script.suggestion.javascript_not_enabled=See Firefox > Tools > Options > Content > Enable Javascript
-
-# LOCALIZATION NOTE (script.button.enable_javascript): Title for a link, that is displayed on
-# the Script panel, if Javascript is disabled. This link allows to enable it.
-script.button.enable_javascript=Enable JavaScript and Refresh
-
-# LOCALIZATION NOTE (script.warning.all_scripts_filtered, script.suggestion.all_scripts_filtered):
-# Message displayed in the Script panel, if no JavaScripts are available for the current page.
-# The suggestion message represents an advice how to solve the problem.
-script.warning.all_scripts_filtered=All scripts were filtered
-script.suggestion.all_scripts_filtered=See the script filter setting in the panel toolbar
-
-# LOCALIZATION NOTE (script.warning.no_system_source_debugging, script.suggestion.no_system_source_debugging):
-# Message displayed in the Script panel, if the page opened is accessed via a chrome URL.
-# The suggestion message represents an advice how to solve the problem.
-script.warning.no_system_source_debugging=System sources can't be debugged
-script.suggestion.no_system_source_debugging=Firebug currently can't be used to debug user agent internal files. See <a>issue 5110</a> for the reason.
-
-# LOCALIZATION NOTE (script.warning.debugger_active, script.suggestion.debugger_active):
-# Message displayed in the Script panel, if the page doesn't include any JavaScript.
-# The suggestion message represents an advice how to solve the problem.
-script.warning.no_javascript=No Javascript on this page
-script.suggestion.no_javascript2=If <script> tags have a "type" attribute, it should equal "text/javascript" or "application/javascript". Also scripts must be parsable (syntactically correct).
-
-# LOCALIZATION NOTE (script.warning.debugger_active, script.suggestion.debugger_active):
-# Message displayed in the Script panel, if the page is opened in different tabs/windows and
-# the debugger is already halted at a breakpoint inside another tab/window.
-# The suggestion message represents an advice how to solve the problem.
-script.warning.debugger_active=Debugger is already active
-script.suggestion.debugger_active=The debugger is currently halted at a breakpoint on another page.
-script.button.Go_to_that_page=Go to that page
-
-script.warning.debugger_not_activated=Debugger not activated
-script.suggestion.debugger_not_activated=Debugger not activated
-
-# firebug.dtd
-firebug.Firebug=Firebug
-firebug.Close=Close
-firebug.View=View
-firebug.Help=Help
-firebug.Run=Run
-firebug.Copy=Copy
-firebug.History=History
-firebug.Run_the_entered_command=Run the entered command
-firebug.Clear_the_Command_Editor=Clear the Command Editor
-firebug.Copy_the_script_as_a_bookmarklet=Copy the script as a bookmarklet
-firebug.Insert_a_previously_entered_command=Insert a previously entered command
-firebug.AlwaysOpenInWindow=Always Open in New Window
-firebug.OpenWith=Open With Editor
-firebug.menu.tip.Open_With=Open the content in an external editor
-firebug.Permissions=Sites...
-firebug.Configure_Editors=Configure Editors
-
-script.tip.Script_Type=Filter on script type
-script.tip.Script_Filter_Static=Just display scripts loaded together with the page
-script.tip.Script_Filter_Evals=Display scripts loaded together with the page and scripts created via eval()
-script.tip.Script_Filter_Events=Display scripts loaded together with the page, scripts created via eval() and event listeners
-script.tip.Script_Filter_All=Display all kinds of scripts
-
-# LOCALIZATION NOTE (firebug.labelWithShortcut):
-# Label for an item incl. assigned keyboard shortcut
-# example: Continue (F8)
-# example: Step Out (Shift+F11)
-firebug.labelWithShortcut=%S (%S)
-
-# LOCALIZATION NOTE (firebug.Rerun, script.tip.Rerun, firebug.Continue, script.tip.Continue,
-# firebug.StepOver, script.tip.Step_Over, firebug.StepInto, script.tip.Step_Into,
-# firebug.StepOut, script.tip.Step_Out, firebug.RunUntil, script.tip.Run_Until):
-# Labels used for debugger options available in the Script panel.
-script.Rerun=Rerun
-script.tip.Rerun=Rerun the current function call stack
-script.Continue=Continue
-script.tip.Continue=Continue the JavaScript execution
-script.Step_Over=Step Over
-script.tip.Step_Over=Execute the next command
-script.Step_Into=Step Into
-script.tip.Step_Into=Execute the next command and jump into functions
-script.Step_Out=Step Out
-script.tip.Step_Out=Execute the rest of the function's body and returns to its caller
-firebug.RunUntil=Run to This Line
-script.tip.Run_Until=Execute the JavaScript until the specified line
-
-# LOCALIZATION NOTE (firebug.Inspect, firebug.InspectElement, firebug.InspectElementWithFirebug)
-# Labels for Firebug Inspector. Used by a button (available in Firefox Customize Toolbar dialog)
-# and also page context menu. As soon as built-in inspector is having its own "Inspect Element"
-# Firebug should start using "Inspect Element with Firebug" to distinguish itself.
-firebug.Inspect=Inspect
-firebug.InspectElement=Inspect Element
-firebug.InspectElementWithFirebug=Inspect Element with Firebug
-
-firebug.BreakOnErrors=Break on Errors
-firebug.InspectTooltip=Click an element in the page to inspect
-firebug.EditHTMLTooltip=Edit this HTML
-firebug.Profile=Profile
-firebug.Clear=Clear
-firebug.ClearConsole=Clear Console
-firebug.ClearTooltip=Clear the console
-firebug.All=All
-firebug.Images=Images
-firebug.Flash=Flash
-
-# editors.dtd
-editors.Configured_Firebug_Editors=Configured Firebug Editors
-editors.Editor=Editor
-editors.Executable=Executable
-editors.Launch_Arguments=Launch Arguments
-editors.Add=Add
-editors.Remove=Remove
-editors.Change=Change
-editors.Move_Up=Move Up
-editors.Close=Close
-editors.Browse=Browse...
-changeEditor.Editor_Configuration=Editor Configuration
-changeEditor.Name=Name:
-changeEditor.Executable=Executable:
-changeEditor.CmdLine=Arguments:
-changeEditor.Supplied_arguments=Arguments supplied by Firebug:
-changeEditor.URL_of_file=URL of the file (if %url is not present, %file will be added by default)
-changeEditor.Path_to_local_file=Path to the local file (or to the temporary copy)
-changeEditor.Line_number=Line number (if available)
-changeEditor.Invalid_Application_Path=Invalid Application Path
-changeEditor.Application_does_not_exist=The specified application doesn't exist!
-
-# LOCALIZATION NOTE (firebug.Edit, firebug.css.sourceEdit, firebug.css.liveEdit,
-# firebug.EditCSSTooltip, firebug.css.sourceEdit.tooltip, firebug.css.liveEdit.tooltip)
-# Used in the CSS panel for the Edit button.
-firebug.Edit=Edit
-firebug.css.sourceEdit=Source Edit
-firebug.css.sourceEdit.tooltip=Edit stylesheet source as loaded by the browser
-firebug.css.liveEdit=Live Edit
-firebug.css.liveEdit.tooltip=Edit CSS extracted from the browser
-firebug.EditCSSTooltip=Edit this stylesheet
-
-# LOCALIZATION NOTE (firebug.activation.privateBrowsingMode):
-# Message displayed in the Console panel when the private browsing mode is on.
-# (in Firefox 4+ it's 'Start Private Browsing')
-firebug.activation.privateBrowsingMode=Sites are not remembered in Private Browsing Mode
-
-# LOCALIZATION NOTE (firebug.breakpoint.showBreakNotifications):
-# Label used within Script panel's options menu. Represents an option, that can be used
-# to switch of the break notifications.
-firebug.breakpoint.showBreakNotifications=Show Break Notifications
-firebug.breakpoint.tip.Show_Break_Notifications=Show a notification box, when a Break On ... feature or the debugger; keyword stopped the JavaScript execution
-
-# LOCALIZATION NOTE (firebug.activation.privateBrowsingMode):
-# Message displayed in a break notification popup next to a checkbox.
-# Includes a link enclosed in <a> and </a> to open the panel's options menu.
-firebug.breakpoint.doNotShowBreakNotification2=You can disable/enable break notifications in <a>panel's tab menu</a>.
-
-# LOCALIZATION NOTE (firebug.bon.cause.disableDebuggerKeyword2, firebug.bon.tooltip.disableDebuggerKeyword2):
-# Message displayed in a break notification popup when break on debugger; keyword happens.
-# The keyword can be disabled by creating a disabled breakpoint on the same line.
-# The other label is used for a tooltip on the action button.
-firebug.bon.cause.disableDebuggerKeyword2=Clicking the 'Disable' button overrides 'debugger' with a disabled breakpoint.
-firebug.bon.tooltip.disableDebuggerKeyword2=Creates a disabled breakpoint
-
-# LOCALIZATION NOTE (firebug.bon.scriptPanelNeeded): A label used by 'Break On Next' button
-# This feature needs the Script panel enabled in order to work.
-firebug.bon.scriptPanelNeeded=(the Script panel must be enabled to use this feature)
-
-# LOCALIZATION NOTE (firebug.dom.noChildren):
-# Message displayed in the DOM panel in cases, in which there are no children objects
-# and so nothing to display.
-firebug.dom.noChildren2=There are no child objects
-
-# LOCALIZATION NOTE (firebug.reps.more): Label shown when the displayed array/list has
-# more elements then displayed on the screen. "..." is automatically appended.
-firebug.reps.more=more
-
-# LOCALIZATION NOTE (firebug.reps.reference): Label shown when the displayed array/list has
-# a reference to itself (a cycle).
-firebug.reps.reference=Cycle reference detected
-
-# LOCALIZATION NOTE (firebug.storage.totalItems): Semicolon list of plural forms.
-# Label used in the DOM panel for local/session/global storage.
-# It's informing the user about the number of items in the storage.
-# %1 = Number of storage items
-# example: 1 item in Storage
-# example: 2 items in Storage
-firebug.storage.totalItems=%1$S item in Storage;%1$S items in Storage
-
-# LOCALIZATION NOTE (firebug.reps.table.ObjectProperties):
-# Label used in the header of the output of the console.table() method inside the Console panel,
-# if an object is passed into it.
-firebug.reps.table.ObjectProperties=Object Properties
-
-# LOCALIZATION NOTE (firebug.completion.empty):
-# Label used in the command line by the auto-complete function.
-# Displayed, if there are no possible completions.
-firebug.completion.empty=(no completions)
-
-# LOCALIZATION NOTE (firebug.failedToPreviewObjectURL, firebug.failedToPreviewImageURL):
-# Label used in an image preview infotip in the HTML panel when hovering over an <img> element
-# when loading of the given URL fails. The firebug.failedToPreviewObjectURL is specifically used
-# for moz-filedata (HTML5),
-# see: https://developer.mozilla.org/en/Using_files_from_web_applications#Example.3a_Using_object_URLs_to_display_images
-firebug.failedToPreviewObjectURL=The URL object has been most likely revoked using revokeObjectURL method.
-firebug.failedToPreviewImageURL=Failed to load the given URL
-
-# LOCALIZATION NOTE (firebug.Memory_Profiler_Started):
-# Message logged into the Console panel when memory profiler session starts.
-firebug.Memory_Profiler_Started=Memory Profiler Started
-
-# LOCALIZATION NOTE (firebug.Objects_Added_While_Profiling):
-# Title for a group (logged into the Console panel), that contains a list of new objects
-# allocated within memory profiler session.
-firebug.Objects_Added_While_Profiling=Objects Added While Profiling
-
-# LOCALIZATION NOTE (firebug.Memory_Profiler_Results):
-# Message used within the Console panel when the memory profiler session is finished.
-firebug.Memory_Profiler_Results=Memory Profiler Results
-
-# LOCALIZATION NOTE (firebug.Entire_Session):
-# Label used within memory profiler results to mark summary information for entire session.
-firebug.Entire_Session=Entire Session
-
-# LOCALIZATION NOTE (console.msg.nothing_to_output):
-# Used by the console panel if a Console API is used without any argument.
-console.msg.nothing_to_output=(nothing to output)
-
-# LOCALIZATION NOTE (console.msg.nothing_to_output):
-# Used by the console panel if an empty string is passed into a Console API.
-console.msg.an_empty_string=(an empty string)
-
-# LOCALIZATION NOTE (cookies.legacy.firecookie_detected, cookies.legacy.uninstall, cookies.legacy.uninstall_and_restart):
-# A message and labels used when Firecookie is detected. This extension has been integrated with
-# Firebu and should not be installed together with Firebug 1.10+
-cookies.legacy.firecookie_detected=Firecookie add-on is detected. This add-on has been integrated with Firebug 1.10 by default. To avoid a collision you need to uninstall Firecookie. \n\nYou must restart to finish uninstalling the add-on.
-cookies.legacy.uninstall=Uninstall
-cookies.legacy.uninstall_and_restart=Uninstall && Restart
-
-# LOCALIZATION NOTE (firebug.cmd.help.values, console.cmd.help_title_desc):
-console.cmd.help_title=Command Line API
-console.cmd.help_title_desc=Press F1 to open online Firebug help
-
-# LOCALIZATION NOTE (console.cmd.help.$): Description for Command Line API that is logged
-# in the the Console panel if the user types "help" into the command line.
-console.cmd.help.$=Returns a single element with the given id.
-console.cmd.help.$$=Returns an array of elements that match the given CSS selector.
-console.cmd.help.$x=Returns an array of elements that match the given XPath expression.
-console.cmd.help.dir=Prints an interactive listing of all properties of the object. This looks identical to the view inside the DOM panel.
-console.cmd.help.dirxml=Prints the XML source tree of an HTML or XML element. This looks identical to the view inside the HTML panel. You can click on any node to inspect it in the HTML panel.
-console.cmd.help.cd=By default, command line expressions are relative to the top-level window of the page. cd() allows you to use the window of a frame in the page instead.
-console.cmd.help.clear=Clears the console.
-console.cmd.help.copy=Copies the given parameter to the clipboard. This can be a return value of a function or an object.
-console.cmd.help.inspect=Inspects an object in the most suitable panel, or the panel identified by the optional second argument. The available panel names are "html", "stylesheet", "script", and "dom".
-console.cmd.help.keys=Returns an array containing the names of all properties of the object.
-console.cmd.help.values=Returns an array containing the values of all properties of the object.
-console.cmd.help.debug=Adds a breakpoint on the first line of a function.
-console.cmd.help.undebug=Removes the breakpoint on the first line of a function.
-console.cmd.help.monitor=Turns on logging for all calls to a function.
-console.cmd.help.unmonitor=Turns off logging for all calls to a function.
-console.cmd.help.monitorEvents=Turns on logging for all events dispatched to an object. The optional second argument may define specific events or event types to log. The available event types are "composition", "contextmenu", "drag", "focus", "form", "key", "load", "mouse", "mutation", "paint", "scroll", "text", "ui", "xul", and "clipboard".
-console.cmd.help.unmonitorEvents=Turns off logging for all events dispatched to an object. The optional second argument may define specific events or event families, for which to turn logging off.
-console.cmd.help.profile=Turns on the JavaScript profiler. The optional second argument contains the text to be printed in the header of the profile report.
-console.cmd.help.profileEnd=Turns off the JavaScript profiler and prints its report.
-console.cmd.help.table=Allows to log provided data using tabular layout. The method takes one required parameter that represents table-like data (array of arrays or list of objects). The optional second parameter can be used to specify columns and/or properties to be logged.
-console.cmd.help.$0=Represents the last element selected via the Inspector.
-console.cmd.help.$1=Represents the second last element selected via the Inspector.
-console.cmd.help.$n=Returns one of the 5 last elements selected via the Inspector. This method takes one required parameter, which represents the index of the element (starting at 0).
-console.cmd.help.help=Displays help for all available commands.
+Firebug=Firebug
+
+# LOCALIZATION NOTE (WindowTitle): Title of detached Firebug window.
+# %S = Title of the associated web page.
+# examples: Firebug - Google
+WindowTitle=Firebug - %S
+
+# Panel titles
+Panel-console=Console
+panel.tip.console=Allows observing console messages and executing JavaScript commands
+Panel-net=Net
+panel.tip.net=Allows analyzing the network traffic
+Panel-html=HTML
+panel.tip.html=Allows inspecting and manipulating the DOM nodes
+Panel-stylesheet=CSS
+panel.tip.stylesheet=Allows inspecting and manipulating the CSS stylesheets
+Panel-script=Script
+panel.tip.script=Allows debugging of JavaScript
+Panel-dom=DOM
+panel.tip.dom=Allows inspecting and manipulating the DOM properties
+Panel-css=Style
+panel.tip.css=Allows inspecting and manipulating the CSS rules of the selected DOM node
+Panel-computed=Computed
+panel.tip.computed=Allows inspecting the computed CSS values of the selected DOM node
+Panel-layout=Layout
+panel.tip.layout=Allows inspecting and manipulating the layout data of the selected DOM node
+Panel-domSide=DOM
+panel.tip.domSide=Allows inspecting and manipulating the DOM properties of the selected DOM node
+Panel-watches=Watch
+panel.tip.watches=Allows inspecting the JavaScript variables available in the current stack frame and defining watch expressions
+Panel-breakpoints=Breakpoints
+panel.tip.breakpoints=Allows manipulating the set breakpoints
+Panel-callstack=Stack
+panel.tip.callstack=Allows observing the current JavaScript call stack
+Panel-scopes=Scopes
+
+firebug.DetachFirebug=Open Firebug in New Window
+firebug.AttachFirebug=Attach Firebug to Browser Window
+
+# LOCALIZATION NOTE (pluralRuleFirebugs): Custom plural rule for this locale.
+# If there is no Firebug translation for the current browser locale, this value
+# will be used instead of the one in chrome://global/locale/intl.properties
+# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
+pluralRule=1
+
+# LOCALIZATION NOTE (plural.Total_Firebugs2): Semicolon list of plural forms.
+# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
+# Used in a tooltip that is displayed for the Firebug icon located within Firefox toolbar.
+# Displays the number of pages with Firebug activated.
+# %1 = number of Firebug instances activated
+# example: 2 Total Firebugs
+plural.Total_Firebugs2=%1$S Total Firebug;%1$S Total Firebugs
+
+# LOCALIZATION NOTE (startbutton.tip.deactivated):
+# Used in a tooltip that is displayed for the Firebug icon located within Firefox toolbar.
+# Displays the deactivated status of Firebug
+startbutton.tip.deactivated=Deactivated
+
+# LOCALIZATION NOTE (panel.status): Label showing the status of an activable panel
+# inside a tooltip when hovering the Start Button. Will be shown for each panel.
+# first %S = panel name
+# second %S = panel activation status
+# example: Console: On
+panel.status=%S: %S
+
+inBrowser=In Browser
+minimized=Minimized
+enablement.for_all_pages=for all pages
+enablement.on=On
+enablement.off=Off
+enablement.Panel_activation_status=Panel activation status:
+none=Closed
+Firebug_-_inactive_for_current_website=Firebug - inactive for current website
+Activate_Firebug_for_the_current_website=Activate Firebug for the current website
+Minimized=Minimized
+Minimize_Firebug=Minimize Firebug
+On_for_all_web_pages=On for All Web Pages
+firebug.menu.tip.On_for_all_Web_Sites=Activate Firebug by default for all websites
+firebug.menu.Clear_Activation_List=Clear Activation List
+firebug.menu.tip.Clear_Activation_List=Clear the list of websites Firebug is activated for
+
+firebug.menu.Detached=Detached
+firebug.menu.tip.Detached=Detach Firebug into its own window
+firebug.menu.Top=Top
+firebug.menu.tip.Top=Align Firebug to the top of the user agent window
+firebug.menu.Bottom=Bottom
+firebug.menu.tip.Bottom=Align Firebug to the bottom of the user agent window
+firebug.menu.Left=Left
+firebug.menu.tip.Left=Align Firebug to the left of the user agent window
+firebug.menu.Right=Right
+firebug.menu.tip.Right=Align Firebug to the right of the user agent window
+firebug.uiLocation=Firebug UI Location
+firebug.menu.tip.UI_Location=Position of the Firebug user interface
+
+# LOCALIZATION NOTE (firebug_options): Tooltip text used for Firebug icon menu (them left
+# most button on Firebug main toolbar)
+firebug_options=Firebug Options
+
+# LOCALIZATION NOTE (firebug.Show_All_Panels): Menu item label used in 'list of all panels'
+# menu (available on Firebug's tab bar).
+firebug.Show_All_Panels=Show All Panels
+
+console.option.Show_Command_Line=Show Command Line
+console.option.tip.Show_Command_Line=Focus the Command Line / Show the Command Line Popup
+
+# Console panel options (located in tab's option menu)
+ShowJavaScriptErrors=Show JavaScript Errors
+console.option.tip.Show_JavaScript_Errors=Log JavaScript error messages into the console
+ShowJavaScriptWarnings=Show JavaScript Warnings
+console.option.tip.Show_JavaScript_Warnings=Log JavaScript warning messages into the console
+ShowCSSErrors=Show CSS Errors
+console.option.tip.Show_CSS_Errors=Log CSS error messages into the console
+ShowXMLErrors=Show XML Errors
+console.option.tip.Show_XML_Errors=Log XML error messages into the console
+ShowStackTrace=Show Stack Trace With Errors
+console.option.tip.Show_Stack_Trace=Show stack trace information for error messages
+ShowXMLHttpRequests=Show XMLHttpRequests
+console.option.tip.Show_XMLHttpRequests=Log XMLHttpRequests into the console
+ShowChromeErrors=Show Chrome Errors
+console.option.tip.Show_System_Errors=Log program and add-on internal error messages into the console
+ShowChromeMessages=Show Chrome Messages
+console.option.tip.Show_System_Messages=Log program and add-on internal messages into the console
+ShowExternalErrors=Show External Errors
+console.option.tip.Show_External_Errors=Log error messages coming from external sources into the console
+ShowNetworkErrors=Show Network Errors
+console.option.tip.Show_Network_Errors=Log network error messages into the console
+JavascriptOptionsStrict=Strict Warnings (performance penalty)
+console.option.tip.Show_Strict_Warnings=Log also strict warnings into the console
+
+Command_History=Command History
+console.option.Show_Command_Editor=Show Command Editor
+console.option.tip.Show_Command_Editor=Switch to the Command Editor
+
+commandLineShowCompleterPopup=Show Completion List Popup
+console.option.tip.Show_Completion_List_Popup=Show the popup for command auto-completion
+
+Assertion=Assertion Failure
+
+# LOCALIZATION NOTE (Line, LineAndCol): Used at many places in the UI. Displays the location
+# of an error, message, etc. within a source of a web page.
+# first %S = File name, second %S = Line number
+# examples: somePage.htm (line 64)
+# examples: somePage.htm (line 64, column 53)
+Line=%S (line %S)
+LineAndCol=%S (line %S, col %S)
+
+InstanceLine=%S #%S (line %S)
+StackItem=%S (%S line %S)
+SystemItem=<System>
+
+# LOCALIZATION NOTE (InspectInPanel): Menu item label used in a various context menus.
+# For example, right clicking on an element in the HTML panel offers an action to inspect
+# clicked element in the DOM panel.
+# %S = Target panel title
+# examples: Inspect in DOM Panel
+panel.Inspect_In_Panel=Inspect in %S Panel
+panel.tip.Inspect_In_Panel=Switch to the %S panel to examine the object there
+
+NoName=(no name)
+
+# LOCALIZATION NOTE (jsdIScript): an internal Firefox object used for debugging Firebug
+# do not translate.
+# %S = jsdIScript.tag
+jsdIScript=jsdIScript %S
+
+# LOCALIZATION NOTE (html.option.Show_Full_Text, html.option.tip.Show_Full_Text):
+# HTML panel option (located in tab's option menu). If set to true, contents
+# of an element will not be cropped
+ShowFullText=Show Full Text
+html.option.tip.Show_Full_Text=Don't crop element contents
+
+# LOCALIZATION NOTE (html.option.Show_Whitespace, html.option.tip.Show_Whitespace):
+# HTML panel option (located in tab's option menu). If set to true, whitepace inside of
+# nodes will be shown
+ShowWhitespace=Show Whitespace
+html.option.tip.Show_Whitespace=Show Whitespace inside of nodes
+
+# LOCALIZATION NOTE (html.option.Show_Comments, html.option.tip.Show_Comments):
+# HTML panel option (located in tab's option menu). If set to true, comment nodes are displayed
+ShowComments=Show Comments
+html.option.tip.Show_Comments=Show comment nodes
+
+# LOCALIZATION NOTE (html.option.Show_Text_Nodes_With_Entities, html.option.tip.Show_Text_Nodes_With_Entities):
+# HTML panel option (located in tab's option menu). If set to true, special characters will be
+# shown in their entity representation, e.g. " => ", & => &
+html.option.Show_Entities_As_Symbols=Show Entities As Symbols
+html.option.tip.Show_Entities_As_Symbols=Show all XML entities using their symbolic representation
+html.option.Show_Entities_As_Names=Show Entities As Names
+html.option.tip.Show_Entities_As_Names=Show all XML entities using their names
+html.option.Show_Entities_As_Unicode=Show Entities As Unicode
+html.option.tip.Show_Entities_As_Unicode=Show all XML entities in their Unicode representation
+
+# LOCALIZATION NOTE (html.option.Highlight_Mutations, html.option.tip.Highlight_Mutations):
+# HTML panel option (located in tab's option menu). If set to true, changes to the nodes
+# will be highlighted
+HighlightMutations=Highlight Changes
+html.option.tip.Highlight_Mutations=Highlight changes inside nodes
+
+# LOCALIZATION NOTE (html.option.Expand_Mutations, html.option.tip.Expand_Mutations):
+# HTML panel option (located in tab's option menu). If set to true, the tree view
+# will be expanded to display changed nodes
+ExpandMutations=Expand Changes
+html.option.tip.Expand_Mutations=Expand the tree view to display changed nodes
+
+# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
+# HTML panel option (located in tab's option menu). If set to true, the tree view
+# will be scrolled to display changed nodes
+ScrollToMutations=Scroll Changes Into View
+html.option.tip.Scroll_To_Mutations=Scroll the tree view to bring changed nodes into view
+
+# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
+# Inspector option (located in HTML tab's option menu and Firebug menu). If set to true,
+# a panel will be shown including information about the currently inspected element
+ShowQuickInfoBox=Show Quick Info Box
+inspect.option.tip.Show_Quick_Info_Box=Show information about the currently inspected element inside a panel overlaying the page
+
+# LOCALIZATION NOTE (html.option.Scroll_To_Mutations, html.option.tip.Scroll_To_Mutations):
+# Inspector option (located in HTML tab's option menu and Firebug menu). If set to true, the tree view
+# will be scrolled to display changed nodes
+ShadeBoxModel=Shade Box Model
+inspect.option.tip.Shade_Box_Model=Shade the different parts of the box model
+
+ScrollIntoView=Scroll Into View
+html.tip.Scroll_Into_View=Scroll the page to make the element visible
+NewAttribute=New Attribute...
+html.tip.New_Attribute=Add a new attribute to this element
+html.Edit_Node=Edit %S...
+html.Node=Node
+html.tip.Edit_Node=Edit the %S using the full text editor
+DeleteElement=Delete Element
+html.Delete_Element=Delete the element from the tree
+DeleteNode=Delete Node
+html.Delete_Node=Delete the node from the tree
+
+# Quick Info Box
+quickInfo=Quick Info
+computedStyle=Computed Style
+
+# LOCALIZATION NOTE (html.Break_On_Mutate, html.Disable_Break_On_Mutate): Tooltips for resume
+# button that are used when the HTML panel is currently selected. The button allows stopping
+# JS execution when DOM of the current page is modified.
+html.Break_On_Mutate=Break On Mutate
+html.Disable_Break_On_Mutate=Disable Break On Mutate
+html.label.Break_On_Text_Change=Break On Text Change
+
+html.label.HTML_Breakpoints=HTML Breakpoints
+html.label.Break_On_Attribute_Change=Break On Attribute Change
+html.tip.Break_On_Attribute_Change=Stop JavaScript execution when an attribute of this element changes
+html.label.Break_On_Child_Addition_or_Removal=Break On Child Addition or Removal
+html.tip.Break_On_Child_Addition_or_Removal=Stop JavaScript execution when a child node is added to or removed from this element
+html.label.Break_On_Element_Removal=Break On Element Removal
+html.tip.Break_On_Element_Removal=Stop JavaScript execution when the element is removed
+
+# LOCALIZATION NOTE (html.label.Expand/Contract_All, html.tip.Expand/Contract_All):
+# Used within the HTML for a context menu item. The user can expand/contract
+# the element and all its children to quickly see the entire hierarchical structure
+# or collapse it.
+html.label.Expand/Contract_All=Expand/Contract All
+html.tip.Expand/Contract_All=Expand/collapse all the children recursively
+
+# LOCALIZATION NOTE (dom.label.breakOnPropertyChange, dom.tip.Break_On_Property_Change):
+# Used within the DOM panel to create a 'property breakpoint'. Right-click on an property of an object.
+# The label is also used for the 'Break On Property Change' button (available on the toolbar).
+dom.label.breakOnPropertyChange=Break On Property Change
+dom.tip.Break_On_Property_Change=Stop the JavaScript execution when this property changes
+
+# LOCALIZATION NOTE (dom.disableBreakOnPropertyChange): Used within the DOM panel for the
+# 'break on next button' in the case the option is activated
+dom.disableBreakOnPropertyChange=Disable Break On Property Change
+
+dom.label.DOM_Breakpoints=DOM Breakpoints
+
+# LOCALIZATION NOTE (EditAttribute, html.tip.Edit_Attribute): Menu item label used in HTML panel context menu. Allows
+# editing an existing HTML element attribute.
+# %S = Name of the clicked attribute
+# examples: Edit Attribute "onclick"...
+EditAttribute=Edit Attribute "%S"...
+html.tip.Edit_Attribute=Edit the value of the attribute "%S" of this element
+
+# LOCALIZATION NOTE (DeleteAttribute, html.tip.Delete_Attribute): Menu item label used in HTML panel context menu. Allows
+# deleting an existing HTML element attribute.
+# %S = Name of the clicked attribute
+# examples: Delete Attribute "onclick"...
+DeleteAttribute=Delete Attribute "%S"
+html.tip.Delete_Attribute=Delete the attribute "%S" from this element
+
+# LOCALIZATION NOTE (InheritedFrom): Displaying an HTML element name + an applied CSS rule,
+# that has been inherited. Used in the Style side panel (under HTML panel).
+# examples: Inherited from table.tabView
+InheritedFrom=Inherited from
+
+SothinkWarning=The Sothink SWF Catcher extension is preventing Firebug from working properly.<br/><br/>Please read <a href="http://www.getfirebug.com/faq.html#Sothink" target="_new">this item on the Firebug FAQ</a> for help.
+
+# LOCALIZATION NOTE (css.fontFamilyPreview): Part of a tooltip in the CSS panel
+# and Style side panel (within HTML panel) when the mouse hovers a font name
+css.fontFamilyPreview=The quick brown fox jumps over the lazy dog. 0123456789
+
+# LOCALIZATION NOTE (css.EmptyStyleSheet): Displayed in the CSS panel
+# in case there are no stylesheets attached to the current page.
+# The text between <a> and </a> is displayed as a link.
+css.EmptyStyleSheet=There are no rules. You can <a>create a rule</a>.
+
+# LOCALIZATION NOTE (css.EmptyElementCSS2): Displayed in the Style side panel
+# (available within the HTML panel) in case there are no CSS rules for the selected element.
+# The text between <a> and </a> is displayed as a link.
+css.EmptyElementCSS=This element has no style rules. You can <a>create a rule</a> for it.
+
+EditStyle=Edit Element Style...
+style.tip.Edit_Style=Edit the element's inline style
+AddRule=Add Rule...
+css.tip.AddRule=Add a general rule for this element
+NewRule=New Rule...
+css.tip.New_Rule=Add a new rule
+
+# LOCALIZATION NOTE (css.Delete_Rule, css.tip.Delete_Rule): Menu item label used in the CSS panel context menu.
+# Allows to delete an existing CSS rule
+# %S = Selector of the clicked rule
+# examples: Delete "div > p"
+css.Delete_Rule=Delete "%S"
+css.tip.Delete_Rule=Delete the rule "%S" and all its properties
+
+# LOCALIZATION NOTE (css.menu.Edit_Media_Query, css.menu.tip.Edit_Media_Query):
+# Menu item label used in the CSS panel context menu.
+# Allows to add or edit the CSS media query of an import rule
+css.menu.Edit_Media_Query=Edit Media Query...
+css.menu.tip.Edit_Media_Query=Edit the media query assigned to this rule
+
+NewProp=New Property...
+css.tip.New_Prop=Add a new property to the current rule
+
+# LOCALIZATION NOTE (EditProp, css.tip.Edit_Prop): Menu item label used in the CSS panel context menu.
+# Allows to edit an existing CSS rule property.
+# %S = Name of the clicked property
+# examples: Edit "background-color"...
+EditProp=Edit "%S"...
+css.tip.Edit_Prop=Edit the value of the property "%S"
+
+# LOCALIZATION NOTE (DisableProp): Menu item label used in the CSS panel context menu.
+# Allows to disable an existing CSS rule property.
+# %S = Name of the clicked property
+# examples: Disable "background-color"
+DisableProp=Disable "%S"
+css.tip.Disable_Prop=Disable the property "%S"
+
+# LOCALIZATION NOTE (DeleteProp, css.tip.Delete_Prop): Menu item label used in the CSS panel context menu.
+# Allows to delete an existing CSS rule property.
+# %S = Name of the clicked property
+# examples: Delete "background-color"
+DeleteProp=Delete "%S"
+css.tip.Delete_Prop=Delete the property "%S"
+
+# Console context menu labels.
+BreakOnThisError=Break on This Error
+console.menu.tip.Break_On_This_Error=Stop the JavaScript execution as soon as this error occurs
+BreakOnAllErrors=Break on All Errors
+console.menu.tip.Break_On_All_Errors=Stop the JavaScript execution as soon as an error occurs
+
+# LOCALIZATION NOTE (script.option.Track_Throw_Catch):
+# Script panel option (located in tab's option menu). If set to true, tracking of
+# throw/catch blocks is enabled.
+TrackThrowCatch=Track Throw/Catch
+script.option.tip.Track_Throw_Catch=Track exceptions even when they are caught by try/catch blocks
+
+UseLastLineForEvalName=Use Last Source Line for eval() names
+UseMD5ForEvalName=Use MD5 for eval() names
+
+# Breakpoints side panel
+Breakpoints=Breakpoints
+ErrorBreakpoints=Error Breakpoints
+LoggedFunctions=Logged Functions
+EnableAllBreakpoints=Enable All Breakpoints
+breakpoints.option.tip.Enable_All_Breakpoints=Enable all listed breakpoints
+DisableAllBreakpoints=Disable All Breakpoints
+breakpoints.option.tip.Disable_All_Breakpoints=Disable all listed breakpoints
+ClearAllBreakpoints=Remove All Breakpoints
+breakpoints.option.tip.Clear_All_Breakpoints=Remove all listed breakpoints
+ConditionInput=This breakpoint will stop only if this expression is true:
+
+# LOCALIZATION NOTE (breakpoints.Remove_Breakpoint, breakpoints.tip.Remove_Breakpoint, breakpoints.Disable_Breakpoint,
+# breakpoints.tip.Disable_Breakpoint, breakpoints.Enable_Breakpoint, breakpoints.tip.Enable_Breakpoint):
+# Context menu items in the Script panel and Breakpoints side panel.
+breakpoints.Remove_Breakpoint=Remove Breakpoint
+breakpoints.tip.Remove_Breakpoint=Remove the breakpoint
+breakpoints.Disable_Breakpoint=Disable Breakpoint
+breakpoints.tip.Disable_Breakpoint=Disable the breakpoint
+breakpoints.Enable_Breakpoint=Enable Breakpoint
+breakpoints.tip.Enable_Breakpoint=Enable the breakpoint
+
+# LOCALIZATION NOTE (script.balloon.Continue, script.balloon.Disable): Labels used for buttons
+# within balloon popup dialog. This dialog appears when the debugger halts at a breakpoint or at
+# a 'debugger;' keyword.
+# Continue: allows to resume the debugger
+# Disable: allows to disable the current 'debugger;' keyword used in the Javascript source
+script.balloon.Continue=Continue
+script.balloon.Disable=Disable
+
+ScriptsFilterStatic=Show static Scripts
+ScriptsFilterEval=Show static and eval Scripts
+ScriptsFilterEvent=Show static and event Scripts
+ScriptsFilterAll=Show static, eval and event Scripts
+ScriptsFilterStaticShort=static
+ScriptsFilterEvalShort=evals
+ScriptsFilterEventShort=events
+ScriptsFilterAllShort=all
+
+# LOCALIZATION NOTE (callstack.Expand_All, callstack.tip.Expand_All,
+# callstack.Collapse_All, callstack.tip.Collapse_All):
+# Context menu item labels used in Stack side panel (within Script panel)
+# Firebug needs to be halted at a breakpoint to see these items.
+callstack.Expand_All=Expand All
+callstack.tip.Expand_All=Expand all stack frame functions
+callstack.Collapse_All=Collapse All
+callstack.tip.Collapse_All=Collapse all stack frame functions
+
+# LOCALIZATION NOTE (callstack.Execution_not_stopped):
+# Message displayed in the Stack side panel if the script execution is not stopped.
+callstack.Execution_not_stopped=Stack frames are just shown when the script execution is stopped.
+
+# LOCALIZATION NOTE (ShowUserProps, ShowUserFuncs, ShowDOMProps, ShowDOMFuncs, ShowDOMConstants,
+# ShowOwnProperties, ShowOwnPropertiesTooltip, ShowEnumerableProperties, ShowEnumerablePropertiesTooltip,
+# ShowInlineEventHandlers):
+# Labels for DOM panel options (located in tab's option menu)
+ShowUserProps=Show User-defined Properties
+dom.option.tip.Show_User_Props=Show user-defined object properties
+ShowUserFuncs=Show User-defined Functions
+dom.option.tip.Show_User_Funcs=Show user-defined object methods
+ShowDOMProps=Show DOM Properties
+dom.option.tip.Show_DOM_Props=Show properties specified inside the DOM
+ShowDOMFuncs=Show DOM Functions
+dom.option.tip.Show_DOM_Funcs=Show functions specified inside the DOM
+ShowDOMConstants=Show DOM Constants
+dom.option.tip.Show_DOM_Constants=Show constants specified inside the DOM
+ShowInlineEventHandlers=Show Inline Event Handlers
+ShowInlineEventHandlersTooltip=Show available inline event handlers, that are not associated with a function
+ShowOwnProperties=Show Own Properties Only
+ShowOwnPropertiesTooltip=Don't show prototype chain
+ShowEnumerableProperties=Show Enumerable Properties Only
+ShowEnumerablePropertiesTooltip=Don't show non-enumerable properties
+
+NoMembersWarning=There are no properties to show for this object.
+NewWatch=New watch expression...
+
+# LOCALIZATION NOTE (AddWatch, watch.tip.Add_Watch): Context menu item in the DOM panel, Script panel and Watch side panel.
+# Adds the selection or object to the Watch side panel to observe it
+AddWatch=Add Watch
+watch.tip.Add_Watch=Add the selection/object to the Watch side panel for observation
+
+# LOCALIZATION NOTE (CopySourceCode, script.tip.Copy_Source_Code): Context menu item of the Script panel.
+# Copies the selected source code to the clipboard.
+CopySourceCode=Copy Source
+script.tip.Copy_Source_Code=Copy the selected source code to the clipboard
+
+Use_hash_plus_number_to_go_to_line=Use #<number> to go to line
+
+CopyValue=Copy Value
+dom.tip.Copy_Value=Copy the property's value to the clipboard
+Copy_Name=Copy Name
+dom.tip.Copy_Name=Copy the property's name to the clipboard
+Copy_Path=Copy Path
+dom.tip.Copy_Path=Copy the property path
+
+NewProperty=New Property...
+EditProperty=Edit Property...
+dom.tip.Edit_Property=Edit the property's value
+EditVariable=Edit Variable...
+stack.tip.Edit_Variable=Edit the variable's value
+EditWatch=Edit Watch...
+watch.tip.Edit_Watch=Edit the watch expression's value
+DeleteProperty=Delete Property
+dom.tip.Delete_Property=Delete the property
+DeleteWatch=Delete Watch
+watch.tip.Delete_Watch=Delete the watch expression
+
+# LOCALIZATION NOTE (SetBreakpoint, script.tip.Set_Breakpoint): Context menu item of the Script panel.
+# Toggles setting of a breakpoint at the current line of a script inside the Script panel.
+SetBreakpoint=Set Breakpoint
+script.tip.Set_Breakpoint=Toggles setting of a breakpoint at the current line
+
+# LOCALIZATION NOTE (EditBreakpointCondition, breakpoints.tip.Edit_Breakpoint_Condition):
+# Context menu item of the Script panel.
+# Allows to edit the condition, under which a breakpoint stops the JavaScript execution
+EditBreakpointCondition=Edit Breakpoint Condition...
+breakpoints.tip.Edit_Breakpoint_Condition=Edit the condition, under which this breakpoint stops the JavaScript execution
+
+NoBreakpointsWarning=There are no breakpoints set in this page.
+
+# LOCALIZATION NOTE (style.option.Only_Show_Applied_Styles, style.option.tip.Only_Show_Applied_Styles):
+# Style side panel option (located in tab's option menu). If set to true,
+# just styles applied to an element will be displayed and overwritten ones will be hidden.
+Only_Show_Applied_Styles=Only Show Applied Styles
+style.option.tip.Only_Show_Applied_Styles=Just show styles applied to the element
+
+# LOCALIZATION NOTE (style.option.Show_User_Agent_CSS, style.option.tip.Show_User_Agent_CSS):
+# Style side panel option (located in tab's option menu). If set to true, the Style side panel will
+# also display styles defined by the user agent.
+Show_User_Agent_CSS=Show User Agent CSS
+style.option.tip.Show_User_Agent_CSS=Also show the CSS defined by the user agent
+
+# LOCALIZATION NOTE (computed.option.label.Colors_As_Hex, computed.option.tip.Colors_As_Hex,
+#   computed.option.label.Colors_As_RGB, computed.option.tip.Colors_As_RGB,
+#   computed.option.label.Colors_As_HSL, computed.option.tip.Colors_As_HSL):
+# CSS panel, Style side panel and Computed side panel option (located in tab's option menu).
+# Allows switching the display of CSS colors between hex, rgb(a) and hsl(a) format
+computed.option.label.Colors_As_Hex=Colors As Hex
+computed.option.tip.Colors_As_Hex=Show colors in hexadecimal format
+computed.option.label.Colors_As_RGB=Colors As RGB
+computed.option.tip.Colors_As_RGB=Show colors in RGB format
+computed.option.label.Colors_As_HSL=Colors As HSL
+computed.option.tip.Colors_As_HSL=Show colors in HSL format
+
+# LOCALIZATION NOTE (style.option.label.active, style.option.tip.active):
+# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
+# the Style side panel will simulate the element being activated and therefore display
+# :active pseudo-class styles
+style.option.label.active=:active
+style.option.tip.active=Display :active pseudo-class styles
+
+# LOCALIZATION NOTE (style.option.label.hover, style.option.tip.hover):
+# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
+# the Style side panel will simulate the element being hovered and therefore display
+# :hover pseudo-class styles
+style.option.label.hover=:hover
+style.option.tip.hover=Display :hover pseudo-class styles
+
+# LOCALIZATION NOTE (style.option.label.focus, style.option.tip.focus):
+# Style side panel option tooltip (located in tab's option menu). If the option is set to true,
+# the Style side panel will simulate the element being focused and therefore display
+# :focus pseudo-class styles
+style.option.label.focus=:focus
+style.option.tip.focus=Display :focus pseudo-class styles
+
+# LOCALIZATION NOTE (css.label.Inspect_Declaration, css.tip.Inspect_Declaration):
+# CSS panel/Style side panel context menu option. Allows inspecting a font face of a web font
+# declaration inside the CSS panel
+css.label.Inspect_Declaration=Inspect Declaration
+css.tip.Inspect_Declaration= Inspect the declaration of this font
+
+# LOCALIZATION NOTE (css.option.Expand_Shorthand_Properties, css.option.tip.Expand_Shorthand_Properties):
+# CSS panel/Style side panel option (located in tab's option menu). If set to true,
+# CSS shorthand properties like 'margin' will be split into their components, e.g. 'margin-top',
+# 'margin-left', 'margin-bottom', 'margin-right'
+Expand_Shorthand_Properties=Expand Shorthand Properties
+css.option.tip.Expand_Shorthand_Properties=Expand CSS shorthand properties into their components
+
+# LOCALIZATION NOTE (computed.option.Sort_Alphabetically, computed.option.tip.Sort_Alphabetically):
+# Computed side panel option (located in tab's option menu). If set to 'alphabetical',
+# the computed styles will be listed alphabetically by their name, otherwise they will be grouped
+# into categories
+Sort_alphabetically=Sort Alphabetically
+computed.option.tip.Sort_Alphabetically=Sort the styles by their name/group the styles into categories
+
+# LOCALIZATION NOTE (computed.option.Show_Mozilla_Specific_Styles, computed.option.tip.Show_Mozilla_Specific_Styles):
+# Computed side panel option (located in tab's option menu). If set to true,
+# also styles prefixed with -moz will be displayed
+Show_Mozilla_specific_styles=Show Mozilla Specific Styles
+computed.option.tip.Show_Mozilla_Specific_Styles=Also show styles prefixed with -moz
+
+# LOCALIZATION NOTE (computed.No_User-Defined_Styles):
+# Displayed in the Computed side panel (available within the HTML panel) in case there are no
+# user-defined CSS rules applying to the selected element.
+computed.No_User-Defined_Styles=This element has no user-defined style rules.
+
+script.Type_any_key_to_filter_list=Type any key to filter list
+
+# LOCALIZATION NOTE (LayoutPadding, LayoutBorder, LayoutMargin, LayoutPosition, LayoutAdjacent):
+# Labels used to describe layout properties a the selected HTML element.
+# Used in the Layout side panel (within HTML panel).
+LayoutPadding=padding
+LayoutBorder=border
+LayoutMargin=margin
+LayoutPosition=position
+LayoutAdjacent=adjacent
+position=position
+
+# LOCALIZATION NOTE (layout.option.Show_Rulers, layout.option.tip.Show_Rulers):
+# Layout side panel option (located in tab's option menu). If set to true,
+# rulers and guides will be displayed for the element on the page
+# when hovering parts of the layout box
+ShowRulers=Show Rulers and Guides
+layout.option.tip.Show_Rulers=Show rulers and guides on the page when hovering parts of the layout box
+
+# Net panel
+Loading=Loading...
+Headers=Headers
+
+# LOCALIZATION NOTE (net.tip.Clear)
+# Tooltip for the button inside the Net panel to clear the request list
+net.tip.Clear=Clear the request list
+
+# LOCALIZATION NOTE (net.header.Reset_Header, net.header.tip.Reset_Header)
+# Label for header context menu within the Net panel
+net.header.Reset_Header=Reset Header
+net.header.tip.Reset_Header=Reset the header display
+
+# LOCALIZATION NOTE (net.header.URL, net.header.URL_Tooltip, net.header.Status,
+# net.header.Status_Tooltip, net.header.Domain, net.header.Domain_Tooltip,
+# net.header.Size, net.header.Size_Tooltip, net.header.Timeline, net.header.Timeline_Tooltip,
+# net.header.Local_IP, net.header.Local_IP_Tooltip, net.header.Remote_IP,
+# net.header.Remote_IP_Tooltip, net.header.Protocol, net.header.Protocol_Tooltip):
+# Labels and tooltips for headers displayed on top of the Net panel.
+net.header.URL=URL
+net.header.URL_Tooltip=Requested URL and used HTTP method
+net.header.Status=Status
+net.header.Status_Tooltip=Status of the received response
+net.header.Domain=Domain
+net.header.Domain_Tooltip=Domain of the executed request
+net.header.Size=Size
+net.header.Size_Tooltip=Size of the received response (compressed size in case of compressed responses)
+net.header.Timeline=Timeline
+net.header.Timeline_Tooltip=Detailed timing info about request response round trip
+net.header.Local_IP=Local IP
+net.header.Local_IP_Tooltip=Local IP address and port number to which the request is bound
+net.header.Remote_IP=Remote IP
+net.header.Remote_IP_Tooltip=Remote IP address and port number to which the request is bound
+net.header.Protocol=Protocol
+net.header.Protocol_Tooltip=The URL protocol used to locate the resource on the web
+
+# LOCALIZATION NOTE (net.label.Network_Breakpoints): Label for network breakpoints group.
+net.label.XHR_Breakpoints=XHR Breakpoints
+
+# LOCALIZATION NOTE (net.label.Break_On_XHR, net.tip.Break_On_XHR):
+# Net panel context menu item for stopping the JavaScript execution on an XHR
+net.label.Break_On_XHR=Break On XHR
+net.tip.Break_On_XHR=Stop the JavaScript execution as soon as an XMLHttpRequest is made
+
+# LOCALIZATION NOTE (net.headers.view_source, net.headers.pretty_print): Labels used in the
+# Net panel's Headers tab (displayed if you expand a network request). The label is used
+# for a link, that switches the view between raw source code and formated header values.
+net.headers.view_source=view source
+net.headers.pretty_print=pretty print
+
+# LOCALIZATION NOTE (net.filter.Media): Label for Net panel filter (used on the Net panel toolbar)
+net.filter.Media=Media
+
+# LOCALIZATION NOTE (Post, Put): Label (verb) used in the Net panel for detailed info about
+# a network request (displayed when a Net panel entry is expanded). The content of
+# this tab displays sent data (related to an HTTP send method).
+Post=Post
+Put=Put
+
+# LOCALIZATION NOTE (Response, URLParameters, Cache, HTML, jsonviewer.tab.JSON, xmlviewer.tab.XML):
+# Labels used in the Net panel for detailed info about a network request (displayed
+# when a Net panel entry is expanded)
+Response=Response
+URLParameters=Params
+Cache=Cache
+HTML=HTML
+jsonviewer.tab.JSON=JSON
+xmlviewer.tab.XML=XML
+svgviewer.tab.SVG=SVG
+
+fontviewer.General_Info=General Info
+fontviewer.Meta_Data=Meta Data
+fontviewer.view_source=view source
+fontviewer.Preview=Preview
+fontviewer.view_characters=view characters
+fontviewer.pretty_print=pretty print
+fontviewer.view_sample=view sample
+fontviewer.uniqueid=Unique ID
+fontviewer.vendor=Vendor
+fontviewer.license=License
+fontviewer.description=Description
+fontviewer.copyright=Copyright
+fontviewer.credits=Credits
+fontviewer.trademark=Trademark
+fontviewer.licensee=Licensee
+fontviewer.extension=Extension
+fontviewer.pangram=The quick brown fox jumps over the lazy dog
+
+# LOCALIZATION NOTE (jsonviewer.sort, jsonviewer.do_not_sort): Label (verb) used in the
+# Net panel for JSON responses. Allows to sort alphabetically.
+jsonviewer.sort=Sort by key
+jsonviewer.do_not_sort=Do not sort
+
+# LOCALIZATION NOTE (net.jsonviewer.Copy_JSON): Label (verb) displayed in the JSON tab of a network request
+# in the Net & Console panel when copying JSON replies.
+# %S = Part of the JSON, that was clicked
+# example: Copy "person" as JSON
+net.jsonviewer.Copy_JSON=Copy "%S" as JSON
+
+# LOCALIZATION NOTE (RequestHeaders, ResponseHeaders, CachedResponseHeaders, PostRequestHeaders):
+# Label (noun) used in the Net panel (displayed inside the Headers tab of a request).
+RequestHeaders=Request Headers
+ResponseHeaders=Response Headers
+CachedResponseHeaders=Response Headers From Cache
+PostRequestHeaders=Request Headers From Upload Stream
+
+# LOCALIZATION NOTE (net.label.ResponseHeadersFromBFCache):
+# Label (noun) used in the Net panel and displayed instead of Response Headers
+# if the response comes directly from the cache (BFCache).
+net.label.ResponseHeadersFromBFCache=The request was resolved directly from the cache, so we have no response from the server. See below for the cached response.
+
+# LOCALIZATION NOTE (plural.Limit_Exceeded2): Semicolon list of plural forms.
+# A message displayed in the Net panel when some entries must be removed in the case the maximum number
+# of entries has been reached.
+# %1 = the number of entries removed
+# example: Firebug's log limit has been reached. 150 entries not shown.
+plural.Limit_Exceeded2=Firebug's log limit has been reached. %1$S entry not shown.;Firebug's log limit has been reached. %1$S entries not shown.
+
+LimitPrefs=Preferences
+
+# LOCALIZATION NOTE (LimitPrefsTitle): A message displayed in the Net panel when log limit
+# has been reached. Informing the user what preference should be changed to modify the limit.
+# %S = Name of a preference
+# examples: In order to change the limit modify 'firebug.extensions.console.logLimit'
+LimitPrefsTitle=In order to change the limit modify '%S'
+
+Refresh=Refresh
+panel.tip.Refresh=Refresh the panel display
+
+# LOCALIZATION NOTE (OpenInTab, firebug.tip.Open_In_Tab): Context menu option of source links,
+# stylesheets and net requests to open the underlying URL in a new browser tab
+OpenInTab=Open in New Tab
+firebug.tip.Open_In_Tab=Open the URL in a new browser tab
+
+Open_Response_In_New_Tab=Open Response in New Tab
+net.tip.Open_Response_In_New_Tab=Open the response in a new browser tab
+
+# LOCALIZATION NOTE (Profile): Caption (verb) for reported profile info.
+# (result of JavaScript profiler tool).
+Profile=Profile
+
+ProfilerStarted=The profiler is running. Click 'Profile' again to see its report.
+
+# LOCALIZATION NOTE (plural.Profile_Time2): Semicolon list of plural forms.
+# Caption for reported profile info (result of JavaScript profiler tool).
+# %1 = Number of milliseconds
+# %2 = Number of calls (plural)
+# example: (56ms, 15 calls)
+plural.Profile_Time2=(%1$Sms, %2$S call);(%1$Sms, %2$S calls)
+
+NothingToProfile=No activity to profile
+PercentTooltip=Percentage of time spent on this function
+CallsHeaderTooltip=Number of times function was called
+OwnTimeHeaderTooltip=Time spent in function excluding nested calls
+TimeHeaderTooltip=Time spent in function including nested calls
+AvgHeaderTooltip=Average time including function calls
+MinHeaderTooltip=Minimum time including function calls
+MaxHeaderTooltip=Maximum time including function calls
+ProfileButton.Enabled.Tooltip=Profile JavaScript execution time
+ProfileButton.Disabled.Tooltip=Profile JavaScript execution time (Script panel must be enabled)
+Function=Function
+Percent=Percent
+
+# LOCALIZATION NOTE (Calls, OwnTime, Time, Avg, Min, Max, File): Used in profiler report header
+# (name of a report column). In order to see this, select the Console panel, start profiling
+# by clicking the Profile button and stop it by clicking it again. The report is logged into the
+# Console panel. Make sure Script panel is enabled.
+Calls=Calls
+OwnTime=Own Time
+Time=Time
+Avg=Avg
+Min=Min
+Max=Max
+File=File
+
+# Support for standard actions.
+Copy=Copy
+Cut=Cut
+Remove=Remove
+Delete=Delete
+Paste=Paste
+SelectAll=Select All
+
+html.Copy_Node=Copy %S
+html.tip.Copy_Node=Copy the %S node and all its contents to the clipboard
+CopyInnerHTML=Copy innerHTML
+html.tip.Copy_innerHTML=Copy the contents of the element to the clipboard
+CopyXPath=Copy XPath
+html.tip.Copy_XPath=Copy the element's XPath to the clipboard
+Copy_CSS_Path=Copy CSS Path
+html.tip.Copy_CSS_Path=Copy the element's CSS path to the clipboard
+
+# LOCALIZATION NOTE (CopyError, console.menu.tip.Copy_Error): Context menu item. Used in the Console
+# panel when clicking an error object.
+CopyLocation=Copy Location
+clipboard.tip.Copy_Location=Copy the URL of the object's location to the clipboard
+
+CopyURLParameters=Copy URL Parameters
+net.tip.Copy_URL_Parameters=Copy URL parameters to the clipboard
+CopyPOSTParameters=Copy POST Parameters
+net.tip.Copy_POST_Parameters=Copy POST parameters to the clipboard
+CopyLocationParameters=Copy Location with Parameters
+net.tip.Copy_Location_Parameters=Copy the URL incl. the parameters to the clipboard
+CopyRequestHeaders=Copy Request Headers
+net.tip.Copy_Request_Headers=Copy the request headers to the clipboard
+CopyResponseHeaders=Copy Response Headers
+net.tip.Copy_Response_Headers=Copy the response headers to the clipboard
+CopyResponse=Copy Response Body
+net.tip.Copy_Response=Copy the response body to the clipboard
+
+# LOCALIZATION NOTE (CopyError, console.menu.tip.Copy_Error): Context menu item. Used in the Console
+# panel when clicking an error object.
+CopyError=Copy Error
+console.menu.tip.Copy_Error=Copy the error information to the clipboard
+
+# LOCALIZATION NOTE (CopySource, dom.tip.Copy_Source): Context menu item of. Used in the Console
+# panel when clicking an error object.
+CopySource=Copy Function
+dom.tip.Copy_Source=Copy the function's source code to the clipboard
+
+# LOCALIZATION NOTE (ShowCallsInConsole): Context menu item of a function object inside the
+# DOM panel and Watch side panel.
+# %S = Name of the function
+# example: Log Calls to "getData"
+# example: Log calls to the function "getData" inside the Console panel
+ShowCallsInConsole=Log Calls to "%S"
+dom.tip.Log_Calls_To_Function=Log calls to the function "%S" inside the Console panel
+
+# LOCALIZATION NOTE (ShowEventsInConsole, html.tip.Show_Events_In_Console):
+# Menu item label used in HTML elements context menu. Allows logging of event information
+# to the console.
+ShowEventsInConsole=Log Events
+html.tip.Show_Events_In_Console=Log event information to the console
+
+# LOCALIZATION NOTE (panel.Enabled, panel.tip.Enabled):
+# Option inside the options menu of activatable panels. Enables/Disables the panel.
+panel.Enabled=Enabled
+panel.tip.Enabled=Toggle the panel activation
+
+# LOCALIZATION NOTE (panel.tooltip.Show_Command_Line_Popup): Tooltip used for a button on main
+# Firebug toolbar. This button allows to open the Command Line within other panels
+# than the Console panel.
+panel.tooltip.Show_Command_Line_Popup=Show Command Line Popup
+
+# LOCALIZATION NOTE (console.MethodNotSupported): Message displayed in the Console panel,
+# if a specific method is not supported.
+# %S = Name of the unsupported method
+# example: Firebug console does not support 'bind'
+console.MethodNotSupported=Firebug console does not support '%S'
+
+# LOCALIZATION NOTE (commandline.MethodNotSupported): Message displayed in the Console panel,
+# if an unsupported method is entered via the Command Line.
+# %S = Name of the unsupported method
+commandline.MethodNotSupported=Firebug Command Line does not support '%S'
+
+# LOCALIZATION NOTE (console.Disable_Break_On_All_Errors, console.Break_On_All_Errors):
+# Tooltip for the "Break on... " button used when the Console panel is selected.
+console.Disable_Break_On_All_Errors=Disable Break On All Errors
+console.Break_On_All_Errors=Break On All Errors
+
+# LOCALIZATION NOTE (console.Break_On_This_Error): Tooltip for the breakpoint besides an error message
+# in the Console panel
+console.Break_On_This_Error=Break On This Error
+
+# LOCALIZATION NOTE (console.Use_Arrow_keys,_Tab_or_Enter): Hint at the top of the Completion List Popup
+# in the Command Line
+console.Use_Arrow_keys,_Tab_or_Enter=Use Arrow keys, Tab or Enter
+
+# LOCALIZATION NOTE (console.JSDisabledInFirefoxPrefs): Hint shown inside the Console panel in the case
+# JavaScript is not available
+console.JSDisabledInFirefoxPrefs=JavaScript is disabled in your Firefox preferences. If you want to use the Console panel, then please enable this option via Tools > Options > Content > Enable JavaScript
+
+# LOCALIZATION NOTE (console.multiHighlightLimitExceeded):
+# Used by the Console panel for arrays. If the user moves the mouse over an array bracket,
+# all elements in the array are highlighted on the page. If there are too many elements
+# in the array, this tooltip is displayed instead.
+# %S = Maximal number of elements to highlight
+# example: There are too many elements in the array to highlight on the page (current limit is 100).
+#          See 'extensions.firebug.multiHighlightLimit' preference.
+console.multiHighlightLimitExceeded=There are too many elements in the array to highlight on the page (current limit is %S).\nSee 'extensions.firebug.multiHighlightLimit' preference.
+
+# LOCALIZATION NOTE (commandline.disabledForXMLDocs): This message is displayed in the Console panel
+# in cases when the current page is an XML document. The text between <a> and </a> is a link,
+# that causes to switch to HTML rendering of the document.
+commandline.disabledForXMLDocs=Firebug command line is disabled for XML pages. You can <a>switch to HTML</a> to enable it.
+
+# LOCALIZATION NOTE (net.sizeinfo.Response_Body, net.sizeinfo.Post_Body, net.sizeinfo.Total_Sent,
+# net.sizeinfo.Total_Received, net.sizeinfo.Including_Headers):
+# Labels used for a detailed size info tooltip. The tooltip is displayed, if the mouse hovers over
+# a request size displayed within the Net panel. 'Total Sent' and 'Total Received' info includes
+# sent and received headers size.
+net.sizeinfo.Response_Body=Response Body
+net.sizeinfo.Post_Body=Post Body
+net.sizeinfo.Total_Sent=Total Sent
+net.sizeinfo.Total_Received=Total Received
+net.sizeinfo.Including_HTTP_Headers=Including HTTP Headers
+
+net.ActivationMessage=Net panel activated. Any requests while the net panel is inactive are not shown.
+net.responseSizeLimitMessage=Firebug response size limit has been reached. Click <a>here</a> to open the entire response in a new Firefox tab.
+
+# LOCALIZATION NOTE (net.postDataSizeLimitMessage): A warning message displayed within the Net
+# panel (inside the Post tab of an expanded request entry). The message informs the user that
+# posted data reached Firebug's size limit and only part of it is displayed in the UI.
+net.postDataSizeLimitMessage=Firebug request size limit has been reached by Firebug.
+
+net.Break_On_XHR=Break On XHR
+net.label.Parameters=Parameters
+net.label.Parts=Parts
+net.label.Source=Source
+
+# LOCALIZATION NOTE (net.label.Resend): Label for context menu item. Used when clicking
+# on a HTTP request (in the Console or Net panel) to re-send it with the same arguments.
+net.label.Resend=Resend
+net.tip.Resend=Send the request again
+
+# LOCALIZATION NOTE (net.option.Disable_Browser_Cache, net.option.tip.Disable_Browser_Cache):
+# Net panel option (located in tab's option menu). If set to true, the browser's HTTP cache is disabled
+net.option.Disable_Browser_Cache=Disable Browser Cache
+net.option.tip.Disable_Browser_Cache=Disable the browser's HTTP cache
+
+# LOCALIZATION NOTE (net.option.Show_Paint_Events, net.option.tip.Show_Paint_Events):
+# Net panel option (located in tab's option menu). If set to true, the Net panel displays
+# MozAfterPaint events.
+# See also: http://www.softwareishard.com/blog/firebug/watching-mozafterpaint-in-firebug/
+net.option.Show_Paint_Events=Show Paint Events
+net.option.tip.Show_Paint_Events=Show MozAfterPaint events as green lines inside the timeline
+
+# LOCALIZATION NOTE (net.option.Show_BFCache_Responses, net.option.tip.Show_BFCache_Responses):
+# Net panel option (located in tab's option menu). If set to true, the Net panel also displays responses coming from
+# BFCache (back-forward cache). See also: https://developer.mozilla.org/En/Working_with_BFCache
+net.option.Show_BFCache_Responses=Show BFCache Responses
+net.option.tip.Show_BFCache_Responses=Also show responses from Back-Forward Cache
+
+# LOCALIZATION NOTE (script.Break_On_Next, script.Disable_Break_On_Next):
+# Tooltip used for the Break On Next button inside panel toolbar of the Script panel.
+# (breaking on next executed JavaScript statement)
+script.Break_On_Next=Break On Next
+script.Disable_Break_On_Next=Disable Break On Next
+
+ShowHttpHeaders=Show HTTP Headers
+
+# LOCALIZATION NOTE (plural.Request_Count2): Semicolon list of plural forms.
+# A label used in the Net panel. Displays the number of HTTP requests executed by the current page.
+# %1 = Number of requests
+# example: 21 requests
+plural.Request_Count2=%1$S request;%1$S requests
+
+FromCache=from cache
+StopLoading=Stop Loading
+net.tip.Stop_Loading=Stop loading the request
+LargeData=(Very Large Data)
+ShowComputedStyle=Show Computed Style
+StyleGroup-text=Text
+StyleGroup-background=Background
+StyleGroup-box=Box Model
+StyleGroup-layout=Layout
+StyleGroup-other=Other
+Dimensions=%S x %S
+
+# LOCALIZATION NOTE (CopyColor, css.tip.Copy_Color):
+# Context menu item for color values inside the CSS panel.
+# Copies the color value to the clipboard.
+CopyColor=Copy Color
+css.tip.Copy_Color=Copy the color to the clipboard
+
+# LOCALIZATION NOTE (CopyImageLocation, css.tip.Copy_Image_Location,
+# OpenImageInNewTab, css.tip.Open_Image_In_New_Tab):
+# Context menu items for images inside the CSS panel.
+# Allow copying the URL of an image to the clipboard and opening it in a new browser tab
+CopyImageLocation=Copy Image Location
+css.tip.Copy_Image_Location=Copy the URL of the image to the clipboard
+OpenImageInNewTab=Open Image in New Tab
+css.tip.Open_Image_In_New_Tab=Open the image in a new browser tab
+
+# LOCALIZATION NOTE (callstack.option.Omit_Object_Path_Stack, callstack.option.tip.Omit_Object_Path_Stack):
+# Stack side panel option (located in tab's option menu). If set to true,
+# the object path stack won't be displayed.
+OmitObjectPathStack=Omit Toolbar Stack
+callstack.option.tip.Omit_Object_Path_Stack=Do not display the object path stack
+
+Load_Original_Source=Load Original Source
+css.tip.Load_Original_Source=Discard the changes and load the original CSS
+
+# LOCALIZATION NOTE (Copy_Rule_Declaration, css.tip.Copy_Rule_Declaration):
+# Menu item label and tooltip used in CSS panel/Style side panel context menu.
+# Allows copying the current CSS rule including all its properties to the clipboard.
+Copy_Rule_Declaration=Copy Rule Declaration
+css.tip.Copy_Rule_Declaration=Copy the rule including all its properties to the clipboard
+
+# LOCALIZATION NOTE (Copy_Style_Declaration, css.tip.Copy_Style_Declaration):
+# Menu item label and tooltip used in CSS panel/Style side panel context menu.
+# Allows copying the current CSS rule's properties to the clipboard.
+Copy_Style_Declaration=Copy Style Declaration
+css.tip.Copy_Style_Declaration=Copy the rule's properties to the clipboard
+
+# LOCALIZATION NOTE (plural.Error_Count2): Semicolon list of plural forms.
+# A label used in for Firebug Start Button. Displays the number of JavaScript errors found by Firebug.
+# %1 = Number of errors
+# example: 111 Errors
+plural.Error_Count2=%1$S Error;%1$S Errors
+
+moduleManager.title=%S Panel is disabled
+moduleManager.desc3=Use Firebug's toolbar button to enable/disable all panels at once. Use each panel's tab menu for individual control.
+moduleManager.Enable=Enable
+
+# LOCALIZATION NOTE (moduleManager.scriptPanelNotAvailable): A description used in the Script panel
+# this is for a bug that appeared in Firefox 9. Related to bug712289
+moduleManager.scriptPanelNotAvailable=The Script panel is disabled in Firefox 9 running on 32 bit Mac or Linux due to a bug in the debugger service.<br/><b>Please use Firefox 10+</b> (recommended) or a version of Firefox prior to 9 on these Operating Systems.<br/><br/>We are sorry for the inconvenience!
+
+Suspend_Firebug=Suspend Firebug
+Resume_Firebug=Resume Firebug
+Reset_Panels_To_Disabled=Reset Panels To Disabled
+Open_Console=Open Console
+Open_Console_Tooltip=Open Trace Console for Firebug.
+Scope_Chain=Scope Chain
+
+# LOCALIZATION NOTE (With_Scope, Call_Scope, Window_Scope):
+# Names of kinds of scopes. Probably best left in English.
+# With: the scope inside of the with(obj) {} statement
+With_Scope=With
+# Call: the scope inside of a function eg function foo() { XXX here XXX var f = function() {} };
+Call_Scope=Call
+# Window: the scope inside of a Javascript window object.
+Window_Scope=Window
+
+Logs=Logs
+Options=Options
+Copy_Stack=Copy Stack
+Copy Exception=Copy Exception
+
+# LOCALIZATION NOTE (requestinfo.Blocking, requestinfo.Resolving, requestinfo.Connecting,
+# requestinfo.Sending, requestinfo.Waiting, requestinfo.Receiving, requestinfo.ContentLoad,
+# requestinfo.WindowLoad):
+# Net panel timing info labels. Displayed in a tooltip (aka time-info-tip) when hovering the
+# waterfall graph in the Net panel.
+requestinfo.Blocking=Blocking
+requestinfo.Resolving=DNS Lookup
+requestinfo.Connecting=Connecting
+requestinfo.Sending=Sending
+requestinfo.Waiting=Waiting
+requestinfo.Receiving=Receiving
+requestinfo.ContentLoad='DOMContentLoaded' (event)
+requestinfo.WindowLoad='load' (event)
+
+# LOCALIZATION NOTE (requestinfo.started.label, requestinfo.phases.label, requestinfo.timings.label):
+# Labels used within a tooltip (aka time-info-tip) for waterfall graph in the Net panel.
+requestinfo.started.label=Request start time since the beginning
+requestinfo.phases.label=Request phases start and elapsed time relative to the request start:
+requestinfo.timings.label=Event timing relative to the request start:
+
+search.Firebug_Search=Firebug Search
+
+# LOCALIZATION NOTE (search.Next, search.Previous, search.Case_Sensitive, search.Case_Insensitive,
+# search.Multiple_Files, search.Use_Regular_Expression):
+# Labels used within an options menu for the search box. This menu is displayed if the search box is focused.
+search.Next=Next
+search.tip.Next=Search for the next match
+search.Previous=Previous
+search.tip.Previous=Search for the previous match
+search.Case_Sensitive=Case Sensitive
+search.tip.Case_Sensitive=Consider the case when searching
+search.Case_Insensitive=Case Insensitive
+search.tip.Case_Insensitive=Ignore the case when searching
+search.Multiple_Files=Multiple Files
+search.tip.Multiple_Files=Search inside all files related to this panel
+search.Use_Regular_Expression=Use Regular Expression
+search.tip.Use_Regular_Expression=Interpret the entered string as a regular expression when searching
+
+# LOCALIZATION NOTE (search.html.CSS_Selector, search.net.Headers, search.net.Parameters, search.net.Response_Bodies,
+# search.script.Multiple_Files):
+# Labels used within an options menu for the search box. This menu is displayed if the search box is focused.
+# These labels are specific to a certain panel.
+search.html.CSS_Selector=CSS Selector
+search.net.Headers=Headers
+search.net.Parameters=Parameters
+search.net.Response_Bodies=Response Bodies
+search.net.tip.Response_Bodies=Search also in response bodies
+
+firebug.console.Persist=Persist
+firebug.console.Do_Not_Clear_On_Reload2=Do not clear the panel on page reload
+firebug.console.Show_All_Log_Entries=Show all log entries
+firebug.console.Errors=Errors
+firebug.console.Filter_by_Errors=Filter by errors
+firebug.console.Warnings=Warnings
+firebug.console.Filter_by_Warnings=Filter by warnings
+firebug.console.Info=Info
+firebug.console.Filter_by_Info=Filter by info
+firebug.console.Debug_Info=Debug Info
+firebug.console.Filter_by_Debug_Info=Filter by debug info
+
+firebug.Deactivate_Firebug=Deactivate Firebug
+firebug.tip.Deactivate_Firebug=Deactivate Firebug for the current website
+firebug.ShowFirebug=Open Firebug
+firebug.menu.tip.Open_Firebug=Show the Firebug UI
+firebug.HideFirebug=Hide Firebug
+firebug.menu.tip.Minimize_Firebug=Minimize Firebug, but keep it active
+firebug.FocusFirebug=Focus Firebug Window
+firebug.menu.tip.Focus_Firebug=Focus Detached Firebug Window
+
+firebug.menu.Enable_All_Panels=Enable All Panels
+firebug.menu.tip.Enable_All_Panels=Enable all activable panels
+firebug.menu.Disable_All_Panels=Disable All Panels
+firebug.menu.tip.Disable_All_Panels=Disable all activable panels
+firebug.menu.Customize_shortcuts=Customize Shortcuts
+firebug.menu.tip.Customize_Shortcuts=Customize Firebug's internal key bindings
+firebug.Options=Options
+firebug.menu.tip.Options=Global Firebug preferences
+firebug.menu.Enable_Accessibility_Enhancements=Enable Accessibility Enhancements
+firebug.menu.tip.Enable_Accessibility_Enhancements=Enable full control via keyboard and other accessibility enhancements
+firebug.menu.Activate_Same_Origin_URLs2=Activate For Same Origin URLs
+firebug.menu.tip.Activate_Same_Origin_URLs=Activate Firebug for URLs matching the same origin policy
+firebug.menu.Reset_All_Firebug_Options=Reset All Firebug Options
+firebug.menu.tip.Reset_All_Firebug_Options=Reset all Firebug preferences to their default values
+firebug.menu.Firebug_Online=Firebug Online
+firebug.menu.tip.Firebug_Online=Websites related to Firebug
+firebug.menu.Extensions=Firebug Extensions...
+firebug.menu.tip.Extensions=Download and Install Firebug Extensions
+firebug.menu.Vertical_Panels=Vertical Panels
+firebug.menu.tip.Vertical_Panels=Toggle the layout of the Firebug main and side panels
+firebug.menu.Show_Info_Tips=Show Info Tips
+firebug.menu.tip.Show_Info_Tips=Show popups with information about the hovered element
+firebug.Show_Error_Count=Show Error Count
+firebug.menu.tip.Show_Error_Count=Show the number of errors logged inside the console
+firebug.TextSize=Text Size
+firebug.menu.tip.Text_Size=Change the text size used in Firebug
+firebug.IncreaseTextSize=Increase Text Size
+firebug.menu.tip.Increase_Text_Size=Increase the text sizes used in Firebug
+firebug.DecreaseTextSize=Decrease Text Size
+firebug.menu.tip.Decrease_Text_Size=Decrease the text sizes used in Firebug
+firebug.NormalTextSize=Normal Text Size
+firebug.menu.tip.Normal_Text_Size=Reset the text size used in Firebug to the default
+firebug.Website=Firebug Website...
+firebug.menu.tip.Website=Open the official Firebug website
+firebug.help=Help...
+firebug.menu.tip.help=Open the page with links to pages explaining Firebug
+firebug.Documentation=Documentation...
+firebug.menu.tip.Documentation=Open the documentation about Firebug
+firebug.KeyShortcuts=Keyboard Shortcuts...
+firebug.menu.tip.Key_Shortcuts=Open the list of mouse and keyboard shortcuts available in Firebug
+firebug.Forums=Discussion Group...
+firebug.menu.tip.Forums=Open the discussion group site
+firebug.Issues=Issue Tracker...
+firebug.menu.tip.Issues=Open the issue tracker site
+firebug.Donate=Contribute...
+firebug.menu.tip.Donate=Open the contribution site
+firebug.About=About...
+firebug.menu.tip.About=Information about Firebug
+ProfileJavaScript=Profile JavaScript
+firebug.menu.tip.Profile_JavaScript=Profile JavaScript execution time
+firebug.Search=Search
+firebug.menu.tip.Search=Set focus to the search field
+
+# Firebug shortcuts
+firebug.shortcut.reenterCommand.label=Re-enter Command
+firebug.shortcut.tip.reenterCommand=Re-enter the last command into the Command Line
+firebug.shortcut.toggleInspecting.label=Toggle Inspecting
+firebug.shortcut.tip.toggleInspecting=Enable/disable the Inspector
+firebug.shortcut.toggleQuickInfoBox.label=Toggle Quick Info Box
+firebug.shortcut.tip.toggleQuickInfoBox=Enable/disable the display of a panel with information about the currently inspected element
+firebug.shortcut.toggleProfiling.label=Toggle Profiling
+firebug.shortcut.tip.toggleProfiling=Enable/disable the JavaScript Profiler
+firebug.shortcut.focusCommandLine.label=Focus Command Line
+firebug.shortcut.tip.focusCommandLine=Open Firebug and set the focus to the Command Line / toggle the Command Line Popup
+firebug.shortcut.focusFirebugSearch.label=Focus Firebug Search
+firebug.shortcut.tip.focusFirebugSearch=Set the focus to the search field
+firebug.shortcut.focusWatchEditor.label=Focus Watch Editor
+firebug.shortcut.tip.focusWatchEditor=Switch to the Script panel and set the focus to the field for entering a new watch expression
+firebug.shortcut.focusLocation.label=Focus Location
+firebug.shortcut.tip.focusLocation=Open the Location Menu
+firebug.shortcut.nextObject.label=Next Object
+firebug.shortcut.tip.nextObject=Select the next object in the element path of a panel
+firebug.shortcut.previousObject.label=Previous Object
+firebug.shortcut.tip.previousObject=Select the previous object in the element path of a panel
+firebug.shortcut.customizeFBKeys.label=Customize Firebug Keys
+firebug.shortcut.tip.customizeFBKeys=Open the Firebug Shortcut Bindings dialog
+firebug.shortcut.detachFirebug.label=Open Firebug in New Window
+firebug.shortcut.tip.detachFirebug=Detach Firebug into its own window
+firebug.shortcut.leftFirebugTab.label=Switch to left Firebug panel
+firebug.shortcut.tip.leftFirebugTab=Switch to the Firebug panel to the left
+firebug.shortcut.rightFirebugTab.label=Switch to right Firebug panel
+firebug.shortcut.tip.rightFirebugTab=Switch to the Firebug panel to the right
+firebug.shortcut.toggleFirebug.label=Open Firebug
+firebug.shortcut.tip.toggleFirebug=Open/Minimize Firebug UI
+firebug.shortcut.closeFirebug.label=Deactivate Firebug
+firebug.shortcut.tip.closeFirebug=Deactivate Firebug for the current website
+firebug.shortcut.previousFirebugTab.label=Previous Firebug panel
+firebug.shortcut.tip.previousFirebugTab=Switch to the previously selected Firebug panel
+firebug.shortcut.clearConsole.label=Clear Console
+firebug.shortcut.tip.clearConsole=Remove all logs from the console
+firebug.shortcut.openTraceConsole.label=Open Trace Console
+firebug.shortcut.tip.openTraceConsole=Open the FBTrace Console
+firebug.shortcut.navBack.label=Go Back
+firebug.shortcut.tip.navBack=Switch to the previous panel or location list item of the navigation history
+firebug.shortcut.navForward.label=Go Forward
+firebug.shortcut.tip.navForward=Switch to the next panel or location list item of the navigation history
+firebug.shortcut.increaseTextSize.label=Increase Text Size
+firebug.shortcut.tip.increaseTextSize=Increase the text sizes used in Firebug
+firebug.shortcut.decreaseTextSize.label=Decrease Text Size
+firebug.shortcut.tip.decreaseTextSize=Decrease the text sizes used in Firebug
+firebug.shortcut.normalTextSize.label=Normal Text Size
+firebug.shortcut.tip.normalTextSize=Reset the text sizes used in Firebug to the default
+firebug.shortcut.help.label=Open help
+firebug.shortcut.tip.help=Open the page answering the frequently asked questions
+firebug.shortcut.toggleBreakOn.label=Toggle Break On ...
+firebug.shortcut.tip.toggleBreakOn=Enable/disable stopping the script execution on specific events occurring inside a panel
+
+firebug.panel_selector=Panel Selector
+
+customizeShortcuts=Firebug Shortcut Bindings
+
+# A11y Chrome Labels (not visible, spoken by screen readers)
+a11y.labels.panel_tools=panel tools
+a11y.labels.firebug_panels=Firebug panels
+a11y.labels.firebug_side_panels=Firebug side panels
+a11y.labels.firebug_window=Firebug window
+a11y.labels.firebug_status=Firebug status
+a11y.labels.reset=reset
+a11y.labels.reset_shortcut=reset %S shortcut
+aria.labels.inactive_panel=inactive panel
+
+# A11y panelNode labels (not visible, spoken by screen readers)
+a11y.labels.log_rows=log rows
+a11y.labels.call_stack=call stack
+a11y.labels.document_structure=document structure
+a11y.labels.title_panel= %S panel
+a11y.labels.title_side_panel= %S side panel
+a11y.labels.cached=cached
+aria.labels.stack_trace=stack trace
+
+# A11y Domplate labels (not visible, spoken by screen readers)
+a11y.layout.padding=padding
+a11y.layout.border=border
+a11y.layout.margin=margin
+a11y.layout.position=position
+a11y.layout.position_top=position top
+a11y.layout.position_right=position right
+a11y.layout.position_bottom=position bottom
+a11y.layout.position_left=position left
+a11y.layout.margin_top=margin top
+a11y.layout.margin_right=margin right
+a11y.layout.margin_bottom=margin bottom
+a11y.layout.margin_left=margin left
+a11y.layout.border_top=border top
+a11y.layout.border_right=border right
+a11y.layout.border_bottom=border bottom
+a11y.layout.border_left=border left
+a11y.layout.padding_top=padding top
+a11y.layout.padding_right=padding right
+a11y.layout.padding_bottom=padding bottom
+a11y.layout.padding_left=padding left
+a11y.layout.top=top
+a11y.layout.right=right
+a11y.layout.bottom=bottom
+a11y.layout.left=left
+a11y.layout.width=width
+a11y.layout.height=height
+a11y.layout.size=size
+a11y.layout.z-index=z-index
+a11y.layout.box-sizing=box-sizing
+a11y.layout.clientBoundingRect=bounding client rect
+a11y.descriptions.press_enter_to_edit_values=Press Enter followed by Tab to edit individual values
+a11y.labels.style_rules=style rules
+aria.labels.inherited_style_rules=inherited style rules
+a11y.labels.computed_styles=computed styles
+a11y.labels.dom_properties=DOM properties
+
+# LOCALIZATION NOTE:
+# Used by a11y. Not directly visible in the UI, intended for screen readers.
+# Describe contents of inline editor fields
+a11y.labels.inline_editor=inline editor
+a11y.labels.value_for_attribute_in_element=value for %S attribute in %S element
+a11y.labels.attribute_for_element=attribute for %S element
+a11y.labels.text_contents_for_element=text contents for %S element
+a11y.labels.defined_in_file=defined in %S
+a11y.labels.declarations_for_selector=style declarations for "%S" selector
+a11y.labels.property_for_selector=CSS property for selector: %S
+a11y.labels.value_property_in_selector=%S property value for selector %S
+a11y.labels.css_selector=CSS selector
+a11y.labels.source_code_for_file=source code for file %S
+a11y.labels.press_enter_to_add_new_watch_expression=press enter to add a new watch expression
+
+# LOCALIZATION NOTE (a11y.labels.overridden):
+# Used by a11y. Not directly visible in the UI, intended for screen readers.
+# Indicates, that a style property is overridden by selector with higher specificity
+a11y.labels.overridden=overridden
+
+# LOCALIZATION NOTE (a11y.hasConditionalBreakpoint, a11y.hasDisabledBreakpoint):
+# Used by a11y. Not directly visible in the UI, intended for screen readers.
+# Existence and state of a breakpoint
+a11y.updates.has_conditional_break_point=has conditional break point
+a11y.updates.has_disabled_break_point=has disabled break point
+
+# LOCALIZATION NOTE (a11y.updates.script_suspended_on_line_in_file): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# first %S = Line number, second %S = Function name, third %S = File name
+a11y.updates.script_suspended_on_line_in_file=Script suspended on line %S in %S, file %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_logrows): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a console panel search
+# first %S = String key the user is looking for, second %S = Number of rows that contain the matched text
+# examples: Match found for "test" in 17 log rows
+a11y.updates.match_found_in_logrows=Match found for "%S" in %S log rows
+
+# LOCALIZATION NOTE (a11y.updates.match_found_for_on_line): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a script panel search
+# first %S = String key the user is looking for, second $S = Line number the match was found on, third %S = File name the match was found in
+# examples: Match found for "window.alert" on line 322 in utilities.js
+a11y.updates.match_found_for_on_line=Match found for "%S" on line %S in %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_element): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing an HTML panel search (if it is found in an element node)
+# first %S = Matched search string, second %S = HTML element name containing the matched string, third %S = XPATH string specifying the matched element
+# example: Match found for "obj" in object element at /html/body/object[2]
+a11y.updates.match_found_in_element=Match found for "%S" in %S element at path %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_attribute): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing an HTML  panel search (if it is found in an attribute node)
+# first %S = Search string that was matched, second %S = Attribute name, third %S = Attribute value,
+# fourth %S = HTML element name containing, fifth %S = XPATH string specifying  the matched element
+# example: Match found for "abindex" in tabindex="0" in span element at /html/body/span[2]
+a11y.updates.match_found_in_attribute=Match found for "%S" in attribute %S=%S of %S element at path %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_text_content): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing an HTML panel search (if it is found in a text element's contents)
+# first %S = Matched search string, second %S = Element's text content,
+# third %S = HTML element name containing, fourth %S = XPATH string specifying  the matched element
+# example: Match found for "Firebug Rocks!" in h2 element at /html/body/h2[2]
+a11y.updates.match_found_in_text_content=Match found for "%S" in text content: %S of %S element at path %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_selector): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a CSS panel search (if it is found in a selector)
+# first %S = Matched search string, second %S = Selector, in which the match was found
+# example: Match found for "main" in #mainContent h2 {
+a11y.updates.match_found_in_selector=Match found for "%S" in selector %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_style_property): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a CSS panel search (if it is found in a style declaration)
+# first %S = Matched search string, second %S = Style property, in which the match was found
+# third %S = Selector the style declaration applies to
+# example: Match found for background in style declaration background-repeat: "repeat-x"; in selector #mainContent {
+a11y.updates.match_found_in_style_declaration=Match found for "%S" in style declaration %S in selector %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_dom_property): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a DOM panel search
+# first %S = Matched search string, second %S = DOM property, in which the match was found
+# examples: Match found for "time" in DOM property _starttime
+a11y.updates.match_found_in_dom_property=Match found for "%S" in DOM property %S
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_net_row): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a Net panel search
+# first %S = Matched search string, second %S = File name associated to the row, in which the match was found,
+# third %S = Column, in which the match was found, fourth %S = Column value
+# examples: Match found for "792" in GET loading_animation.gif, timeline: 792 ms
+a11y.updates.match_found_in_net_row=Match found for "%S" in %S, %S: %S;
+
+# LOCALIZATION NOTE (a11y.updates.match_found_in_net_summary_row): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Describes the match found when performing a Net panel search (if it is found in the Net summary row)
+# first %S = Matched search string, second %S = Column value, in which the match was found
+# examples: Match found for "05" in net summary row: 4.05s
+a11y.updates.match_found_in_net_summary_row=Match found for "%S" in net summary row: %S
+
+# LOCALIZATION NOTE (a11y.updates.no_matches_found): Used by a11y. Not directly
+# visible in the UI, intended for screen readers.
+# Indicates that the searched string was not matched
+# %S = Search string
+# examples: No matched found for "wefkhwefkgwekhjgjh"
+a11y.updates.no_matches_found=no matches found for "%S"
+
+# LOCALIZATION NOTE (confirmation.Reset_All_Firebug_Options):
+# Text in the confirmation dialog shown when the options should be reset
+confirmation.Reset_All_Firebug_Options=Are you sure to reset all Firebug options to the default state?
+
+# LOCALIZATION NOTE (confirmation.Edit_CSS_Source):
+# If the user has changed the CSS and clicks on the Source Edit button, a confirmation dialog is
+# displayed containing the following message
+confirmation.Edit_CSS_Source=Your existing CSS edits will be discarded.\nAre you sure you want to edit the source?
+
+# Console messages
+warning.Console_must_be_enabled=Console must be enabled
+warning.Command_line_blocked?=Command line blocked?
+message.Reload_to_activate_window_console=Reload to activate window console
+
+# LOCALIZATION NOTE (message.sourceNotAvailableFor, message.The_resource_from_this_URL_is_not_text):
+# An error message displayed in the Script panel when a source can't be displayed
+# for specific URL.
+# examples: Reload the page to get source for: http://www.example.com/script.js
+# examples: The resource from this URL is not text: http://www.example.com/script.js
+message.sourceNotAvailableFor=Reload the page to get source for
+message.The_resource_from_this_URL_is_not_text=The resource from this URL is not text
+
+# LOCALIZATION NOTE (firebug.history.Go_back_to_this_script, firebug.history.Go_forward_to_this_script,
+# firebug.history.Stay_on_this_page): Tooltips for menu items in the history popup menu.
+firebug.history.Go_back_to_this_panel=Go back to this panel
+firebug.history.Stay_on_this_panel=Stay on this panel
+firebug.history.Go_forward_to_this_panel=Go forward to this panel
+
+# LOCALIZATION NOTE (firebug.history.Go_back_one_script, firebug.history.Go_forward_one_script):
+# Tooltips for back/forward buttons on the Script panel toolbar.
+firebug.history.Go_back=Go back
+firebug.history.Go_forward=Go forward
+
+# LOCALIZATION NOTE (script.warning.inactive_during_page_load, script.suggestion.inactive_during_page_load):
+# Message displayed in the Script panel, if the debugger is inactive during page load.
+# The suggestion message represents an advice how to solve the problem. It contains a link enclosed in <a> and </a>
+# to reload the sources
+script.warning.inactive_during_page_load=Script Panel was inactive during page load
+script.suggestion.inactive_during_page_load2=<a>Reload</a> to see all sources
+
+# LOCALIZATION NOTE (script.warning.javascript_not_enabled, script.suggestion.javascript_not_enabled):
+# This message is displayed within the Script panel if javascript is not enabled.
+# The suggestion message represents an advice how to solve the problem.
+script.warning.javascript_not_enabled=Javascript is not enabled
+script.suggestion.javascript_not_enabled=See Firefox > Tools > Options > Content > Enable Javascript
+
+# LOCALIZATION NOTE (script.button.enable_javascript): Title for a link, that is displayed on
+# the Script panel, if Javascript is disabled. This link allows to enable it.
+script.button.enable_javascript=Enable JavaScript and Refresh
+
+# LOCALIZATION NOTE (script.warning.all_scripts_filtered, script.suggestion.all_scripts_filtered):
+# Message displayed in the Script panel, if no JavaScripts are available for the current page.
+# The suggestion message represents an advice how to solve the problem.
+script.warning.all_scripts_filtered=All scripts were filtered
+script.suggestion.all_scripts_filtered=See the script filter setting in the panel toolbar
+
+# LOCALIZATION NOTE (script.warning.no_system_source_debugging, script.suggestion.no_system_source_debugging):
+# Message displayed in the Script panel, if the page opened is accessed via a chrome URL.
+# The suggestion message represents an advice how to solve the problem.
+script.warning.no_system_source_debugging=System sources can't be debugged
+script.suggestion.no_system_source_debugging=Firebug currently can't be used to debug user agent internal files. See <a>issue 5110</a> for the reason.
+
+# LOCALIZATION NOTE (script.warning.debugger_active, script.suggestion.debugger_active):
+# Message displayed in the Script panel, if the page doesn't include any JavaScript.
+# The suggestion message represents an advice how to solve the problem.
+script.warning.no_javascript=No Javascript on this page
+script.suggestion.no_javascript2=If <script> tags have a "type" attribute, it should equal "text/javascript" or "application/javascript". Also scripts must be parsable (syntactically correct).
+
+# LOCALIZATION NOTE (script.warning.debugger_active, script.suggestion.debugger_active):
+# Message displayed in the Script panel, if the page is opened in different tabs/windows and
+# the debugger is already halted at a breakpoint inside another tab/window.
+# The suggestion message represents an advice how to solve the problem.
+script.warning.debugger_active=Debugger is already active
+script.suggestion.debugger_active=The debugger is currently halted at a breakpoint on another page.
+script.button.Go_to_that_page=Go to that page
+
+script.warning.debugger_not_activated=Debugger not activated
+script.suggestion.debugger_not_activated=Debugger not activated
+
+# firebug.dtd
+firebug.Firebug=Firebug
+firebug.Close=Close
+firebug.View=View
+firebug.Help=Help
+firebug.Run=Run
+firebug.Copy=Copy
+firebug.History=History
+firebug.Run_the_entered_command=Run the entered command
+firebug.Clear_the_Command_Editor=Clear the Command Editor
+firebug.Copy_the_script_as_a_bookmarklet=Copy the script as a bookmarklet
+firebug.Insert_a_previously_entered_command=Insert a previously entered command
+firebug.AlwaysOpenInWindow=Always Open in New Window
+firebug.OpenWith=Open With Editor
+firebug.menu.tip.Open_With=Open the content in an external editor
+firebug.Permissions=Sites...
+firebug.Configure_Editors=Configure Editors
+
+script.tip.Script_Type=Filter on script type
+script.tip.Script_Filter_Static=Just display scripts loaded together with the page
+script.tip.Script_Filter_Evals=Display scripts loaded together with the page and scripts created via eval()
+script.tip.Script_Filter_Events=Display scripts loaded together with the page, scripts created via eval() and event listeners
+script.tip.Script_Filter_All=Display all kinds of scripts
+
+# LOCALIZATION NOTE (firebug.labelWithShortcut):
+# Label for an item incl. assigned keyboard shortcut
+# example: Continue (F8)
+# example: Step Out (Shift+F11)
+firebug.labelWithShortcut=%S (%S)
+
+# LOCALIZATION NOTE (firebug.Rerun, script.tip.Rerun, firebug.Continue, script.tip.Continue,
+# firebug.StepOver, script.tip.Step_Over, firebug.StepInto, script.tip.Step_Into,
+# firebug.StepOut, script.tip.Step_Out, firebug.RunUntil, script.tip.Run_Until):
+# Labels used for debugger options available in the Script panel.
+script.Rerun=Rerun
+script.tip.Rerun=Rerun the current function call stack
+script.Continue=Continue
+script.tip.Continue=Continue the JavaScript execution
+script.Step_Over=Step Over
+script.tip.Step_Over=Execute the next command
+script.Step_Into=Step Into
+script.tip.Step_Into=Execute the next command and jump into functions
+script.Step_Out=Step Out
+script.tip.Step_Out=Execute the rest of the function's body and returns to its caller
+firebug.RunUntil=Run to This Line
+script.tip.Run_Until=Execute the JavaScript until the specified line
+
+# LOCALIZATION NOTE (firebug.Inspect, firebug.InspectElement, firebug.InspectElementWithFirebug)
+# Labels for Firebug Inspector. Used by a button (available in Firefox Customize Toolbar dialog)
+# and also page context menu. As soon as built-in inspector is having its own "Inspect Element"
+# Firebug should start using "Inspect Element with Firebug" to distinguish itself.
+firebug.Inspect=Inspect
+firebug.InspectElement=Inspect Element
+firebug.InspectElementWithFirebug=Inspect Element with Firebug
+
+firebug.BreakOnErrors=Break on Errors
+firebug.InspectTooltip=Click an element in the page to inspect
+firebug.EditHTMLTooltip=Edit this HTML
+firebug.Profile=Profile
+firebug.Clear=Clear
+firebug.ClearConsole=Clear Console
+firebug.ClearTooltip=Clear the console
+firebug.All=All
+firebug.Images=Images
+firebug.Flash=Flash
+
+# editors.dtd
+editors.Configured_Firebug_Editors=Configured Firebug Editors
+editors.Editor=Editor
+editors.Executable=Executable
+editors.Launch_Arguments=Launch Arguments
+editors.Add=Add
+editors.Remove=Remove
+editors.Change=Change
+editors.Move_Up=Move Up
+editors.Close=Close
+editors.Browse=Browse...
+changeEditor.Editor_Configuration=Editor Configuration
+changeEditor.Name=Name:
+changeEditor.Executable=Executable:
+changeEditor.CmdLine=Arguments:
+changeEditor.Supplied_arguments=Arguments supplied by Firebug:
+changeEditor.URL_of_file=URL of the file (if %url is not present, %file will be added by default)
+changeEditor.Path_to_local_file=Path to the local file (or to the temporary copy)
+changeEditor.Line_number=Line number (if available)
+changeEditor.Invalid_Application_Path=Invalid Application Path
+changeEditor.Application_does_not_exist=The specified application doesn't exist!
+
+# LOCALIZATION NOTE (firebug.Edit, firebug.css.sourceEdit, firebug.css.liveEdit,
+# firebug.EditCSSTooltip, firebug.css.sourceEdit.tooltip, firebug.css.liveEdit.tooltip)
+# Used in the CSS panel for the Edit button.
+firebug.Edit=Edit
+firebug.css.sourceEdit=Source Edit
+firebug.css.sourceEdit.tooltip=Edit stylesheet source as loaded by the browser
+firebug.css.liveEdit=Live Edit
+firebug.css.liveEdit.tooltip=Edit CSS extracted from the browser
+firebug.EditCSSTooltip=Edit this stylesheet
+
+# LOCALIZATION NOTE (firebug.activation.privateBrowsingMode):
+# Message displayed in the Console panel when the private browsing mode is on.
+# (in Firefox 4+ it's 'Start Private Browsing')
+firebug.activation.privateBrowsingMode=Sites are not remembered in Private Browsing Mode
+
+# LOCALIZATION NOTE (firebug.breakpoint.showBreakNotifications):
+# Label used within Script panel's options menu. Represents an option, that can be used
+# to switch of the break notifications.
+firebug.breakpoint.showBreakNotifications=Show Break Notifications
+firebug.breakpoint.tip.Show_Break_Notifications=Show a notification box, when a Break On ... feature or the debugger; keyword stopped the JavaScript execution
+
+# LOCALIZATION NOTE (firebug.activation.privateBrowsingMode):
+# Message displayed in a break notification popup next to a checkbox.
+# Includes a link enclosed in <a> and </a> to open the panel's options menu.
+firebug.breakpoint.doNotShowBreakNotification2=You can disable/enable break notifications in <a>panel's tab menu</a>.
+
+# LOCALIZATION NOTE (firebug.bon.cause.disableDebuggerKeyword2, firebug.bon.tooltip.disableDebuggerKeyword2):
+# Message displayed in a break notification popup when break on debugger; keyword happens.
+# The keyword can be disabled by creating a disabled breakpoint on the same line.
+# The other label is used for a tooltip on the action button.
+firebug.bon.cause.disableDebuggerKeyword2=Clicking the 'Disable' button overrides 'debugger' with a disabled breakpoint.
+firebug.bon.tooltip.disableDebuggerKeyword2=Creates a disabled breakpoint
+
+# LOCALIZATION NOTE (firebug.bon.scriptPanelNeeded): A label used by 'Break On Next' button
+# This feature needs the Script panel enabled in order to work.
+firebug.bon.scriptPanelNeeded=(the Script panel must be enabled to use this feature)
+
+# LOCALIZATION NOTE (firebug.dom.noChildren):
+# Message displayed in the DOM panel in cases, in which there are no children objects
+# and so nothing to display.
+firebug.dom.noChildren2=There are no child objects
+
+# LOCALIZATION NOTE (firebug.reps.more): Label shown when the displayed array/list has
+# more elements then displayed on the screen. "..." is automatically appended.
+firebug.reps.more=more
+
+# LOCALIZATION NOTE (firebug.reps.reference): Label shown when the displayed array/list has
+# a reference to itself (a cycle).
+firebug.reps.reference=Cycle reference detected
+
+# LOCALIZATION NOTE (firebug.storage.totalItems): Semicolon list of plural forms.
+# Label used in the DOM panel for local/session/global storage.
+# It's informing the user about the number of items in the storage.
+# %1 = Number of storage items
+# example: 1 item in Storage
+# example: 2 items in Storage
+firebug.storage.totalItems=%1$S item in Storage;%1$S items in Storage
+
+# LOCALIZATION NOTE (firebug.reps.table.ObjectProperties):
+# Label used in the header of the output of the console.table() method inside the Console panel,
+# if an object is passed into it.
+firebug.reps.table.ObjectProperties=Object Properties
+
+# LOCALIZATION NOTE (firebug.completion.empty):
+# Label used in the command line by the auto-complete function.
+# Displayed, if there are no possible completions.
+firebug.completion.empty=(no completions)
+
+# LOCALIZATION NOTE (firebug.failedToPreviewObjectURL, firebug.failedToPreviewImageURL):
+# Label used in an image preview infotip in the HTML panel when hovering over an <img> element
+# when loading of the given URL fails. The firebug.failedToPreviewObjectURL is specifically used
+# for moz-filedata (HTML5),
+# see: https://developer.mozilla.org/en/Using_files_from_web_applications#Example.3a_Using_object_URLs_to_display_images
+firebug.failedToPreviewObjectURL=The URL object has been most likely revoked using revokeObjectURL method.
+firebug.failedToPreviewImageURL=Failed to load the given URL
+
+# LOCALIZATION NOTE (firebug.Memory_Profiler_Started):
+# Message logged into the Console panel when memory profiler session starts.
+firebug.Memory_Profiler_Started=Memory Profiler Started
+
+# LOCALIZATION NOTE (firebug.Objects_Added_While_Profiling):
+# Title for a group (logged into the Console panel), that contains a list of new objects
+# allocated within memory profiler session.
+firebug.Objects_Added_While_Profiling=Objects Added While Profiling
+
+# LOCALIZATION NOTE (firebug.Memory_Profiler_Results):
+# Message used within the Console panel when the memory profiler session is finished.
+firebug.Memory_Profiler_Results=Memory Profiler Results
+
+# LOCALIZATION NOTE (firebug.Entire_Session):
+# Label used within memory profiler results to mark summary information for entire session.
+firebug.Entire_Session=Entire Session
+
+# LOCALIZATION NOTE (console.msg.nothing_to_output):
+# Used by the console panel if a Console API is used without any argument.
+console.msg.nothing_to_output=(nothing to output)
+
+# LOCALIZATION NOTE (console.msg.nothing_to_output):
+# Used by the console panel if an empty string is passed into a Console API.
+console.msg.an_empty_string=(an empty string)
+
+# LOCALIZATION NOTE (cookies.legacy.firecookie_detected, cookies.legacy.uninstall, cookies.legacy.uninstall_and_restart):
+# A message and labels used when Firecookie is detected. This extension has been integrated with
+# Firebu and should not be installed together with Firebug 1.10+
+cookies.legacy.firecookie_detected=Firecookie add-on is detected. This add-on has been integrated with Firebug 1.10 by default. To avoid a collision you need to uninstall Firecookie. \n\nYou must restart to finish uninstalling the add-on.
+cookies.legacy.uninstall=Uninstall
+cookies.legacy.uninstall_and_restart=Uninstall && Restart
+
+# LOCALIZATION NOTE (firebug.cmd.help.values, console.cmd.help_title_desc):
+console.cmd.help_title=Command Line API
+console.cmd.help_title_desc=Press F1 to open online Firebug help
+
+# LOCALIZATION NOTE (console.cmd.help.$): Description for Command Line API that is logged
+# in the the Console panel if the user types "help" into the command line.
+console.cmd.help.$=Returns a single element with the given id.
+console.cmd.help.$$=Returns an array of elements that match the given CSS selector.
+console.cmd.help.$x=Returns an array of elements that match the given XPath expression.
+console.cmd.help.dir=Prints an interactive listing of all properties of the object. This looks identical to the view inside the DOM panel.
+console.cmd.help.dirxml=Prints the XML source tree of an HTML or XML element. This looks identical to the view inside the HTML panel. You can click on any node to inspect it in the HTML panel.
+console.cmd.help.cd=By default, command line expressions are relative to the top-level window of the page. cd() allows you to use the window of a frame in the page instead.
+console.cmd.help.clear=Clears the console.
+console.cmd.help.copy=Copies the given parameter to the clipboard. This can be a return value of a function or an object.
+console.cmd.help.inspect=Inspects an object in the most suitable panel, or the panel identified by the optional second argument. The available panel names are "html", "stylesheet", "script", and "dom".
+console.cmd.help.keys=Returns an array containing the names of all properties of the object.
+console.cmd.help.values=Returns an array containing the values of all properties of the object.
+console.cmd.help.debug=Adds a breakpoint on the first line of a function.
+console.cmd.help.undebug=Removes the breakpoint on the first line of a function.
+console.cmd.help.monitor=Turns on logging for all calls to a function.
+console.cmd.help.unmonitor=Turns off logging for all calls to a function.
+console.cmd.help.monitorEvents=Turns on logging for all events dispatched to an object. The optional second argument may define specific events or event types to log. The available event types are "composition", "contextmenu", "drag", "focus", "form", "key", "load", "mouse", "mutation", "paint", "scroll", "text", "ui", "xul", and "clipboard".
+console.cmd.help.unmonitorEvents=Turns off logging for all events dispatched to an object. The optional second argument may define specific events or event families, for which to turn logging off.
+console.cmd.help.profile=Turns on the JavaScript profiler. The optional second argument contains the text to be printed in the header of the profile report.
+console.cmd.help.profileEnd=Turns off the JavaScript profiler and prints its report.
+console.cmd.help.table=Allows to log provided data using tabular layout. The method takes one required parameter that represents table-like data (array of arrays or list of objects). The optional second parameter can be used to specify columns and/or properties to be logged.
+console.cmd.help.$0=Represents the last element selected via the Inspector.
+console.cmd.help.$1=Represents the second last element selected via the Inspector.
+console.cmd.help.$n=Returns one of the 5 last elements selected via the Inspector. This method takes one required parameter, which represents the index of the element (starting at 0).
+console.cmd.help.help=Displays help for all available commands.
diff --git a/extension/skin/classic/migrationArrow.svg b/extension/skin/classic/migrationArrow.svg
index b9826db..2df42c0 100644
--- a/extension/skin/classic/migrationArrow.svg
+++ b/extension/skin/classic/migrationArrow.svg
@@ -1,14 +1,14 @@
-<svg  xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" >
-     <defs>
-          <marker id="Triangle"
-            viewBox="0 0 10 10" refX="3" refY="5"
-            markerUnits="strokeWidth"
-            markerWidth="3" markerHeight="3"
-            style="stroke:#FF9933;"
-            orient="auto">
-            <path d="M 0 0 L 10 5 L 0 10 z" />
-            </marker>
-     </defs>
-     <line id="migrationPath" x1="0" x2="80" y1="0" y2="80" style="background-color:transparent;z-index:2;fill:none;stroke:#FF9933;stroke-width:4;" marker-end="url(#Triangle)"/>
-
+<svg  xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" >
+     <defs>
+          <marker id="Triangle"
+            viewBox="0 0 10 10" refX="3" refY="5"
+            markerUnits="strokeWidth"
+            markerWidth="3" markerHeight="3"
+            style="stroke:#FF9933;"
+            orient="auto">
+            <path d="M 0 0 L 10 5 L 0 10 z" />
+            </marker>
+     </defs>
+     <line id="migrationPath" x1="0" x2="80" y1="0" y2="80" style="background-color:transparent;z-index:2;fill:none;stroke:#FF9933;stroke-width:4;" marker-end="url(#Triangle)"/>
+
 </svg>
\ No newline at end of file
diff --git a/tests/content/commandLine/5130/issue5130.html b/tests/content/commandLine/5130/issue5130.html
index e1d45dc..91f06e3 100755
--- a/tests/content/commandLine/5130/issue5130.html
+++ b/tests/content/commandLine/5130/issue5130.html
@@ -1,29 +1,29 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <title>Issue 5130: Array indices are sorted alphabetically instead of numerically</title>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-</head>
-<body>
-<header>
-    <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5130">Issue 5130</a>:
-        Array indices are sorted alphabetically instead of numerically</h1>
-</header>
-<div>
-    <section id="description">
-        <h3>Steps to reproduce</h3>
-        <ol>
-            <li>Select and enable the Console panel</li>
-            <li>Execute following expression in the command line:<br/>
-                <code style="color:green">console.dir([0,1,2,3,4,5,6,7,8,9,10]);</code>
-            </li>
-            <li>The output should be sorted according to the index (not alphabetically).</li>
-        </ol>
-    </section>
-    <footer>
-        Jan Odvarko <odvarko at gmail.com>
-    </footer>
-</div>
-</body>
-</html>
+<!DOCTYPE html>
+<html>
+<head>
+    <title>Issue 5130: Array indices are sorted alphabetically instead of numerically</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+    <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+</head>
+<body>
+<header>
+    <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5130">Issue 5130</a>:
+        Array indices are sorted alphabetically instead of numerically</h1>
+</header>
+<div>
+    <section id="description">
+        <h3>Steps to reproduce</h3>
+        <ol>
+            <li>Select and enable the Console panel</li>
+            <li>Execute following expression in the command line:<br/>
+                <code style="color:green">console.dir([0,1,2,3,4,5,6,7,8,9,10]);</code>
+            </li>
+            <li>The output should be sorted according to the index (not alphabetically).</li>
+        </ol>
+    </section>
+    <footer>
+        Jan Odvarko <odvarko at gmail.com>
+    </footer>
+</div>
+</body>
+</html>
diff --git a/tests/content/commandLine/5130/issue5130.js b/tests/content/commandLine/5130/issue5130.js
index d759f28..36168a8 100755
--- a/tests/content/commandLine/5130/issue5130.js
+++ b/tests/content/commandLine/5130/issue5130.js
@@ -1,22 +1,22 @@
-function runTest()
-{
-    FBTest.sysout("issue5130.START");
-    FBTest.openNewTab(basePath + "commandLine/5130/issue5130.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.clearCache();
-        FBTest.enableConsolePanel(function(win)
-        {
-            var tasks = new FBTest.TaskList();
-
-            var expr = "console.dir([0,1,2,3,4,5,6,7,8,9,10]);";
-            var expected = /\s*00\s*11\s*22\s*33\s*44\s*55\s*66\s*77\s*88\s*99\s*1010/;
-            tasks.push(FBTest.executeCommandAndVerify, expr, expected,
-                "div", "logRow logRow-dir");
-
-            tasks.run(function() {
-                FBTest.testDone("issue5130.DONE");
-            });
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5130.START");
+    FBTest.openNewTab(basePath + "commandLine/5130/issue5130.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.clearCache();
+        FBTest.enableConsolePanel(function(win)
+        {
+            var tasks = new FBTest.TaskList();
+
+            var expr = "console.dir([0,1,2,3,4,5,6,7,8,9,10]);";
+            var expected = /\s*00\s*11\s*22\s*33\s*44\s*55\s*66\s*77\s*88\s*99\s*1010/;
+            tasks.push(FBTest.executeCommandAndVerify, expr, expected,
+                "div", "logRow logRow-dir");
+
+            tasks.run(function() {
+                FBTest.testDone("issue5130.DONE");
+            });
+        });
+    });
+}
diff --git a/tests/content/console/2271/issue2271.html b/tests/content/console/2271/issue2271.html
index 215520f..3b15d45 100644
--- a/tests/content/console/2271/issue2271.html
+++ b/tests/content/console/2271/issue2271.html
@@ -1,49 +1,49 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-  <title>Test Case for Issue #2271</title>
-  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-</head>
-<body>
-
-<h1>Issue #2271</h1>
-
-<p>This test-case is intended for <a href="http://code.google.com/p/fbug/issues/detail?id=2271">Issue #2271</a>
-- <span class="h3">JS errors in AJAX callback functions are not shown</span>.
-<br/>
-<i>Jan Odvarko, odvarko at gmail.com</i>
-</p>
-
-<ol>
-<li>Open Firebug and enable the Console panel. Make sure the <i>Show XMLHttpRequests</i> option is on.</li>
-<li>Click on the <code>Execute Test</code> button below.</li>
-<li>See Firefox Error Console. There should be following error:</li>
-<code style="color:red">Error: document.getElementId is not a function<br/>
-Source File: http://legoas/firebug/tests/2271/issue2271.html
-Line: 35</code>
-<li>See also Firebug's Console panel. The error should also be there.</li>
-<li>If the error isn't there -> BUG</li>
-</ol>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+  <title>Test Case for Issue #2271</title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+</head>
+<body>
+
+<h1>Issue #2271</h1>
+
+<p>This test-case is intended for <a href="http://code.google.com/p/fbug/issues/detail?id=2271">Issue #2271</a>
+- <span class="h3">JS errors in AJAX callback functions are not shown</span>.
+<br/>
+<i>Jan Odvarko, odvarko at gmail.com</i>
+</p>
+
+<ol>
+<li>Open Firebug and enable the Console panel. Make sure the <i>Show XMLHttpRequests</i> option is on.</li>
+<li>Click on the <code>Execute Test</code> button below.</li>
+<li>See Firefox Error Console. There should be following error:</li>
+<code style="color:red">Error: document.getElementId is not a function<br/>
+Source File: http://legoas/firebug/tests/2271/issue2271.html
+Line: 35</code>
+<li>See also Firebug's Console panel. The error should also be there.</li>
+<li>If the error isn't there -> BUG</li>
+</ol>
+
 <button id="testButton" onclick="onExecuteTest()">Execute Test</button>
 
-<script type="text/javascript">
-function onExecuteTest()
-{
-    var request = new XMLHttpRequest();
-    request.open("GET", "issue2271.php", true);
-
-    request.onreadystatechange = function()
-    {
-        if (request.readyState == 4 && request.status == 200)
-        {
-            document.getElementId("something").innerText = request.responseText;
-        }
-    }
-
-    request.send(null);
-}
-</script>
+<script type="text/javascript">
+function onExecuteTest()
+{
+    var request = new XMLHttpRequest();
+    request.open("GET", "issue2271.php", true);
+
+    request.onreadystatechange = function()
+    {
+        if (request.readyState == 4 && request.status == 200)
+        {
+            document.getElementId("something").innerText = request.responseText;
+        }
+    }
+
+    request.send(null);
+}
+</script>
   
-</body>
-</html>
+</body>
+</html>
diff --git a/tests/content/console/3042/issue3042.html b/tests/content/console/3042/issue3042.html
index 1a7eea7..85df147 100644
--- a/tests/content/console/3042/issue3042.html
+++ b/tests/content/console/3042/issue3042.html
@@ -1,34 +1,34 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 3042: Show syntax error position like in error console of Firefox</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <script type="text/javascript">
-        window.addEventListener("load", function()
-        {
-            var incorrectVarDef = {hello: "Hello Firebug user!"; issueNo: 3042};
-        }, false);
-        </script>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3042">Issue 3042</a>: Show syntax error position like in error console of Firefox</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Enable and switch to the <em>Console</em> panel</li>
-                    <li>Reload the page</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>A syntax error should be listed inside the console having an indicator for the column where the error occurred</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 3042: Show syntax error position like in error console of Firefox</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <script type="text/javascript">
+        window.addEventListener("load", function()
+        {
+            var incorrectVarDef = {hello: "Hello Firebug user!"; issueNo: 3042};
+        }, false);
+        </script>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3042">Issue 3042</a>: Show syntax error position like in error console of Firefox</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Enable and switch to the <em>Console</em> panel</li>
+                    <li>Reload the page</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>A syntax error should be listed inside the console having an indicator for the column where the error occurred</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/console/3042/issue3042.js b/tests/content/console/3042/issue3042.js
index 55136c3..c2c24e7 100644
--- a/tests/content/console/3042/issue3042.js
+++ b/tests/content/console/3042/issue3042.js
@@ -1,38 +1,38 @@
-function runTest()
-{
-    FBTest.sysout("issue3042.START");
-
-    FBTest.openNewTab(basePath + "console/3042/issue3042.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("console");
-
-        FBTest.enableConsolePanel(function(win)
-        {
-            var config = {
-                tagName: "div",
-                classes: "logRow logRow-errorMessage"
-            };
-
-            FBTest.waitForDisplayedElement("console", config, function(row)
-            {
-                var errorIndicatorLeftPart = row.getElementsByClassName("errorColPosition");
-                if (FBTest.compare(1, errorIndicatorLeftPart.length,
-                    "There must be an error indicator"))
-                {
-                    FBTest.compare("---------------------------------------------------",
-                        errorIndicatorLeftPart.item(0).textContent,
-                        "The left part of the error indicator must be shown as dashes");
-                   var errorIndicatorRightPart = errorIndicatorLeftPart.item(0).parentNode.
-                       getElementsByClassName("errorColCaret").item(0);
-                   var backgroundImage = win.getComputedStyle(errorIndicatorRightPart, "").
-                       getPropertyValue("background-image");
-                   FBTest.compare("url(\"chrome://firebug/skin/console-error-caret.png\")",
-                       backgroundImage, "The right part of the error indicator must be shown as an arrow");
-
-                   FBTest.testDone("issue3042.DONE");
-                }
-            });
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue3042.START");
+
+    FBTest.openNewTab(basePath + "console/3042/issue3042.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("console");
+
+        FBTest.enableConsolePanel(function(win)
+        {
+            var config = {
+                tagName: "div",
+                classes: "logRow logRow-errorMessage"
+            };
+
+            FBTest.waitForDisplayedElement("console", config, function(row)
+            {
+                var errorIndicatorLeftPart = row.getElementsByClassName("errorColPosition");
+                if (FBTest.compare(1, errorIndicatorLeftPart.length,
+                    "There must be an error indicator"))
+                {
+                    FBTest.compare("---------------------------------------------------",
+                        errorIndicatorLeftPart.item(0).textContent,
+                        "The left part of the error indicator must be shown as dashes");
+                   var errorIndicatorRightPart = errorIndicatorLeftPart.item(0).parentNode.
+                       getElementsByClassName("errorColCaret").item(0);
+                   var backgroundImage = win.getComputedStyle(errorIndicatorRightPart, "").
+                       getPropertyValue("background-image");
+                   FBTest.compare("url(\"chrome://firebug/skin/console-error-caret.png\")",
+                       backgroundImage, "The right part of the error indicator must be shown as an arrow");
+
+                   FBTest.testDone("issue3042.DONE");
+                }
+            });
+        });
+    });
+}
diff --git a/tests/content/cookies/general/cookiesPanel.html b/tests/content/cookies/general/cookiesPanel.html
index 9ce7d4e..fa6162b 100644
--- a/tests/content/cookies/general/cookiesPanel.html
+++ b/tests/content/cookies/general/cookiesPanel.html
@@ -1,31 +1,31 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Cookie Panel</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1>Cookie Panel</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>
-                        Open Firebug<br/>
-                        <span class="ok">⇒ There must be a <em>Cookies</em> panel</span>
-                    </li>
-                    <li>Enable and switch to the <em>Cookies panel</em></li>
-                    <li>Refresh the page</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The <em>Cookies</em> panel must exist and work</li>
-                </ul>
-            </section>
-            <footer>Jan Odvarko, odvarko at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Cookie Panel</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1>Cookie Panel</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>
+                        Open Firebug<br/>
+                        <span class="ok">⇒ There must be a <em>Cookies</em> panel</span>
+                    </li>
+                    <li>Enable and switch to the <em>Cookies panel</em></li>
+                    <li>Refresh the page</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The <em>Cookies</em> panel must exist and work</li>
+                </ul>
+            </section>
+            <footer>Jan Odvarko, odvarko at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/2967/issue2967.js b/tests/content/css/2967/issue2967.js
index fb555d7..e71502a 100644
--- a/tests/content/css/2967/issue2967.js
+++ b/tests/content/css/2967/issue2967.js
@@ -1,15 +1,15 @@
-function runTest()
-{
-    FBTest.sysout("issue2967.START");
-
-    FBTest.openNewTab(basePath + "css/2967/issue2967.xml", function(win)
-    {
-        FBTest.openFirebug();
-        var panel = FBTest.selectPanel("stylesheet");
-
-        if (FBTest.ok(FBTest.selectPanelLocationByName(panel, "issue2967.xml"), "The CSS Location Menu should contain an entry for 'issue2967.xml'"))
-            FBTest.compare(/#rect\s*\{\s*fill:\s*url\("#linearGradient"\)\s*#000000;\s*\}/, panel.panelNode.textContent, "The panel should contain one SVG CSS rule");
-
-        FBTest.testDone("issue2967.DONE");
-   });
+function runTest()
+{
+    FBTest.sysout("issue2967.START");
+
+    FBTest.openNewTab(basePath + "css/2967/issue2967.xml", function(win)
+    {
+        FBTest.openFirebug();
+        var panel = FBTest.selectPanel("stylesheet");
+
+        if (FBTest.ok(FBTest.selectPanelLocationByName(panel, "issue2967.xml"), "The CSS Location Menu should contain an entry for 'issue2967.xml'"))
+            FBTest.compare(/#rect\s*\{\s*fill:\s*url\("#linearGradient"\)\s*#000000;\s*\}/, panel.panelNode.textContent, "The panel should contain one SVG CSS rule");
+
+        FBTest.testDone("issue2967.DONE");
+   });
 }
\ No newline at end of file
diff --git a/tests/content/css/2967/issue2967.xml b/tests/content/css/2967/issue2967.xml
index 5addec0..ebc2db6 100644
--- a/tests/content/css/2967/issue2967.xml
+++ b/tests/content/css/2967/issue2967.xml
@@ -1,53 +1,53 @@
-<?xml version="1.0"?>
-<!DOCTYPE html [
-  <!ENTITY rArr "⇒">
-]>
-<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-    <head>
-        <title>Issue 2967: CSS on in SVG placed in a mixed XHTML+SVG document does not show up on CSS tab</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=2967">Issue 2967</a>: CSS on in SVG placed in a mixed XHTML+SVG document does not show up on CSS tab</h1>
-        </header>
-        <div>
-            <section id="content">
-                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100" height="100" id="rect">
-                    <style type="text/css">
-                    #rect {
-                        fill: url(#linearGradient) #000000;
-                    }
-                    </style>
-                    <linearGradient id="linearGradient" x1="100" y1="100" x2="0" y2="0" gradientUnits="userSpaceOnUse">
-                        <stop style="stop-color: #788cff;" offset="0"/>
-                        <stop style="stop-color: #b4c8ff;" offset="1"/>
-                    </linearGradient>
-                    <rect width="100" height="100" x="0" y="0" id="rect"/>
-                </svg>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>CSS</em> panel</li>
-                    <li>
-                        Open the CSS Location Menu<br/>
-                        <span class="ok">⇒ There should be an entry <em>issue2967.xml</em></span>
-                    </li>
-                    <li>
-                        Select that entry<br/>
-                        <span class="ok">⇒ The SVG stylesheet inside <em>issue2967.xml</em> should be shown inside the CSS panel</span>
-                    </li>
-                    <li>Select that entry</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The <em>CSS</em> panel should be able to handle CSS of SVGs embedded into XHTML files</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<?xml version="1.0"?>
+<!DOCTYPE html [
+  <!ENTITY rArr "⇒">
+]>
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+    <head>
+        <title>Issue 2967: CSS on in SVG placed in a mixed XHTML+SVG document does not show up on CSS tab</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=2967">Issue 2967</a>: CSS on in SVG placed in a mixed XHTML+SVG document does not show up on CSS tab</h1>
+        </header>
+        <div>
+            <section id="content">
+                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100" height="100" id="rect">
+                    <style type="text/css">
+                    #rect {
+                        fill: url(#linearGradient) #000000;
+                    }
+                    </style>
+                    <linearGradient id="linearGradient" x1="100" y1="100" x2="0" y2="0" gradientUnits="userSpaceOnUse">
+                        <stop style="stop-color: #788cff;" offset="0"/>
+                        <stop style="stop-color: #b4c8ff;" offset="1"/>
+                    </linearGradient>
+                    <rect width="100" height="100" x="0" y="0" id="rect"/>
+                </svg>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>CSS</em> panel</li>
+                    <li>
+                        Open the CSS Location Menu<br/>
+                        <span class="ok">⇒ There should be an entry <em>issue2967.xml</em></span>
+                    </li>
+                    <li>
+                        Select that entry<br/>
+                        <span class="ok">⇒ The SVG stylesheet inside <em>issue2967.xml</em> should be shown inside the CSS panel</span>
+                    </li>
+                    <li>Select that entry</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The <em>CSS</em> panel should be able to handle CSS of SVGs embedded into XHTML files</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/3303/issue3303.html b/tests/content/css/3303/issue3303.html
index 9607b06..dc8edbe 100644
--- a/tests/content/css/3303/issue3303.html
+++ b/tests/content/css/3303/issue3303.html
@@ -1,54 +1,54 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 3303: Up/Down key working incorrectly for fonts when editing CSS</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <style type="text/css">
-        #font {
-            font-family: Arial, serif;
-        }
-        </style>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3303">Issue 3303</a>: Up/Down key working incorrectly for fonts when editing CSS</h1>
-        </header>
-        <div>
-            <section id="content">
-              <p id="font">Hello Firebug user!</p>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
-                    <li>Inspect the paragraph above (<code>#font</code>)</li>
-                    <li>Click on the value of the <code>font-family</code> property inside the <code>#font</code> rule</li>
-                    <li>Set the text cursor between the <code>A</code> and the <code>l</code> of <code>Arial</code></li>
-                    <li>
-                        Press <code class="key">Down</code> until you reach a font with spaces in it<br/>
-                        <span class="ok">The value should now be something like <code><font with spaces>,serif</code> with the font with spaces being selected</span>
-                    </li>
-                    <li>
-                        Press <code class="key">Down</code> until you reach a font without spaces in it<br/>
-                        <span class="ok">The value should now be something like <code><fontwithoutspaces>,serif</code> with the font without spaces being selected</span>
-                    </li>
-                    <li>
-                        Press <code class="key">Up</code> until you reach the font with spaces again<br/>
-                        <span class="ok">The value should now be <code><font with spaces>,serif</code> again with the font with spaces being selected</span>
-                    </li>
-                    <li>
-                        Press <code class="key">Up</code> until you reach <code>Arial</code> again<br/>
-                        <span class="ok">The value should now be <code>Arial,serif</code> again with <code>Arial</code> being selected</span>
-                    </li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>Auto-completion should work correctly on space-separated font names when pressing <code class="key">Up</code>/<code class="key">Down</code></li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 3303: Up/Down key working incorrectly for fonts when editing CSS</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <style type="text/css">
+        #font {
+            font-family: Arial, serif;
+        }
+        </style>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3303">Issue 3303</a>: Up/Down key working incorrectly for fonts when editing CSS</h1>
+        </header>
+        <div>
+            <section id="content">
+              <p id="font">Hello Firebug user!</p>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
+                    <li>Inspect the paragraph above (<code>#font</code>)</li>
+                    <li>Click on the value of the <code>font-family</code> property inside the <code>#font</code> rule</li>
+                    <li>Set the text cursor between the <code>A</code> and the <code>l</code> of <code>Arial</code></li>
+                    <li>
+                        Press <code class="key">Down</code> until you reach a font with spaces in it<br/>
+                        <span class="ok">The value should now be something like <code><font with spaces>,serif</code> with the font with spaces being selected</span>
+                    </li>
+                    <li>
+                        Press <code class="key">Down</code> until you reach a font without spaces in it<br/>
+                        <span class="ok">The value should now be something like <code><fontwithoutspaces>,serif</code> with the font without spaces being selected</span>
+                    </li>
+                    <li>
+                        Press <code class="key">Up</code> until you reach the font with spaces again<br/>
+                        <span class="ok">The value should now be <code><font with spaces>,serif</code> again with the font with spaces being selected</span>
+                    </li>
+                    <li>
+                        Press <code class="key">Up</code> until you reach <code>Arial</code> again<br/>
+                        <span class="ok">The value should now be <code>Arial,serif</code> again with <code>Arial</code> being selected</span>
+                    </li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>Auto-completion should work correctly on space-separated font names when pressing <code class="key">Up</code>/<code class="key">Down</code></li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/3303/issue3303.js b/tests/content/css/3303/issue3303.js
index b4eea4d..9dda6f8 100644
--- a/tests/content/css/3303/issue3303.js
+++ b/tests/content/css/3303/issue3303.js
@@ -1,71 +1,71 @@
-function runTest()
-{
-    FBTest.sysout("issue3303.START");
-
-    FBTest.openNewTab(basePath + "css/3303/issue3303.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("html");
-
-        FBTest.selectElementInHtmlPanel("font", function(node)
-        {
-            const MAX_TIMES = 30;
-            var panel = FBTest.selectSidePanel("css");
-            var values = panel.panelNode.querySelectorAll(".cssPropValue");
-
-            // Click the CSS value of the height property to open the inline editor
-            FBTest.synthesizeMouse(values[0]);
-
-            var editor = panel.panelNode.querySelector(".textEditorInner");
-
-            // Press 'Down' until a font with spaces is reached
-            i = 0;
-            do {
-                FBTest.sendShortcut("VK_DOWN");
-            } while(editor.value.search(" ") == -1 && ++i < MAX_TIMES);
-
-            if (FBTest.compare(/ /, editor.value, "Property value must contain a font with spaces now"))
-            {
-                var firstFont = editor.value.match(/.*?(?=,)/)[0];
-                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
-            }
-
-            // Press 'Down' until a font without spaces is reached
-            i = 0;
-            do {
-                FBTest.sendShortcut("VK_DOWN");
-            } while(editor.value.search(" ") != -1 && ++i < MAX_TIMES);
-
-            if (FBTest.compare(/^\S+$/, editor.value, "Property value must contain a font without spaces now"))
-            {
-                var firstFont = editor.value.match(/.*?(?=,)/)[0];
-                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
-            }
-
-            // Press 'Up' until a font with spaces is reached
-            i = 0;
-            do {
-                FBTest.sendShortcut("VK_UP");
-            } while(editor.value.search(" ") == -1 && ++i < MAX_TIMES);
-
-            if (FBTest.compare(/ /, editor.value, "Property value must contain a font with spaces now"))
-            {
-                var firstFont = editor.value.match(/.*?(?=,)/)[0];
-                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
-            }
-
-            // Press 'Up' until 'Arial' is reached again
-            i = 0;
-            do {
-                FBTest.sendShortcut("VK_UP");
-            } while(editor.value.search("Arial") == -1 && ++i < MAX_TIMES);
-
-            if (FBTest.compare(/Arial/, editor.value, "Property value must contain 'Arial' now"))
-            {
-                FBTest.compare("Arial", editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
-            }
-
-            FBTest.testDone("issue3303.DONE");
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue3303.START");
+
+    FBTest.openNewTab(basePath + "css/3303/issue3303.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("html");
+
+        FBTest.selectElementInHtmlPanel("font", function(node)
+        {
+            const MAX_TIMES = 30;
+            var panel = FBTest.selectSidePanel("css");
+            var values = panel.panelNode.querySelectorAll(".cssPropValue");
+
+            // Click the CSS value of the height property to open the inline editor
+            FBTest.synthesizeMouse(values[0]);
+
+            var editor = panel.panelNode.querySelector(".textEditorInner");
+
+            // Press 'Down' until a font with spaces is reached
+            i = 0;
+            do {
+                FBTest.sendShortcut("VK_DOWN");
+            } while(editor.value.search(" ") == -1 && ++i < MAX_TIMES);
+
+            if (FBTest.compare(/ /, editor.value, "Property value must contain a font with spaces now"))
+            {
+                var firstFont = editor.value.match(/.*?(?=,)/)[0];
+                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
+            }
+
+            // Press 'Down' until a font without spaces is reached
+            i = 0;
+            do {
+                FBTest.sendShortcut("VK_DOWN");
+            } while(editor.value.search(" ") != -1 && ++i < MAX_TIMES);
+
+            if (FBTest.compare(/^\S+$/, editor.value, "Property value must contain a font without spaces now"))
+            {
+                var firstFont = editor.value.match(/.*?(?=,)/)[0];
+                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
+            }
+
+            // Press 'Up' until a font with spaces is reached
+            i = 0;
+            do {
+                FBTest.sendShortcut("VK_UP");
+            } while(editor.value.search(" ") == -1 && ++i < MAX_TIMES);
+
+            if (FBTest.compare(/ /, editor.value, "Property value must contain a font with spaces now"))
+            {
+                var firstFont = editor.value.match(/.*?(?=,)/)[0];
+                FBTest.compare(firstFont, editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
+            }
+
+            // Press 'Up' until 'Arial' is reached again
+            i = 0;
+            do {
+                FBTest.sendShortcut("VK_UP");
+            } while(editor.value.search("Arial") == -1 && ++i < MAX_TIMES);
+
+            if (FBTest.compare(/Arial/, editor.value, "Property value must contain 'Arial' now"))
+            {
+                FBTest.compare("Arial", editor.value.substring(editor.selectionStart, editor.selectionEnd), "The selection must extend up to the comma");
+            }
+
+            FBTest.testDone("issue3303.DONE");
+        });
+    });
+}
diff --git a/tests/content/css/5438/issue5438.html b/tests/content/css/5438/issue5438.html
index 04d1118..fd2b932 100644
--- a/tests/content/css/5438/issue5438.html
+++ b/tests/content/css/5438/issue5438.html
@@ -1,50 +1,50 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 5438: Allow jumping from web font usage in Style side panel to its definition</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <style type="text/css">
-        @font-face {
-            font-family: TestFont;
-            src: url(testFont.woff) format("woff");
-        }
-
-        #element {
-            font-family: TestFont;
-        }
-        </style>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5438">Issue 5438</a>: Allow jumping from web font usage in Style side panel to its definition</h1>
-        </header>
-        <div>
-            <section id="content">
-                <p id="element">Hello Firebug user!</p>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
-                    <li>Inspect the text <em>Hello Firebug user!</em> above</li>
-                    <li>
-                        Inside the <em>Style</em> side panel right-click on the value (<code>TestFont</code>)
-                        of the <code>font-family</code> property inside the <code>#element</code> rule<br/>
-                        <span class="ok">⇒ There should be an option <em>Inspect Declaration</em></span>
-                    </li>
-                    <li>Click that menu item</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>
-                        Firebug should switch to the <em>CSS</em> panel and highlight the <code>@font-face</code> rule,
-                        in which the <code>TestFont</code> is defined
-                    </li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 5438: Allow jumping from web font usage in Style side panel to its definition</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <style type="text/css">
+        @font-face {
+            font-family: TestFont;
+            src: url(testFont.woff) format("woff");
+        }
+
+        #element {
+            font-family: TestFont;
+        }
+        </style>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5438">Issue 5438</a>: Allow jumping from web font usage in Style side panel to its definition</h1>
+        </header>
+        <div>
+            <section id="content">
+                <p id="element">Hello Firebug user!</p>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
+                    <li>Inspect the text <em>Hello Firebug user!</em> above</li>
+                    <li>
+                        Inside the <em>Style</em> side panel right-click on the value (<code>TestFont</code>)
+                        of the <code>font-family</code> property inside the <code>#element</code> rule<br/>
+                        <span class="ok">⇒ There should be an option <em>Inspect Declaration</em></span>
+                    </li>
+                    <li>Click that menu item</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>
+                        Firebug should switch to the <em>CSS</em> panel and highlight the <code>@font-face</code> rule,
+                        in which the <code>TestFont</code> is defined
+                    </li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/5438/issue5438.js b/tests/content/css/5438/issue5438.js
index 4965959..edf0afb 100644
--- a/tests/content/css/5438/issue5438.js
+++ b/tests/content/css/5438/issue5438.js
@@ -1,44 +1,44 @@
-function runTest()
-{
-    FBTest.sysout("issue5438.START");
-
-    FBTest.openNewTab(basePath + "css/5438/issue5438.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("html");
-
-        FBTest.selectElementInHtmlPanel("element", function(node)
-        {
-            var panel = FBTest.selectSidePanel("css");
-            var values = panel.panelNode.getElementsByClassName("cssPropValue");
-
-            for (var i = 0; i < values.length; ++i)
-            {
-                if (values[i].textContent == "TestFont")
-                {
-                    FBTest.executeContextMenuCommand(values[i], "fbInspectDeclaration", function()
-                    {
-                        // Firebug should switch to the CSS panel.
-                        var panel = FBTest.getSelectedPanel();
-                        if (FBTest.compare("stylesheet", panel.name, "The CSS panel must be selected"))
-                        {
-                            var highlightedRule = panel.panelNode.
-                                getElementsByClassName("jumpHighlight").item(0);
-                            if (FBTest.ok(highlightedRule, "A rule must be highlighted"))
-                            {
-                                FBTest.compare(new RegExp("@font-face\\s+\\{[\\r\\n\\s]+"+
-                                    "font-family:\\s+\"TestFont\";[\\r\\n\\s]+src:\\s+"+
-                                    "url\\(\"testFont\.woff\"\\)\\s+format\\(\"woff\"\\);"+
-                                    "[\\r\\n\\s]*\\}"), highlightedRule.textContent,
-                                    "The rule must be the correct @font-face definition");
-                            }
-                        }
-
-                        FBTest.testDone("issue5438.DONE");
-                    });
-                    break;
-                }
-            }
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5438.START");
+
+    FBTest.openNewTab(basePath + "css/5438/issue5438.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("html");
+
+        FBTest.selectElementInHtmlPanel("element", function(node)
+        {
+            var panel = FBTest.selectSidePanel("css");
+            var values = panel.panelNode.getElementsByClassName("cssPropValue");
+
+            for (var i = 0; i < values.length; ++i)
+            {
+                if (values[i].textContent == "TestFont")
+                {
+                    FBTest.executeContextMenuCommand(values[i], "fbInspectDeclaration", function()
+                    {
+                        // Firebug should switch to the CSS panel.
+                        var panel = FBTest.getSelectedPanel();
+                        if (FBTest.compare("stylesheet", panel.name, "The CSS panel must be selected"))
+                        {
+                            var highlightedRule = panel.panelNode.
+                                getElementsByClassName("jumpHighlight").item(0);
+                            if (FBTest.ok(highlightedRule, "A rule must be highlighted"))
+                            {
+                                FBTest.compare(new RegExp("@font-face\\s+\\{[\\r\\n\\s]+"+
+                                    "font-family:\\s+\"TestFont\";[\\r\\n\\s]+src:\\s+"+
+                                    "url\\(\"testFont\.woff\"\\)\\s+format\\(\"woff\"\\);"+
+                                    "[\\r\\n\\s]*\\}"), highlightedRule.textContent,
+                                    "The rule must be the correct @font-face definition");
+                            }
+                        }
+
+                        FBTest.testDone("issue5438.DONE");
+                    });
+                    break;
+                }
+            }
+        });
+    });
+}
diff --git a/tests/content/css/5461/issue5461.html b/tests/content/css/5461/issue5461.html
index 4048304..d98c097 100644
--- a/tests/content/css/5461/issue5461.html
+++ b/tests/content/css/5461/issue5461.html
@@ -1,41 +1,41 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 5461: When copying selected parts from Style side panel don't copy source link or inherited styles header</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <style type="text/css">
-        #element {
-            width: 100px;
-            height: 100px;
-            background: #8C8CFF -moz-linear-gradient(135deg, #788CFF, #B4C8FF);
-        }
-        </style>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5461">Issue 5461</a>: When copying selected parts from Style side panel don't copy source link or inherited styles header</h1>
-        </header>
-        <div>
-            <section id="content">
-                <div id="element"></div>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
-                    <li>Inspect the blue <code><div></code> (<code>#element</code>) above</li>
-                    <li>Mark everything inside the <em>Style</em> side panel via <code class="key">Ctrl/⌘+A</code></li>
-                    <li>Copy the selection to the clipboard via Ctrl/⌘+C</li>
-                    <li>Paste the content of the clipboard to a text editor</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The copied contents shouldn't contain source links or inherited styles headers</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 5461: When copying selected parts from Style side panel don't copy source link or inherited styles header</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <style type="text/css">
+        #element {
+            width: 100px;
+            height: 100px;
+            background: #8C8CFF -moz-linear-gradient(135deg, #788CFF, #B4C8FF);
+        }
+        </style>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5461">Issue 5461</a>: When copying selected parts from Style side panel don't copy source link or inherited styles header</h1>
+        </header>
+        <div>
+            <section id="content">
+                <div id="element"></div>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>HTML</em> panel and there to the <em>Style</em> side panel</li>
+                    <li>Inspect the blue <code><div></code> (<code>#element</code>) above</li>
+                    <li>Mark everything inside the <em>Style</em> side panel via <code class="key">Ctrl/⌘+A</code></li>
+                    <li>Copy the selection to the clipboard via Ctrl/⌘+C</li>
+                    <li>Paste the content of the clipboard to a text editor</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The copied contents shouldn't contain source links or inherited styles headers</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/5461/issue5461.js b/tests/content/css/5461/issue5461.js
index 249cf14..c4f1f39 100644
--- a/tests/content/css/5461/issue5461.js
+++ b/tests/content/css/5461/issue5461.js
@@ -1,42 +1,42 @@
-function runTest()
-{
-    FBTest.sysout("issue5461.START");
-
-    FBTest.openNewTab(basePath + "css/5461/issue5461.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("html");
-
-        FBTest.selectElementInHtmlPanel("element", function(node)
-        {
-            var panel = FBTest.selectSidePanel("css");
-
-            FBTest.synthesizeMouse(panel.panelNode);
-            FBTest.sendShortcut("a", {ctrlKey: true});
-
-            // Reset clipboard content
-            FBTest.clearClipboard();
-            var expected = new RegExp("#element\\s+\\{[\\r\\n]{1,2}"+
-                "\\s+background:\\s+-moz-linear-gradient\\(135deg, #788CFF, #B4C8FF\\) repeat "+
-                "scroll 0 0 #8C8CFF;[\\r\\n]{1,2}"+
-                "\\s+height:\\s+100px;[\\r\\n]{1,2}"+
-                "\\s+width:\\s+100px;[\\r\\n]{1,2}"+
-                "\\}[\\r\\n]{1,2}"+
-                "\\*\\s+\{[\\r\\n]{1,2}"+
-                "\\s+position: relative;[\\r\\n]{1,2}"+
-                "\\}[\\r\\n]{1,2}"+
-                "body\\s+\\\{[\\r\\n]{1,2}"+
-                "\\s+font-family:\\s+\\\"Trebuchet MS\\\",Helvetica,sans-serif;[\\r\\n]{1,2}"+
-                "\\s+font-size:\\s+0.9em;[\\r\\n]{1,2}"+
-                "\\}");
-            FBTest.waitForClipboard(expected, function(cssDecl)
-            {
-                FBTest.compare(expected, cssDecl,
-                    "CSS declaration must be properly copied into the clipboard");
-                FBTest.testDone("issue5461.DONE");
-            });
-
-            FBTest.sendShortcut("c", {ctrlKey: true});
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5461.START");
+
+    FBTest.openNewTab(basePath + "css/5461/issue5461.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("html");
+
+        FBTest.selectElementInHtmlPanel("element", function(node)
+        {
+            var panel = FBTest.selectSidePanel("css");
+
+            FBTest.synthesizeMouse(panel.panelNode);
+            FBTest.sendShortcut("a", {ctrlKey: true});
+
+            // Reset clipboard content
+            FBTest.clearClipboard();
+            var expected = new RegExp("#element\\s+\\{[\\r\\n]{1,2}"+
+                "\\s+background:\\s+-moz-linear-gradient\\(135deg, #788CFF, #B4C8FF\\) repeat "+
+                "scroll 0 0 #8C8CFF;[\\r\\n]{1,2}"+
+                "\\s+height:\\s+100px;[\\r\\n]{1,2}"+
+                "\\s+width:\\s+100px;[\\r\\n]{1,2}"+
+                "\\}[\\r\\n]{1,2}"+
+                "\\*\\s+\{[\\r\\n]{1,2}"+
+                "\\s+position: relative;[\\r\\n]{1,2}"+
+                "\\}[\\r\\n]{1,2}"+
+                "body\\s+\\\{[\\r\\n]{1,2}"+
+                "\\s+font-family:\\s+\\\"Trebuchet MS\\\",Helvetica,sans-serif;[\\r\\n]{1,2}"+
+                "\\s+font-size:\\s+0.9em;[\\r\\n]{1,2}"+
+                "\\}");
+            FBTest.waitForClipboard(expected, function(cssDecl)
+            {
+                FBTest.compare(expected, cssDecl,
+                    "CSS declaration must be properly copied into the clipboard");
+                FBTest.testDone("issue5461.DONE");
+            });
+
+            FBTest.sendShortcut("c", {ctrlKey: true});
+        });
+    });
+}
diff --git a/tests/content/css/computed/5451/issue5451.html b/tests/content/css/computed/5451/issue5451.html
index 26c1f83..d9f2fef 100644
--- a/tests/content/css/computed/5451/issue5451.html
+++ b/tests/content/css/computed/5451/issue5451.html
@@ -1,33 +1,33 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 5451: Persist scrolling in Computed side panel</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5451">Issue 5451</a>: Persist scrolling in Computed side panel</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>HTML</em> panel and there to the <em>Computed</em> side panel</li>
-                    <li>
-                        Check the panel option <em>Show User Agent CSS</em><br/>
-                        <span class="ok">⇒ The panel should display CSS properties and a scrollbar to scroll through them</span>
-                    </li>
-                    <li>Scroll the panel down to the <em>Background</em> group</li>
-                    <li>Reload the page</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The panel should be scrolled to the <em>Background</em> group again</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 5451: Persist scrolling in Computed side panel</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5451">Issue 5451</a>: Persist scrolling in Computed side panel</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>HTML</em> panel and there to the <em>Computed</em> side panel</li>
+                    <li>
+                        Check the panel option <em>Show User Agent CSS</em><br/>
+                        <span class="ok">⇒ The panel should display CSS properties and a scrollbar to scroll through them</span>
+                    </li>
+                    <li>Scroll the panel down to the <em>Background</em> group</li>
+                    <li>Reload the page</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The panel should be scrolled to the <em>Background</em> group again</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/css/computed/5451/issue5451.js b/tests/content/css/computed/5451/issue5451.js
index 0f1a32d..b17c213 100644
--- a/tests/content/css/computed/5451/issue5451.js
+++ b/tests/content/css/computed/5451/issue5451.js
@@ -1,20 +1,20 @@
-function runTest()
-{
-    FBTest.sysout("issue5451.START");
-
-    FBTest.openNewTab(basePath + "css/computed/5451/issue5451.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("html");
-
-        var panel = FBTest.selectSidePanel("computed");
-        panel.panelNode.scrollTop = 100;
-
-        FBTest.reload(function() {
-            var panel = FBTest.selectSidePanel("computed");
-            FBTest.compare(100, panel.panelNode.scrollTop, "Panel must be scrolled down 100 pixels");
-
-            FBTest.testDone("issue5451.DONE");
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5451.START");
+
+    FBTest.openNewTab(basePath + "css/computed/5451/issue5451.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("html");
+
+        var panel = FBTest.selectSidePanel("computed");
+        panel.panelNode.scrollTop = 100;
+
+        FBTest.reload(function() {
+            var panel = FBTest.selectSidePanel("computed");
+            FBTest.compare(100, panel.panelNode.scrollTop, "Panel must be scrolled down 100 pixels");
+
+            FBTest.testDone("issue5451.DONE");
+        });
+    });
+}
diff --git a/tests/content/dom/5247/external/externalStylesheet.css b/tests/content/dom/5247/external/externalStylesheet.css
index f493f71..9e19d72 100644
--- a/tests/content/dom/5247/external/externalStylesheet.css
+++ b/tests/content/dom/5247/external/externalStylesheet.css
@@ -1,3 +1,3 @@
-#externalRule {
-    color: blue;
+#externalRule {
+    color: blue;
 }
\ No newline at end of file
diff --git a/tests/content/dom/5247/issue5247.html b/tests/content/dom/5247/issue5247.html
index 0160f15..521c5a9 100644
--- a/tests/content/dom/5247/issue5247.html
+++ b/tests/content/dom/5247/issue5247.html
@@ -1,86 +1,86 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 5247: Add reps for different types of CSSRules</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <style type="text/css">
-        @charset "utf-8";
-
-        @import "external/externalStylesheet.css";
-
-        @media (min-width: 500px) and (max-width: 700px) {
-            #mediaSpecificRule {
-                color: green;
-            }
-        }
-
-        @font-face {
-            font-family: "TitilliumMaps";
-            src: url(/fonts/TitilliumMaps26L002.eot), url(/fonts/TitilliumMaps26L002.woff) format("woff"), url(/fonts/TitilliumMaps26L002.ttf) format("truetype");
-        }
-
-        @-moz-keyframes slidein {
-            from {
-                margin-left: 100%;
-                width: 300%;
-            }
-
-            to {
-                margin-left: 0%;
-                width: 100%;
-            }
-        }
-
-        #internalRule {
-            color: red;
-        }
-        </style>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5247">Issue 5247</a>: Add reps for different types of CSSRules</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>CSS</em> panel</li>
-                    <li>Select <em>issue5247.html</em> from the Location Menu</li>
-                    <li>
-                        Right-click the Location Button and choose <em>Inspect in DOM panel</em> from the context menu<br/>
-                        <span class="ok">⇒ Firebug should switch to the <em>DOM</em> panel and display the stylesheet</span>
-                    </li>
-                    <li>
-                        Expand the <code>cssRules</code> property<br/>
-                        <span class="ok">
-                            ⇒ There should be 6 rules listed:<br/>
-                            <code>CSSCharsetRule utf-8
-CSSImportRule externalStylesheet.css
-CSSMediaRule (min-width: 500px) and (max-width: 700px)
-CSSFontFaceRule "TitilliumMaps"
-CSSKeyframesRule slidein
-CSSStyleRule #internalRule
-</code>
-                        </span>
-                    </li>
-                    <li>
-                        Expand the <em>CSSKeyframesRule</em> and the <code>cssRules</code> property in it<br/>
-                        <span class="ok">
-                            ⇒ There should be 2 <em>CSSKeyframeRule</em>s listed:<br/>
-<code>CSSKeyframeRule 0%
-CSSKeyframeRule 100%
-</code>
-                        </span>
-                    </li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>Each CSSRule should have its own </li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 5247: Add reps for different types of CSSRules</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <style type="text/css">
+        @charset "utf-8";
+
+        @import "external/externalStylesheet.css";
+
+        @media (min-width: 500px) and (max-width: 700px) {
+            #mediaSpecificRule {
+                color: green;
+            }
+        }
+
+        @font-face {
+            font-family: "TitilliumMaps";
+            src: url(/fonts/TitilliumMaps26L002.eot), url(/fonts/TitilliumMaps26L002.woff) format("woff"), url(/fonts/TitilliumMaps26L002.ttf) format("truetype");
+        }
+
+        @-moz-keyframes slidein {
+            from {
+                margin-left: 100%;
+                width: 300%;
+            }
+
+            to {
+                margin-left: 0%;
+                width: 100%;
+            }
+        }
+
+        #internalRule {
+            color: red;
+        }
+        </style>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5247">Issue 5247</a>: Add reps for different types of CSSRules</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>CSS</em> panel</li>
+                    <li>Select <em>issue5247.html</em> from the Location Menu</li>
+                    <li>
+                        Right-click the Location Button and choose <em>Inspect in DOM panel</em> from the context menu<br/>
+                        <span class="ok">⇒ Firebug should switch to the <em>DOM</em> panel and display the stylesheet</span>
+                    </li>
+                    <li>
+                        Expand the <code>cssRules</code> property<br/>
+                        <span class="ok">
+                            ⇒ There should be 6 rules listed:<br/>
+                            <code>CSSCharsetRule utf-8
+CSSImportRule externalStylesheet.css
+CSSMediaRule (min-width: 500px) and (max-width: 700px)
+CSSFontFaceRule "TitilliumMaps"
+CSSKeyframesRule slidein
+CSSStyleRule #internalRule
+</code>
+                        </span>
+                    </li>
+                    <li>
+                        Expand the <em>CSSKeyframesRule</em> and the <code>cssRules</code> property in it<br/>
+                        <span class="ok">
+                            ⇒ There should be 2 <em>CSSKeyframeRule</em>s listed:<br/>
+<code>CSSKeyframeRule 0%
+CSSKeyframeRule 100%
+</code>
+                        </span>
+                    </li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>Each CSSRule should have its own </li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/dom/5247/issue5247.js b/tests/content/dom/5247/issue5247.js
index 25fb657..7e4577a 100644
--- a/tests/content/dom/5247/issue5247.js
+++ b/tests/content/dom/5247/issue5247.js
@@ -1,75 +1,75 @@
-function runTest()
-{
-    FBTest.sysout("issue5247.START");
-
-    FBTest.openNewTab(basePath + "dom/5247/issue5247.html", function(win)
-    {
-        FBTest.openFirebug();
-        var panel = FBTest.selectPanel("stylesheet");
-
-        if (FBTest.selectPanelLocationByName(panel, "issue5247.html"))
-        {
-            FBTest.executeContextMenuCommand(FW.Firebug.chrome.$("fbLocationList"),
-                "InspectIndomPanel", function()
-            {
-                var panel = FBTest.getSelectedPanel();
-                if (FBTest.compare("dom", panel.name, "DOM panel must be selected now"))
-                {
-                    var props = panel.panelNode.getElementsByClassName("memberLabel");
-                    var prop;
-
-                    for (var i=0; i<props.length; i++)
-                    {
-                        if (props[i].textContent == "cssRules")
-                        {
-                            prop = props[i];
-                            break;
-                        }
-                    }
-
-                    var config = {tagName: "tr", classes: "memberRow ordinalRow", counter: 6};
-                    FBTest.waitForDisplayedElement("dom", config, function(row)
-                    {
-                        var cssRulesLabels = panel.panelNode.
-                            querySelectorAll(".memberRow.ordinalRow[level=\"1\"] .memberLabel");
-                        var cssRules = [];
-                        for (var i=0; i<cssRulesLabels.length; i++)
-                        {
-                            var cssRulesLabel = cssRulesLabels[i];
-                            cssRules.push(FW.FBL.getAncestorByClass(cssRulesLabel, "memberRow").
-                                getElementsByClassName("memberValueCell").item(0));
-                        }
-  
-                        if (FBTest.compare(6, cssRules.length, "There must be 6 CSS rules"))
-                        {
-                            var expectedCSSRules =
-                            [
-                                "CSSCharsetRule utf-8",
-                                "CSSImportRule external/externalStylesheet.css",
-                                "CSSMediaRule (min-width: 500px) and (max-width: 700px)",
-                                "CSSFontFaceRule \"TitilliumMaps\"",
-                                "CSSKeyframesRule slidein",
-                                "CSSStyleRule #internalRule"
-                            ];
-
-                            // xxxsz: We don't check the tooltips yet
-                            for (var i=0; i<cssRules.length; i++)
-                            {
-                                FBTest.compare(expectedCSSRules[i], cssRules[i].textContent, (i+1)+
-                                    ". rule must be '"+expectedCSSRules[i]+"'");
-                            }
-                        }
-
-                        FBTest.testDone("issue5247.DONE");
-                    });
-
-                    FBTest.click(prop);
-                }
-            });
-        }
-        else
-        {
-            FBTest.testDone("issue5247.DONE");
-        }
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5247.START");
+
+    FBTest.openNewTab(basePath + "dom/5247/issue5247.html", function(win)
+    {
+        FBTest.openFirebug();
+        var panel = FBTest.selectPanel("stylesheet");
+
+        if (FBTest.selectPanelLocationByName(panel, "issue5247.html"))
+        {
+            FBTest.executeContextMenuCommand(FW.Firebug.chrome.$("fbLocationList"),
+                "InspectIndomPanel", function()
+            {
+                var panel = FBTest.getSelectedPanel();
+                if (FBTest.compare("dom", panel.name, "DOM panel must be selected now"))
+                {
+                    var props = panel.panelNode.getElementsByClassName("memberLabel");
+                    var prop;
+
+                    for (var i=0; i<props.length; i++)
+                    {
+                        if (props[i].textContent == "cssRules")
+                        {
+                            prop = props[i];
+                            break;
+                        }
+                    }
+
+                    var config = {tagName: "tr", classes: "memberRow ordinalRow", counter: 6};
+                    FBTest.waitForDisplayedElement("dom", config, function(row)
+                    {
+                        var cssRulesLabels = panel.panelNode.
+                            querySelectorAll(".memberRow.ordinalRow[level=\"1\"] .memberLabel");
+                        var cssRules = [];
+                        for (var i=0; i<cssRulesLabels.length; i++)
+                        {
+                            var cssRulesLabel = cssRulesLabels[i];
+                            cssRules.push(FW.FBL.getAncestorByClass(cssRulesLabel, "memberRow").
+                                getElementsByClassName("memberValueCell").item(0));
+                        }
+  
+                        if (FBTest.compare(6, cssRules.length, "There must be 6 CSS rules"))
+                        {
+                            var expectedCSSRules =
+                            [
+                                "CSSCharsetRule utf-8",
+                                "CSSImportRule external/externalStylesheet.css",
+                                "CSSMediaRule (min-width: 500px) and (max-width: 700px)",
+                                "CSSFontFaceRule \"TitilliumMaps\"",
+                                "CSSKeyframesRule slidein",
+                                "CSSStyleRule #internalRule"
+                            ];
+
+                            // xxxsz: We don't check the tooltips yet
+                            for (var i=0; i<cssRules.length; i++)
+                            {
+                                FBTest.compare(expectedCSSRules[i], cssRules[i].textContent, (i+1)+
+                                    ". rule must be '"+expectedCSSRules[i]+"'");
+                            }
+                        }
+
+                        FBTest.testDone("issue5247.DONE");
+                    });
+
+                    FBTest.click(prop);
+                }
+            });
+        }
+        else
+        {
+            FBTest.testDone("issue5247.DONE");
+        }
+    });
+}
diff --git a/tests/content/firebug/5349/issue5349.html b/tests/content/firebug/5349/issue5349.html
index cd485ac..cf044bb 100644
--- a/tests/content/firebug/5349/issue5349.html
+++ b/tests/content/firebug/5349/issue5349.html
@@ -1,33 +1,33 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 5349: Context menu in select, radio, check, not work</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5349">Issue 5349</a>: Context menu in select, radio, check, not work</h1>
-        </header>
-        <div>
-            <section id="content">
-              <select id="selectbox">
-                <option>Hello</option>
-                <option>Firebug</option>
-                <option>user!</option>
-              </select>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Right-click the selectbox above</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The context menu should appear including the option <em>Inspect Element with Firebug</em></li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 5349: Context menu in select, radio, check, not work</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=5349">Issue 5349</a>: Context menu in select, radio, check, not work</h1>
+        </header>
+        <div>
+            <section id="content">
+              <select id="selectbox">
+                <option>Hello</option>
+                <option>Firebug</option>
+                <option>user!</option>
+              </select>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Right-click the selectbox above</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The context menu should appear including the option <em>Inspect Element with Firebug</em></li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/firebug/5349/issue5349.js b/tests/content/firebug/5349/issue5349.js
index ed70606..5f29fbc 100644
--- a/tests/content/firebug/5349/issue5349.js
+++ b/tests/content/firebug/5349/issue5349.js
@@ -1,13 +1,13 @@
-function runTest()
-{
-    FBTest.sysout("issue5349.START");
-
-    FBTest.openNewTab(basePath + "firebug/5349/issue5349.html", function(win)
-    {
-        var target = win.document.getElementById("selectbox");
-        FBTest.executeContextMenuCommand(target, "menu_firebug_firebugInspect", function()
-        {
-            FBTest.testDone("issue5349.DONE");
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue5349.START");
+
+    FBTest.openNewTab(basePath + "firebug/5349/issue5349.html", function(win)
+    {
+        var target = win.document.getElementById("selectbox");
+        FBTest.executeContextMenuCommand(target, "menu_firebug_firebugInspect", function()
+        {
+            FBTest.testDone("issue5349.DONE");
+        });
+    });
+}
diff --git a/tests/content/html/3296/issue3296.html b/tests/content/html/3296/issue3296.html
index 9310267..78403cb 100644
--- a/tests/content/html/3296/issue3296.html
+++ b/tests/content/html/3296/issue3296.html
@@ -1,40 +1,40 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 3296: Form's action doesn't change and it isn't shown in HTML panel</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <script type="text/javascript">
-        window.addEventListener("load", function()
-        {
-            document.getElementsByTagName("form").item(0).setAttribute("action", "issue3296.html");
-        }, false);
-        </script>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3296">Issue 3296</a>: Form's action doesn't change and it isn't shown in HTML panel</h1>
-        </header>
-        <div>
-            <section id="content">
-                <form action="">
-                    <input type="text" id="formField"/>
-                </form>
-            </section>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Switch to the <em>HTML</em> panel</li>
-                    <li>Inspect the text field above (<code>#formField</code>)</li>
-                    <li>Reload the page</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li><code>issue3296.html</code> should be displayed as value for the <code>action</code> attribute of the <code><form></code> tag.</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 3296: Form's action doesn't change and it isn't shown in HTML panel</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <script type="text/javascript">
+        window.addEventListener("load", function()
+        {
+            document.getElementsByTagName("form").item(0).setAttribute("action", "issue3296.html");
+        }, false);
+        </script>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=3296">Issue 3296</a>: Form's action doesn't change and it isn't shown in HTML panel</h1>
+        </header>
+        <div>
+            <section id="content">
+                <form action="">
+                    <input type="text" id="formField"/>
+                </form>
+            </section>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Switch to the <em>HTML</em> panel</li>
+                    <li>Inspect the text field above (<code>#formField</code>)</li>
+                    <li>Reload the page</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li><code>issue3296.html</code> should be displayed as value for the <code>action</code> attribute of the <code><form></code> tag.</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/html/3296/issue3296.js b/tests/content/html/3296/issue3296.js
index 49c99f3..cf99ebf 100644
--- a/tests/content/html/3296/issue3296.js
+++ b/tests/content/html/3296/issue3296.js
@@ -1,29 +1,29 @@
-function runTest()
-{
-    FBTest.sysout("issue3296.START");
-
-    FBTest.openNewTab(basePath + "html/3296/issue3296.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("html");
-        var actionValue = "issue3296.html";
-
-        FBTest.selectElementInHtmlPanel("formField", function(node)
-        {
-            FBTest.reload(function()
-            {
-                var parentElement = FW.FBL.getAncestorByClass(node.parentNode, "nodeBox");
-                var attribute = parentElement.getElementsByClassName("nodeAttr").item(0);
-                if (FBTest.compare("action",
-                    attribute.getElementsByClassName("nodeName").item(0).textContent,
-                    "Form tag must contain an 'action' attribute"))
-                {
-                    FBTest.compare(actionValue,
-                        attribute.getElementsByClassName("nodeValue").item(0).textContent,
-                        "The value of the 'action' attribute must be '"+actionValue+"'")
-                }
-                FBTest.testDone("issue3296.DONE");
-            });
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue3296.START");
+
+    FBTest.openNewTab(basePath + "html/3296/issue3296.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("html");
+        var actionValue = "issue3296.html";
+
+        FBTest.selectElementInHtmlPanel("formField", function(node)
+        {
+            FBTest.reload(function()
+            {
+                var parentElement = FW.FBL.getAncestorByClass(node.parentNode, "nodeBox");
+                var attribute = parentElement.getElementsByClassName("nodeAttr").item(0);
+                if (FBTest.compare("action",
+                    attribute.getElementsByClassName("nodeName").item(0).textContent,
+                    "Form tag must contain an 'action' attribute"))
+                {
+                    FBTest.compare(actionValue,
+                        attribute.getElementsByClassName("nodeValue").item(0).textContent,
+                        "The value of the 'action' attribute must be '"+actionValue+"'")
+                }
+                FBTest.testDone("issue3296.DONE");
+            });
+        });
+    });
+}
diff --git a/tests/content/net/4805/issue4805.html b/tests/content/net/4805/issue4805.html
index b1cfdd2..7b0b2c7 100644
--- a/tests/content/net/4805/issue4805.html
+++ b/tests/content/net/4805/issue4805.html
@@ -1,30 +1,30 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 4805: Distinguish or Highlight HTTPS protocol requests in Net panel</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=4805">Issue 4805</a>: Distinguish or Highlight HTTPS protocol requests in Net panel</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Enable and switch to the <em>Net</em> panel</li>
-                    <li>Right-click the request list header and choose <em>Protocol</em> from the context menu</li>
-                    <li>Reload the page</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>A <em>Protocol</em> column should be available</li>
-                    <li>The column should list the network protocol used for the request</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 4805: Distinguish or Highlight HTTPS protocol requests in Net panel</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=4805">Issue 4805</a>: Distinguish or Highlight HTTPS protocol requests in Net panel</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Enable and switch to the <em>Net</em> panel</li>
+                    <li>Right-click the request list header and choose <em>Protocol</em> from the context menu</li>
+                    <li>Reload the page</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>A <em>Protocol</em> column should be available</li>
+                    <li>The column should list the network protocol used for the request</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/net/4805/issue4805.js b/tests/content/net/4805/issue4805.js
index b318468..93e9e13 100644
--- a/tests/content/net/4805/issue4805.js
+++ b/tests/content/net/4805/issue4805.js
@@ -1,40 +1,40 @@
-function runTest()
-{
-    FBTest.sysout("issue4805.START");
-
-    FBTest.openNewTab(basePath + "net/4805/issue4805.html", function(win)
-    {
-        FBTest.openFirebug();
-
-        FBTest.enableNetPanel(function(win)
-        {
-            var panel = FBTest.selectPanel("net");
-            var netPanelHeader = panel.panelNode.getElementsByClassName("netHeaderCell").item(0);
-            FBTest.executeContextMenuCommand(netPanelHeader, {label: "Protocol"}, function()
-            {
-                panel.clear();
-  
-                var options =
-                {
-                    tagName: "tr",
-                    classes: "netRow hasHeaders loaded",
-                    counter: 2
-                };
-
-                FBTest.waitForDisplayedElement("net", options, function(row)
-                {
-                    var panelNode = FBTest.selectPanel("net").panelNode;
-                    var urls = panelNode.getElementsByClassName("netFullHrefLabel");
-                    var protocols = panelNode.getElementsByClassName("netProtocolLabel");
-
-                    for (var i=0; i<protocols.length; i++)
-                        FBTest.compare(urls[i].textContent.replace(/^(.*?):.*/, "$1"), protocols[i].textContent, "The protocol of the "+(i+1)+". request must be correctly displayed");
-  
-                    FBTest.testDone("issue4805.DONE");
-                });
-  
-                FBTest.reload();
-            });
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue4805.START");
+
+    FBTest.openNewTab(basePath + "net/4805/issue4805.html", function(win)
+    {
+        FBTest.openFirebug();
+
+        FBTest.enableNetPanel(function(win)
+        {
+            var panel = FBTest.selectPanel("net");
+            var netPanelHeader = panel.panelNode.getElementsByClassName("netHeaderCell").item(0);
+            FBTest.executeContextMenuCommand(netPanelHeader, {label: "Protocol"}, function()
+            {
+                panel.clear();
+  
+                var options =
+                {
+                    tagName: "tr",
+                    classes: "netRow hasHeaders loaded",
+                    counter: 2
+                };
+
+                FBTest.waitForDisplayedElement("net", options, function(row)
+                {
+                    var panelNode = FBTest.selectPanel("net").panelNode;
+                    var urls = panelNode.getElementsByClassName("netFullHrefLabel");
+                    var protocols = panelNode.getElementsByClassName("netProtocolLabel");
+
+                    for (var i=0; i<protocols.length; i++)
+                        FBTest.compare(urls[i].textContent.replace(/^(.*?):.*/, "$1"), protocols[i].textContent, "The protocol of the "+(i+1)+". request must be correctly displayed");
+  
+                    FBTest.testDone("issue4805.DONE");
+                });
+  
+                FBTest.reload();
+            });
+        });
+    });
+}
diff --git a/tests/content/script/4724/issue4724.html b/tests/content/script/4724/issue4724.html
index 2b480a3..a8ef603 100644
--- a/tests/content/script/4724/issue4724.html
+++ b/tests/content/script/4724/issue4724.html
@@ -1,33 +1,33 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>Issue 4724: "Disable Breakpoint" is not checked on disabled breakpoints</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <script type="text/javascript">
-        var test = "Hello Firebug user!";
-        </script>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=4724">Issue 4724</a>: "Disable Breakpoint" is not checked on disabled breakpoints</h1>
-        </header>
-        <div>
-            <section id="description">
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Enable and switch to the <em>Script</em> panel</li>
-                    <li>Reload the page</li>
-                    <li>Click the breakpoint column at line 8 (<code>var test = "Hello Firebug user!";</code>) to create a breakpoint</li>
-                    <li>Right-click line 8</li>
-                </ol>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>The context menu option <em>Set Breakpoint</em> should be checked</li>
-                </ul>
-            </section>
-            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Issue 4724: "Disable Breakpoint" is not checked on disabled breakpoints</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="../../_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <script type="text/javascript">
+        var test = "Hello Firebug user!";
+        </script>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=4724">Issue 4724</a>: "Disable Breakpoint" is not checked on disabled breakpoints</h1>
+        </header>
+        <div>
+            <section id="description">
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Enable and switch to the <em>Script</em> panel</li>
+                    <li>Reload the page</li>
+                    <li>Click the breakpoint column at line 8 (<code>var test = "Hello Firebug user!";</code>) to create a breakpoint</li>
+                    <li>Right-click line 8</li>
+                </ol>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>The context menu option <em>Set Breakpoint</em> should be checked</li>
+                </ul>
+            </section>
+            <footer>Sebastian Zartner, sebastianzartner at gmail.com</footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/content/script/4724/issue4724.js b/tests/content/script/4724/issue4724.js
index 4452ee7..c800ae6 100644
--- a/tests/content/script/4724/issue4724.js
+++ b/tests/content/script/4724/issue4724.js
@@ -1,59 +1,59 @@
-function runTest()
-{
-    FBTest.sysout("issue4724.START");
-
-    FBTest.openNewTab(basePath + "script/4724/issue4724.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("script");
-        var line = 8;
-
-        FBTest.enableScriptPanel(function(win)
-        {
-            FBTest.setBreakpoint(null, "issue4724.html", line, null, function()
-            {
-                var contextMenu = FW.FBL.$("fbContextMenu");
-                var menuItemLabel = "Set Breakpoint";
-
-                function onPopupShown(event)
-                {
-                    contextMenu.removeEventListener("popupshown", onPopupShown, false);
-
-                    // Fire the event handler asynchronously so items have a chance to be appended.
-                    setTimeout(function()
-                    {
-                        var menuItem;
-                        for each (menuItem in contextMenu.children)
-                        {
-                            if (menuItem.label == menuItemLabel)
-                                break;
-                        }
-
-                        FBTest.ok(menuItem, "'" + menuItemLabel  +
-                            "' item must be available in the context menu.");
-
-                        if (menuItem)
-                        {
-                            FBTest.ok(menuItem.getAttribute("checked") == "true",
-                                "Menu item must be checked");
-                            contextMenu.hidePopup();
-                        }
-
-                        contextMenu.hidePopup();
-                        FBTest.testDone("issue4724.DONE");
-                    }, 10);
-                }
-
-                // Wait till the menu is displayed.
-                contextMenu.addEventListener("popupshown", onPopupShown, false);
-
-                // Right click on line 8
-                var lineNode = FBTest.getSourceLineNode(line).getElementsByClassName(
-                    "sourceRowText").item(0);
-
-                var eventDetails = {type: "contextmenu", button: 2};
-                FBTest.synthesizeMouse(lineNode, 2, 2, eventDetails);
-            });
-        });
-    });
-}
+function runTest()
+{
+    FBTest.sysout("issue4724.START");
+
+    FBTest.openNewTab(basePath + "script/4724/issue4724.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("script");
+        var line = 8;
+
+        FBTest.enableScriptPanel(function(win)
+        {
+            FBTest.setBreakpoint(null, "issue4724.html", line, null, function()
+            {
+                var contextMenu = FW.FBL.$("fbContextMenu");
+                var menuItemLabel = "Set Breakpoint";
+
+                function onPopupShown(event)
+                {
+                    contextMenu.removeEventListener("popupshown", onPopupShown, false);
+
+                    // Fire the event handler asynchronously so items have a chance to be appended.
+                    setTimeout(function()
+                    {
+                        var menuItem;
+                        for each (menuItem in contextMenu.children)
+                        {
+                            if (menuItem.label == menuItemLabel)
+                                break;
+                        }
+
+                        FBTest.ok(menuItem, "'" + menuItemLabel  +
+                            "' item must be available in the context menu.");
+
+                        if (menuItem)
+                        {
+                            FBTest.ok(menuItem.getAttribute("checked") == "true",
+                                "Menu item must be checked");
+                            contextMenu.hidePopup();
+                        }
+
+                        contextMenu.hidePopup();
+                        FBTest.testDone("issue4724.DONE");
+                    }, 10);
+                }
+
+                // Wait till the menu is displayed.
+                contextMenu.addEventListener("popupshown", onPopupShown, false);
+
+                // Right click on line 8
+                var lineNode = FBTest.getSourceLineNode(line).getElementsByClassName(
+                    "sourceRowText").item(0);
+
+                var eventDetails = {type: "contextmenu", button: 2};
+                FBTest.synthesizeMouse(lineNode, 2, 2, eventDetails);
+            });
+        });
+    });
+}
diff --git a/tests/templates/default/issueXXXX.html b/tests/templates/default/issueXXXX.html
index 30dc0a4..d285e1b 100644
--- a/tests/templates/default/issueXXXX.html
+++ b/tests/templates/default/issueXXXX.html
@@ -1,68 +1,68 @@
-<!DOCTYPE html>
-<html>
-    <!--
-        STEPS TO CREATE A TEST CASE:
-        1. Replace "xxxx" by number of your issue
-        2. Replace "Issue summary" by title of your issue
-        3. Put inspectable elements, form fields etc. into the "content" section
-        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
-        5. Describe the currently seen result under "Observed result"
-        6. Describe what you would expect to see under "Expected result"
-        7. Add your contact information
-        8. Remove all template comments
-
-        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
-     -->
-    <head>
-        <!--
-            Add the issue number and title here. 
-         -->
-        <title>Issue xxxx: Issue summary</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
-        </header>
-        <div>
-            <section id="content">
-                <!--
-                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
-                    If you generate output via JavaScript, put it into <section id="output"></section>.
-                    If you don't need any content, you can remove the "content" section.
-                 -->
-            </section>
-            <section id="description">
-                <!--
-                    The steps to reproduce the test case should be described here in detail.
-                 -->
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Step 1</li>
-                    <li>Step 2</li>
-                    <li>Step 3</li>
-                </ol>
-                <h3>Observed result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-            </section>
-            <footer>
-                <!--
-                    Your name and your email address (or other contact information) should be placed here.
-                    This is important in the case we need to contact you for further reference. 
-                 -->
-                <Author name>, <email address>
-            </footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <!--
+        STEPS TO CREATE A TEST CASE:
+        1. Replace "xxxx" by number of your issue
+        2. Replace "Issue summary" by title of your issue
+        3. Put inspectable elements, form fields etc. into the "content" section
+        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
+        5. Describe the currently seen result under "Observed result"
+        6. Describe what you would expect to see under "Expected result"
+        7. Add your contact information
+        8. Remove all template comments
+
+        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
+     -->
+    <head>
+        <!--
+            Add the issue number and title here. 
+         -->
+        <title>Issue xxxx: Issue summary</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
+        </header>
+        <div>
+            <section id="content">
+                <!--
+                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
+                    If you generate output via JavaScript, put it into <section id="output"></section>.
+                    If you don't need any content, you can remove the "content" section.
+                 -->
+            </section>
+            <section id="description">
+                <!--
+                    The steps to reproduce the test case should be described here in detail.
+                 -->
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Step 1</li>
+                    <li>Step 2</li>
+                    <li>Step 3</li>
+                </ol>
+                <h3>Observed result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+            </section>
+            <footer>
+                <!--
+                    Your name and your email address (or other contact information) should be placed here.
+                    This is important in the case we need to contact you for further reference. 
+                 -->
+                <Author name>, <email address>
+            </footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/templates/default/issueXXXX.js b/tests/templates/default/issueXXXX.js
index 367e627..8931dc8 100644
--- a/tests/templates/default/issueXXXX.js
+++ b/tests/templates/default/issueXXXX.js
@@ -1,25 +1,25 @@
-/*
-    1. Replace "XXXX" by number of your issue
-    2. Replace "category" by the folder name you put your test case to
-    3. Replace "mainPanel" by main panel name
-    4. Replace "doSomething" by first step after selecting the main panel
-    5. Add the functionality and tests as described in the steps of the HTML file
-    6. Remove all template comments
-*/
-function runTest()
-{
-    FBTest.sysout("issueXXXX.START");
-
-    FBTest.openNewTab(basePath + "category/XXXX/issueXXXX.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("mainPanel");
-
-        FBTest.doSomething(function(win)
-        {
-            // Test functionality must be placed here
-
-            FBTest.testDone("issueXXXX.DONE");
-        });
-    });
-}
+/*
+    1. Replace "XXXX" by number of your issue
+    2. Replace "category" by the folder name you put your test case to
+    3. Replace "mainPanel" by main panel name
+    4. Replace "doSomething" by first step after selecting the main panel
+    5. Add the functionality and tests as described in the steps of the HTML file
+    6. Remove all template comments
+*/
+function runTest()
+{
+    FBTest.sysout("issueXXXX.START");
+
+    FBTest.openNewTab(basePath + "category/XXXX/issueXXXX.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("mainPanel");
+
+        FBTest.doSomething(function(win)
+        {
+            // Test functionality must be placed here
+
+            FBTest.testDone("issueXXXX.DONE");
+        });
+    });
+}
diff --git a/tests/templates/default/issueXXXXSeveralCases.html b/tests/templates/default/issueXXXXSeveralCases.html
index d0a9f50..4186caf 100644
--- a/tests/templates/default/issueXXXXSeveralCases.html
+++ b/tests/templates/default/issueXXXXSeveralCases.html
@@ -1,85 +1,85 @@
-<!DOCTYPE html>
-<html>
-    <!--
-        STEPS TO CREATE A TEST CASE:
-        1. Replace "xxxx" by number of your issue
-        2. Replace "Issue summary" by title of your issue
-        3. Put inspectable elements, form fields etc. into the "content" section
-        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
-        5. Describe the currently seen result under "Observed result"
-        6. Describe what you would expect to see under "Expected result"
-        7. Add your contact information
-        8. Remove all template comments
-
-        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
-     -->
-    <head>
-        <!--
-            Add the issue number and title here. 
-         -->
-        <title>Issue xxxx: Issue summary</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
-        </header>
-        <div>
-            <section id="content">
-                <!--
-                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
-                    If you generate output via JavaScript, put it into the "output" section.
-                    If you don't need any content, you can remove the "content" section.
-                 -->
-                <input type="text">
-                <button>execute</button>
-                <section id="output">
-                </section>
-            </section>
-            <section id="description">
-                <!--
-                    The steps to reproduce the test case should be described here in detail.
-                    If you just have one test case, you can leave out the <h2> headline.
-                    If you want to give further information about this test case, please put 
-                    it should be put inside a <p> paragraph preceding the steps to reproduce 
-                    the test case.
-                 -->
-                <p>Additional information</p>
-                <h2>Case 1</h2>
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Step 1</li>
-                    <li>Step 2</li>
-                    <li>Step 3</li>
-                </ol>
-                <h3>Expected Result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-                <h2>Case 2</h2>
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Step 1</li>
-                    <li>Step 2</li>
-                    <li>Step 3</li>
-                </ol>
-                <h3>Expected Result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-            </section>
-            <footer>
-                <!--
-                    Your name and your email address (or other contact information) should be placed here.
-                    This is important in the case we need to contact you for further reference. 
-                 -->
-                <Author name>, <email address>
-            </footer>
-        </div>
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <!--
+        STEPS TO CREATE A TEST CASE:
+        1. Replace "xxxx" by number of your issue
+        2. Replace "Issue summary" by title of your issue
+        3. Put inspectable elements, form fields etc. into the "content" section
+        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
+        5. Describe the currently seen result under "Observed result"
+        6. Describe what you would expect to see under "Expected result"
+        7. Add your contact information
+        8. Remove all template comments
+
+        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
+     -->
+    <head>
+        <!--
+            Add the issue number and title here. 
+         -->
+        <title>Issue xxxx: Issue summary</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
+        </header>
+        <div>
+            <section id="content">
+                <!--
+                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
+                    If you generate output via JavaScript, put it into the "output" section.
+                    If you don't need any content, you can remove the "content" section.
+                 -->
+                <input type="text">
+                <button>execute</button>
+                <section id="output">
+                </section>
+            </section>
+            <section id="description">
+                <!--
+                    The steps to reproduce the test case should be described here in detail.
+                    If you just have one test case, you can leave out the <h2> headline.
+                    If you want to give further information about this test case, please put 
+                    it should be put inside a <p> paragraph preceding the steps to reproduce 
+                    the test case.
+                 -->
+                <p>Additional information</p>
+                <h2>Case 1</h2>
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Step 1</li>
+                    <li>Step 2</li>
+                    <li>Step 3</li>
+                </ol>
+                <h3>Expected Result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+                <h2>Case 2</h2>
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Step 1</li>
+                    <li>Step 2</li>
+                    <li>Step 3</li>
+                </ol>
+                <h3>Expected Result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+            </section>
+            <footer>
+                <!--
+                    Your name and your email address (or other contact information) should be placed here.
+                    This is important in the case we need to contact you for further reference. 
+                 -->
+                <Author name>, <email address>
+            </footer>
+        </div>
+    </body>
+</html>
diff --git a/tests/templates/default/issueXXXXSeveralCases.js b/tests/templates/default/issueXXXXSeveralCases.js
index cd0d693..cafac75 100644
--- a/tests/templates/default/issueXXXXSeveralCases.js
+++ b/tests/templates/default/issueXXXXSeveralCases.js
@@ -1,48 +1,48 @@
-/*
-    1. Replace "XXXX" by number of your issue
-    2. Replace "category" by the folder name you put your test case to
-    3. Replace "mainPanel" by main panel name
-    4. Replace "doSomething" by first step after selecting the main panel
-    5. Add the functionality and tests to each case as described in the steps of the HTML file
-    6. Remove all template comments
-*/
-function runTest()
-{
-    FBTest.sysout("issueXXXX.START");
-
-    FBTest.openNewTab(basePath + "category/XXXX/issueXXXX.html", function(win)
-    {
-        FBTest.openFirebug();
-        FBTest.selectPanel("mainPanel");
-
-        var tests = [];
-        tests.push(test0);
-        tests.push(test1);
-
-        FBTestFirebug.runTestSuite(tests, function()
-        {
-            FBTest.testDone("issueXXXX; DONE");
-        });
-    });
-}
-
-
-function test0(callback)
-{
-    FBTest.doSomething(function(win)
-    {
-        // Test functionality must be placed here
-
-        callback();
-    });
-}
-
-function test1(callback)
-{
-    FBTest.doSomething(function(win)
-    {
-        // Test functionality must be placed here
-
-        callback();
-    });
-}
+/*
+    1. Replace "XXXX" by number of your issue
+    2. Replace "category" by the folder name you put your test case to
+    3. Replace "mainPanel" by main panel name
+    4. Replace "doSomething" by first step after selecting the main panel
+    5. Add the functionality and tests to each case as described in the steps of the HTML file
+    6. Remove all template comments
+*/
+function runTest()
+{
+    FBTest.sysout("issueXXXX.START");
+
+    FBTest.openNewTab(basePath + "category/XXXX/issueXXXX.html", function(win)
+    {
+        FBTest.openFirebug();
+        FBTest.selectPanel("mainPanel");
+
+        var tests = [];
+        tests.push(test0);
+        tests.push(test1);
+
+        FBTestFirebug.runTestSuite(tests, function()
+        {
+            FBTest.testDone("issueXXXX; DONE");
+        });
+    });
+}
+
+
+function test0(callback)
+{
+    FBTest.doSomething(function(win)
+    {
+        // Test functionality must be placed here
+
+        callback();
+    });
+}
+
+function test1(callback)
+{
+    FBTest.doSomething(function(win)
+    {
+        // Test functionality must be placed here
+
+        callback();
+    });
+}
diff --git a/tests/templates/default/testcase.css b/tests/templates/default/testcase.css
index 9c0323d..7cfb97f 100644
--- a/tests/templates/default/testcase.css
+++ b/tests/templates/default/testcase.css
@@ -1,142 +1,142 @@
- at font-face {
-    font-family: 'TitilliumMaps';
-    src: url('http://getfirebug.com/fonts/TitilliumMaps26L001.eot');
-    src: local('☺'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.woff') format('woff'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.ttf') format('truetype');
-    font-weight: bold;
-}
-
-* {
-   position: relative;
-}
-
-html, body {
-    width: 100%;
-    min-height: -moz-calc(100% - 30px);
-    margin: 0;
-    padding-bottom: 30px;
-}
-
-body {
-    background: #FFFFFF -moz-linear-gradient(center top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    font-family: "Trebuchet MS", Helvetica, sans-serif;
-    font-size: 0.9em;
-}
-
-body > div, h1 {
-    margin: auto;
-    width: 800px;
-}
-
-body > div {
-    top: 40px;
-    border-radius: 8px;
-    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    background-color: rgba(255, 255, 255, 0.6);
-    padding: 15px;
-}
-
-section#content {
-    background-image: -moz-linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    border-radius: 8px;
-    margin-bottom: 10px;
-    padding: 10px;
-}
-
-section#output {
-    display: none;
-    background-image: -moz-linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    margin: 10px 0;
-    padding: 10px;
-}
-
-pre {
-    margin: 0;
-}
-
-footer {
-    margin-top: 10px;
-    text-align: right;
-    font-size: 75%;
-    font-style: italic;
-}
-
-h1, h2 {
-    font-family: /* TitilliumMaps, */ "Trebuchet MS", Helvetica, sans-serif;
-    font-size: 130%;
-    font-weight: bold;
-}
-
-h1 {
-   top: 20px;
-}
-
-h2 {
-    margin: 0.5em 0;
-    border-bottom: 2px solid #9ACBE4;
-}
-
-h3 {
-    margin: 0.3em 0 0.2em 0;
-    font-size: 105%;
-}
-
-p, ol, ul {
-   margin: 0.2em 0;
-}
-
-p {
-    padding-left: 20px;
-}
-
-section#description p {
-  font-style: italic;
-}
-
-section#description ul {
-    list-style-type: square;
-    list-style-image: url(data:image/gif;base64,R0lGODlhBQAIAPcAAGOMnGOMnP///2OMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOM [...]
-}
-
-section#description li.ok, section#description li span.ok {
-    color: #00B400;
-}
-
-section#description li.error, section#description li span.error {
-    color: #DC0000;
-}
-
-code {
-    white-space: pre;
-    color: #008C00;
-}
-
-code.key {
-    color: #0000DC;
-}
-
-input, button {
-    border: 1px solid #AAAAAA;
-    border-radius: 5px;
-    padding: 3px 5px;
-}
-
-input[type="button"], button {
-    background-image: -moz-linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    text-shadow: 1px 1px rgba(255, 255, 255, 0.3);
-}
-
-input[type="button"][disabled="true"], button[disabled="true"] {
-    background-image: -moz-linear-gradient(bottom, #C8C8C8, #F0F0F0);
-}
-
-input[type="button"]:not([disabled="true"]):hover,
-button:not([disabled="true"]):hover {
-    background-image: -moz-linear-gradient(bottom, #B4B4B4, #DCDCDC);
-}
-
-input[type="button"]:not([disabled="true"]):active,
-button:not([disabled="true"]):active {
-    background-image: -moz-linear-gradient(top, #8C8C8C, #A0A0A0);
-    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
-}
+ at font-face {
+    font-family: 'TitilliumMaps';
+    src: url('http://getfirebug.com/fonts/TitilliumMaps26L001.eot');
+    src: local('☺'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.woff') format('woff'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.ttf') format('truetype');
+    font-weight: bold;
+}
+
+* {
+   position: relative;
+}
+
+html, body {
+    width: 100%;
+    min-height: -moz-calc(100% - 30px);
+    margin: 0;
+    padding-bottom: 30px;
+}
+
+body {
+    background: #FFFFFF -moz-linear-gradient(center top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    font-family: "Trebuchet MS", Helvetica, sans-serif;
+    font-size: 0.9em;
+}
+
+body > div, h1 {
+    margin: auto;
+    width: 800px;
+}
+
+body > div {
+    top: 40px;
+    border-radius: 8px;
+    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    background-color: rgba(255, 255, 255, 0.6);
+    padding: 15px;
+}
+
+section#content {
+    background-image: -moz-linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    border-radius: 8px;
+    margin-bottom: 10px;
+    padding: 10px;
+}
+
+section#output {
+    display: none;
+    background-image: -moz-linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    margin: 10px 0;
+    padding: 10px;
+}
+
+pre {
+    margin: 0;
+}
+
+footer {
+    margin-top: 10px;
+    text-align: right;
+    font-size: 75%;
+    font-style: italic;
+}
+
+h1, h2 {
+    font-family: /* TitilliumMaps, */ "Trebuchet MS", Helvetica, sans-serif;
+    font-size: 130%;
+    font-weight: bold;
+}
+
+h1 {
+   top: 20px;
+}
+
+h2 {
+    margin: 0.5em 0;
+    border-bottom: 2px solid #9ACBE4;
+}
+
+h3 {
+    margin: 0.3em 0 0.2em 0;
+    font-size: 105%;
+}
+
+p, ol, ul {
+   margin: 0.2em 0;
+}
+
+p {
+    padding-left: 20px;
+}
+
+section#description p {
+  font-style: italic;
+}
+
+section#description ul {
+    list-style-type: square;
+    list-style-image: url(data:image/gif;base64,R0lGODlhBQAIAPcAAGOMnGOMnP///2OMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOM [...]
+}
+
+section#description li.ok, section#description li span.ok {
+    color: #00B400;
+}
+
+section#description li.error, section#description li span.error {
+    color: #DC0000;
+}
+
+code {
+    white-space: pre;
+    color: #008C00;
+}
+
+code.key {
+    color: #0000DC;
+}
+
+input, button {
+    border: 1px solid #AAAAAA;
+    border-radius: 5px;
+    padding: 3px 5px;
+}
+
+input[type="button"], button {
+    background-image: -moz-linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    text-shadow: 1px 1px rgba(255, 255, 255, 0.3);
+}
+
+input[type="button"][disabled="true"], button[disabled="true"] {
+    background-image: -moz-linear-gradient(bottom, #C8C8C8, #F0F0F0);
+}
+
+input[type="button"]:not([disabled="true"]):hover,
+button:not([disabled="true"]):hover {
+    background-image: -moz-linear-gradient(bottom, #B4B4B4, #DCDCDC);
+}
+
+input[type="button"]:not([disabled="true"]):active,
+button:not([disabled="true"]):active {
+    background-image: -moz-linear-gradient(top, #8C8C8C, #A0A0A0);
+    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+}
diff --git a/tests/templates/firebugLite/issueXXXX.html b/tests/templates/firebugLite/issueXXXX.html
index 678064c..e56dd24 100644
--- a/tests/templates/firebugLite/issueXXXX.html
+++ b/tests/templates/firebugLite/issueXXXX.html
@@ -1,62 +1,62 @@
-<!DOCTYPE html>
-<html>
-    <!--
-        STEPS TO CREATE A TEST CASE:
-        1. Replace "xxxx" by number of your issue
-        2. Replace "Issue summary" by title of your issue
-        3. Put inspectable elements, form fields etc. into the "content" section
-        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
-        5. Describe the currently seen result under "Observed result"
-        6. Describe what you would expect to see under "Expected result"
-        7. Add your contact information
-        8. Remove all template comments
-
-        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/firebugLite/testcase.css
-     -->
-    <head>
-        <!--
-            Add the issue number and title here. 
-         -->
-        <title>Issue xxxx: Issue summary</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="https://getfirebug.com/tests/content/templates/firebugLite/testcase.css" type="text/css" rel="stylesheet"/>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
-        </header>
-        <div>
-            <section id="content">
-                <!--
-                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
-                    If you generate output via JavaScript, put it into <section id="output"></section>.
-                    If you don't need any content, you can remove the "content" section.
-                 -->
-            </section>
-            <section id="description">
-                <!--
-                    The steps to reproduce the test case should be described here in detail.
-                 -->
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Step 1</li>
-                    <li>Step 2</li>
-                    <li>Step 3</li>
-                </ol>
-                <h3>Expected Result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-            </section>
-            <footer>
-                <!--
-                    Your name and your email address (or other contact information) should be placed here.
-                    This is important in the case we need to contact you for further reference. 
-                 -->
-                <author name>, <email address>
-            </footer>
-        </div>
-    </body>
+<!DOCTYPE html>
+<html>
+    <!--
+        STEPS TO CREATE A TEST CASE:
+        1. Replace "xxxx" by number of your issue
+        2. Replace "Issue summary" by title of your issue
+        3. Put inspectable elements, form fields etc. into the "content" section
+        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
+        5. Describe the currently seen result under "Observed result"
+        6. Describe what you would expect to see under "Expected result"
+        7. Add your contact information
+        8. Remove all template comments
+
+        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/firebugLite/testcase.css
+     -->
+    <head>
+        <!--
+            Add the issue number and title here. 
+         -->
+        <title>Issue xxxx: Issue summary</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="https://getfirebug.com/tests/content/templates/firebugLite/testcase.css" type="text/css" rel="stylesheet"/>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
+        </header>
+        <div>
+            <section id="content">
+                <!--
+                    All inspectable elements, form fields etc. needed to execute the test should be placed here.
+                    If you generate output via JavaScript, put it into <section id="output"></section>.
+                    If you don't need any content, you can remove the "content" section.
+                 -->
+            </section>
+            <section id="description">
+                <!--
+                    The steps to reproduce the test case should be described here in detail.
+                 -->
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Step 1</li>
+                    <li>Step 2</li>
+                    <li>Step 3</li>
+                </ol>
+                <h3>Expected Result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+            </section>
+            <footer>
+                <!--
+                    Your name and your email address (or other contact information) should be placed here.
+                    This is important in the case we need to contact you for further reference. 
+                 -->
+                <author name>, <email address>
+            </footer>
+        </div>
+    </body>
 </html>
\ No newline at end of file
diff --git a/tests/templates/firebugLite/testcase.css b/tests/templates/firebugLite/testcase.css
index ca319a5..0c37ceb 100644
--- a/tests/templates/firebugLite/testcase.css
+++ b/tests/templates/firebugLite/testcase.css
@@ -1,181 +1,181 @@
- at font-face {
-    font-family: 'TitilliumMaps';
-    src: url('http://getfirebug.com/fonts/TitilliumMaps26L001.eot');
-    src: local('☺'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.woff') format('woff'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.ttf') format('truetype');
-    font-weight: bold;
-}
-
-* {
-   position: relative;
-}
-
-html, body {
-    width: 100%;
-    min-height: 100%;
-    min-height: calc(100% - 30px);
-    min-height: -moz-calc(100% - 30px);
-    margin: 0;
-    padding-bottom: 30px;
-}
-
-body {
-    background-color: #EAF1FB;
-    background: #FFFFFF linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    background: #FFFFFF -moz-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    background: #FFFFFF -webkit-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    background: #FFFFFF -o-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    background: #FFFFFF -ms-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
-    font-family: "Trebuchet MS", Helvetica, sans-serif;
-    font-size: 0.9em;
-}
-
-body > div, h1 {
-    margin: auto;
-    width: 800px;
-}
-
-body > div {
-    top: 40px;
-    border-radius: 8px;
-    -moz-border-radius: 8px;
-    -webkit-border-radius: 8px;
-    -o-border-radius: 8px;
-    -webkit-border-radius: 8px;
-    -o-border-radius: 8px;
-    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-    background-color: rgba(255, 255, 255, 0.6);
-    padding: 15px;
-}
-
-section#content {
-    background-image: linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    background-image: -moz-linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    background-image: -webkit-linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    background-image: -o-linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    background-image: -ms-linear-gradient(bottom, #E6E6E6, #F0F0F0);
-    border-radius: 8px;
-    -moz-border-radius: 8px;
-    -webkit-border-radius: 8px;
-    -o-border-radius: 8px;
-    margin-bottom: 10px;
-    padding: 10px;
-}
-
-section#output {
-    background-image: linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    background-image: -moz-linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    background-image: -webkit-linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    background-image: -o-linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    background-image: -ms-linear-gradient(bottom, #F5F5F5, #FFFFFF);
-    height: 50px;
-    margin: 10px 0;
-    padding: 10px;
-}
-
-footer {
-    margin-top: 10px;
-    text-align: right;
-    font-size: 75%;
-    font-style: italic;
-}
-
-h1, h2 {
-    font-family: /* TitilliumMaps, */ "Trebuchet MS", Helvetica, sans-serif;
-    font-size: 130%;
-    font-weight: bold;
-}
-
-h1 {
-   top: 20px;
-}
-
-h2 {
-    margin: 0.5em 0;
-    border-bottom: 2px solid #9ACBE4;
-}
-
-h3 {
-    margin: 0.3em 0 0.2em 0;
-    font-size: 105%;
-}
-
-p, ol, ul {
-    margin: 0.2em 0;
-}
-
-p {
-    padding-left: 20px;
-}
-
-section#description p {
-    font-style: italic;
-}
-
-ul {
-    list-style-type: square;
-    list-style-image: url(data:image/gif;base64,R0lGODlhBQAIAPcAAGOMnGOMnP///2OMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOM [...]
-}
-
-li.ok, li span.ok {
-    color: #00B400;
-}
-
-li.error, li span.error {
-    color: #DC0000;
-}
-
-code {
-    color: #008C00;
-}
-
-code.key {
-    color: #0000FF;
-}
-
-input[type="text"], button {
-    border: 1px solid #AAAAAA;
-    border-radius: 5px;
-    -moz-border-radius: 5px;
-    -webkit-border-radius: 5px;
-    -o-border-radius: 5px;
-    padding: 3px 5px;
-}
-
-input[type="button"], button {
-    background-image: linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    background-image: -moz-linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    background-image: -webkit-linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    background-image: -o-linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    background-image: -ms-linear-gradient(bottom, #A0A0A0, #C8C8C8);
-    box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    -moz-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    -webkit-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    -o-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    -ms-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
-    text-shadow: 1px 1px rgba(255, 255, 255, 0.3);
-}
-
-input[type="button"]:hover, button:hover {
-    background-image: linear-gradient(bottom, #B4B4B4, #DCDCDC);
-    background-image: -moz-linear-gradient(bottom, #B4B4B4, #DCDCDC);
-    background-image: -webkit-linear-gradient(bottom, #B4B4B4, #DCDCDC);
-    background-image: -o-linear-gradient(bottom, #B4B4B4, #DCDCDC);
-    background-image: -ms-linear-gradient(bottom, #B4B4B4, #DCDCDC);
-}
-
-input[type="button"]:active, button:active {
-    background-image: linear-gradient(top, #8C8C8C, #A0A0A0);
-    background-image: -moz-linear-gradient(top, #8C8C8C, #A0A0A0);
-    background-image: -webkit-linear-gradient(top, #8C8C8C, #A0A0A0);
-    background-image: -o-linear-gradient(top, #8C8C8C, #A0A0A0);
-    background-image: -ms-linear-gradient(top, #8C8C8C, #A0A0A0);
-    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
-    -moz-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
-    -webkit-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
-    -o-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
-    -ms-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+ at font-face {
+    font-family: 'TitilliumMaps';
+    src: url('http://getfirebug.com/fonts/TitilliumMaps26L001.eot');
+    src: local('☺'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.woff') format('woff'), url('http://getfirebug.com/fonts/TitilliumMaps26L001.ttf') format('truetype');
+    font-weight: bold;
+}
+
+* {
+   position: relative;
+}
+
+html, body {
+    width: 100%;
+    min-height: 100%;
+    min-height: calc(100% - 30px);
+    min-height: -moz-calc(100% - 30px);
+    margin: 0;
+    padding-bottom: 30px;
+}
+
+body {
+    background-color: #EAF1FB;
+    background: #FFFFFF linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    background: #FFFFFF -moz-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    background: #FFFFFF -webkit-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    background: #FFFFFF -o-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    background: #FFFFFF -ms-linear-gradient(top, #EAF1FB, #FFFFFF 450px) no-repeat;
+    font-family: "Trebuchet MS", Helvetica, sans-serif;
+    font-size: 0.9em;
+}
+
+body > div, h1 {
+    margin: auto;
+    width: 800px;
+}
+
+body > div {
+    top: 40px;
+    border-radius: 8px;
+    -moz-border-radius: 8px;
+    -webkit-border-radius: 8px;
+    -o-border-radius: 8px;
+    -webkit-border-radius: 8px;
+    -o-border-radius: 8px;
+    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+    background-color: rgba(255, 255, 255, 0.6);
+    padding: 15px;
+}
+
+section#content {
+    background-image: linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    background-image: -moz-linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    background-image: -webkit-linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    background-image: -o-linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    background-image: -ms-linear-gradient(bottom, #E6E6E6, #F0F0F0);
+    border-radius: 8px;
+    -moz-border-radius: 8px;
+    -webkit-border-radius: 8px;
+    -o-border-radius: 8px;
+    margin-bottom: 10px;
+    padding: 10px;
+}
+
+section#output {
+    background-image: linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    background-image: -moz-linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    background-image: -webkit-linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    background-image: -o-linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    background-image: -ms-linear-gradient(bottom, #F5F5F5, #FFFFFF);
+    height: 50px;
+    margin: 10px 0;
+    padding: 10px;
+}
+
+footer {
+    margin-top: 10px;
+    text-align: right;
+    font-size: 75%;
+    font-style: italic;
+}
+
+h1, h2 {
+    font-family: /* TitilliumMaps, */ "Trebuchet MS", Helvetica, sans-serif;
+    font-size: 130%;
+    font-weight: bold;
+}
+
+h1 {
+   top: 20px;
+}
+
+h2 {
+    margin: 0.5em 0;
+    border-bottom: 2px solid #9ACBE4;
+}
+
+h3 {
+    margin: 0.3em 0 0.2em 0;
+    font-size: 105%;
+}
+
+p, ol, ul {
+    margin: 0.2em 0;
+}
+
+p {
+    padding-left: 20px;
+}
+
+section#description p {
+    font-style: italic;
+}
+
+ul {
+    list-style-type: square;
+    list-style-image: url(data:image/gif;base64,R0lGODlhBQAIAPcAAGOMnGOMnP///2OMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOMnGOM [...]
+}
+
+li.ok, li span.ok {
+    color: #00B400;
+}
+
+li.error, li span.error {
+    color: #DC0000;
+}
+
+code {
+    color: #008C00;
+}
+
+code.key {
+    color: #0000FF;
+}
+
+input[type="text"], button {
+    border: 1px solid #AAAAAA;
+    border-radius: 5px;
+    -moz-border-radius: 5px;
+    -webkit-border-radius: 5px;
+    -o-border-radius: 5px;
+    padding: 3px 5px;
+}
+
+input[type="button"], button {
+    background-image: linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    background-image: -moz-linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    background-image: -webkit-linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    background-image: -o-linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    background-image: -ms-linear-gradient(bottom, #A0A0A0, #C8C8C8);
+    box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    -moz-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    -webkit-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    -o-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    -ms-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 2px 2px -1px #FFFFFF inset;
+    text-shadow: 1px 1px rgba(255, 255, 255, 0.3);
+}
+
+input[type="button"]:hover, button:hover {
+    background-image: linear-gradient(bottom, #B4B4B4, #DCDCDC);
+    background-image: -moz-linear-gradient(bottom, #B4B4B4, #DCDCDC);
+    background-image: -webkit-linear-gradient(bottom, #B4B4B4, #DCDCDC);
+    background-image: -o-linear-gradient(bottom, #B4B4B4, #DCDCDC);
+    background-image: -ms-linear-gradient(bottom, #B4B4B4, #DCDCDC);
+}
+
+input[type="button"]:active, button:active {
+    background-image: linear-gradient(top, #8C8C8C, #A0A0A0);
+    background-image: -moz-linear-gradient(top, #8C8C8C, #A0A0A0);
+    background-image: -webkit-linear-gradient(top, #8C8C8C, #A0A0A0);
+    background-image: -o-linear-gradient(top, #8C8C8C, #A0A0A0);
+    background-image: -ms-linear-gradient(top, #8C8C8C, #A0A0A0);
+    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+    -moz-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+    -webkit-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+    -o-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
+    -ms-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px -1px #FFFFFF inset;
 }
\ No newline at end of file
diff --git a/tests/templates/net/issueXXXX.html b/tests/templates/net/issueXXXX.html
index f4d33b6..203be61 100644
--- a/tests/templates/net/issueXXXX.html
+++ b/tests/templates/net/issueXXXX.html
@@ -1,85 +1,85 @@
-<!DOCTYPE html>
-<html>
-    <!--
-        STEPS TO CREATE A TEST CASE:
-        1. Replace "xxxx" by number of your issue
-        2. Replace "Issue summary" by title of your issue
-        3. Put form fields into the "content" section
-        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
-        5. Describe the currently seen result under "Observed result"
-        6. Describe what you would expect to see under "Expected result"
-        7. Add your contact information
-        8. Remove all template comments
-
-        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
-     -->
-    <head>
-        <!--
-            Add the issue number and title here. 
-         -->
-        <title>Issue xxxx: Issue summary</title>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
-        <script type="text/javascript">
-            function executeTest()
-            {
-                var request = new XMLHttpRequest();
-                request.open("GET", "issueXXXX.php", true);
-            
-                request.onreadystatechange = function()
-                {
-                    if (request.readyState == 4 && request.status == 200)
-                    {
-                    }
-                }
-            
-                request.send(null);
-            }
-        </script>
-    </head>
-    <body>
-        <header>
-            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
-        </header>
-        <div>
-            <section id="content">
-                <!--
-                    All form fields needed to execute the test should be placed here.
-                    If you generate output via JavaScript, put it in <section id="output"></section>.
-                 -->
-                <button id="executeTest" onclick="executeTest();">Execute Test</button>
-            </section>
-            <section id="description">
-                <!--
-                    The steps to reproduce the test case should be described here in detail.
-                 -->
-                <h3>Steps to reproduce</h3>
-                <ol>
-                    <li>Open Firebug</li>
-                    <li>Enable and switch to the <em>Net</em> panel</li>
-                    <li>Click the <em>Execute Test</em> button above</li>
-                    <li></li>
-                </ol>
-                <h3>Observed result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-                <h3>Expected result</h3>
-                <ul>
-                    <li>Point 1</li>
-                    <li>Point 2</li>
-                    <li>Point 3</li>
-                </ul>
-            </section>
-            <footer>
-                <!--
-                    Your name and your email address (or other contact information) should be placed here.
-                    This is important in the case we need to contact you for further reference. 
-                 -->
-                <Author name>, <email address>
-            </footer>
-        </div>
-    </body>
+<!DOCTYPE html>
+<html>
+    <!--
+        STEPS TO CREATE A TEST CASE:
+        1. Replace "xxxx" by number of your issue
+        2. Replace "Issue summary" by title of your issue
+        3. Put form fields into the "content" section
+        4. Add the exact steps to reproduce your issue under "Steps to reproduce"
+        5. Describe the currently seen result under "Observed result"
+        6. Describe what you would expect to see under "Expected result"
+        7. Add your contact information
+        8. Remove all template comments
+
+        Note: Make sure, the URL to testcase.css is https://getfirebug.com/tests/content/templates/default/testcase.css
+     -->
+    <head>
+        <!--
+            Add the issue number and title here. 
+         -->
+        <title>Issue xxxx: Issue summary</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <link href="https://getfirebug.com/tests/head/_common/testcase.css" type="text/css" rel="stylesheet"/>
+        <script type="text/javascript">
+            function executeTest()
+            {
+                var request = new XMLHttpRequest();
+                request.open("GET", "issueXXXX.php", true);
+            
+                request.onreadystatechange = function()
+                {
+                    if (request.readyState == 4 && request.status == 200)
+                    {
+                    }
+                }
+            
+                request.send(null);
+            }
+        </script>
+    </head>
+    <body>
+        <header>
+            <h1><a href="http://code.google.com/p/fbug/issues/detail?id=xxxx">Issue xxxx</a>: Issue summary</h1>
+        </header>
+        <div>
+            <section id="content">
+                <!--
+                    All form fields needed to execute the test should be placed here.
+                    If you generate output via JavaScript, put it in <section id="output"></section>.
+                 -->
+                <button id="executeTest" onclick="executeTest();">Execute Test</button>
+            </section>
+            <section id="description">
+                <!--
+                    The steps to reproduce the test case should be described here in detail.
+                 -->
+                <h3>Steps to reproduce</h3>
+                <ol>
+                    <li>Open Firebug</li>
+                    <li>Enable and switch to the <em>Net</em> panel</li>
+                    <li>Click the <em>Execute Test</em> button above</li>
+                    <li></li>
+                </ol>
+                <h3>Observed result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+                <h3>Expected result</h3>
+                <ul>
+                    <li>Point 1</li>
+                    <li>Point 2</li>
+                    <li>Point 3</li>
+                </ul>
+            </section>
+            <footer>
+                <!--
+                    Your name and your email address (or other contact information) should be placed here.
+                    This is important in the case we need to contact you for further reference. 
+                 -->
+                <Author name>, <email address>
+            </footer>
+        </div>
+    </body>
 </html>
\ No newline at end of file
diff --git a/tests/templates/net/issueXXXX.js b/tests/templates/net/issueXXXX.js
index c2b5e28..5c7a091 100644
--- a/tests/templates/net/issueXXXX.js
+++ b/tests/templates/net/issueXXXX.js
@@ -1,30 +1,30 @@
-// 1) Load test case page.
-// 2) Open Firebug and enable the Net panel
-// 3) Select Net panel
-// 4) Execute test implemented on the test page. 
-// 5) Perform test-driver code
-// 6) Finish test.
-function runTest()
-{
-    FBTest.sysout("issueXXXX.START");
-
-    // 1) Load test case page
-    FBTest.openNewTab(basePath + "net/XXXX/issueXXXX.html", function(win)
-    {
-        // 2) Open Firebug and enable the Net panel.
-        FBTest.openFirebug();
-        FBTest.enableNetPanel(function(win)
-        {
-            // 3) Select Net panel
-            var panel = FW.FirebugChrome.selectPanel("net");
-
-            // 4) Execute test by clicking on the 'Execute Test' button.
-            FBTest.click(win.document.getElementById("testButton"));
-
-            // 5) TODO: Test driver code (can be asynchronous)
-
-            // 6) Finish test
-            FBTest.testDone("issueXXXX.DONE");
-        });
-    });
-}
+// 1) Load test case page.
+// 2) Open Firebug and enable the Net panel
+// 3) Select Net panel
+// 4) Execute test implemented on the test page. 
+// 5) Perform test-driver code
+// 6) Finish test.
+function runTest()
+{
+    FBTest.sysout("issueXXXX.START");
+
+    // 1) Load test case page
+    FBTest.openNewTab(basePath + "net/XXXX/issueXXXX.html", function(win)
+    {
+        // 2) Open Firebug and enable the Net panel.
+        FBTest.openFirebug();
+        FBTest.enableNetPanel(function(win)
+        {
+            // 3) Select Net panel
+            var panel = FW.FirebugChrome.selectPanel("net");
+
+            // 4) Execute test by clicking on the 'Execute Test' button.
+            FBTest.click(win.document.getElementById("testButton"));
+
+            // 5) TODO: Test driver code (can be asynchronous)
+
+            // 6) Finish test
+            FBTest.testDone("issueXXXX.DONE");
+        });
+    });
+}
diff --git a/tests/templates/net/issueXXXX.php b/tests/templates/net/issueXXXX.php
index 68ded29..70eaf5d 100644
--- a/tests/templates/net/issueXXXX.php
+++ b/tests/templates/net/issueXXXX.php
@@ -1,4 +1,4 @@
-<?php
-    header("Content-Type: text/plain");
-    echo "Response for test XXXX";
+<?php
+    header("Content-Type: text/plain");
+    echo "Response for test XXXX";
 ?>
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git



More information about the Pkg-mozext-commits mailing list