<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[205674] trunk/Source/WebInspectorUI</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/205674">205674</a></dd>
<dt>Author</dt> <dd>nvasilyev@apple.com</dd>
<dt>Date</dt> <dd>2016-09-08 16:13:57 -0700 (Thu, 08 Sep 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Add a button to navigation bar to toggle Control Flow Profiler
https://bugs.webkit.org/show_bug.cgi?id=160973
&lt;rdar://problem/27912606&gt;

Reviewed by Brian Burg.

* Localizations/en.lproj/localizedStrings.js:
Add &quot;Fade unexecuted code&quot; and &quot;Do not fade unexecuted code&quot;.

* UserInterface/Base/Main.js:
(WebInspector.loaded):
Add a setting to remember whether Code Coverage Profiler is on or off between Web Inspector reloads.

* UserInterface/Views/SourceCodeTextEditor.js:
(WebInspector.SourceCodeTextEditor.prototype.shown):
(WebInspector.SourceCodeTextEditor.prototype.canShowTypeAnnotations):
(WebInspector.SourceCodeTextEditor.prototype.canShowCoverageHints):
(WebInspector.SourceCodeTextEditor.prototype.contentDidChange):
(WebInspector.SourceCodeTextEditor.prototype.toggleTypeAnnotations):
(WebInspector.SourceCodeTextEditor.prototype.toggleUnexecutedCodeHighlights):
(WebInspector.SourceCodeTextEditor.prototype.prettyPrint):
(WebInspector.SourceCodeTextEditor.prototype._proceedPopulateWithContent):
(WebInspector.SourceCodeTextEditor.prototype._setTypeTokenAnnotatorEnabledState):
(WebInspector.SourceCodeTextEditor.prototype.set _basicBlockAnnotatorEnabled):
(WebInspector.SourceCodeTextEditor.prototype._enableScrollEventsForTypeTokenAnnotator):
(WebInspector.SourceCodeTextEditor.prototype._enableScrollEventsForControlFlowAnnotator):
(WebInspector.SourceCodeTextEditor.prototype._disableScrollEventsForControlFlowAnnotator):
(WebInspector.SourceCodeTextEditor.prototype._createTypeTokenScrollEventHandler):
(WebInspector.SourceCodeTextEditor.prototype._createControlFlowScrollEventHandler):
(WebInspector.SourceCodeTextEditor.prototype.canBeFormatted): Deleted.
(WebInspector.SourceCodeTextEditor.prototype.dialogWasDismissed): Deleted.
(WebInspector.SourceCodeTextEditor.prototype.showPopoverForTypes): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._addBreakpointWithEditorLineInfo): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._removeBreakpointWithEditorLineInfo): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._tokenTrackingControllerHighlightedMarkedExpression): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._dismissEditingController): Deleted.
(WebInspector.SourceCodeTextEditor.prototype.editingControllerDidStartEditing): Deleted.
(WebInspector.SourceCodeTextEditor.prototype.editingControllerDidFinishEditing): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._getAssociatedScript): Deleted.
(WebInspector.SourceCodeTextEditor.prototype._createTypeTokenAnnotator): Deleted.
Make Code Coverage profiler independent from Type Profiler.

* UserInterface/Views/TextContentView.js:
(WebInspector.TextContentView):
(WebInspector.TextContentView.prototype.get navigationItems):
(WebInspector.TextContentView.prototype.get textEditor): Deleted.
* UserInterface/Views/TextEditor.js:
(WebInspector.TextEditor.prototype.get hasModified):
(WebInspector.TextEditor.prototype.canShowCoverageHints):
* UserInterface/Views/TextResourceContentView.js:
(WebInspector.TextResourceContentView):
(WebInspector.TextResourceContentView.prototype.get navigationItems):
(WebInspector.TextResourceContentView.prototype._contentDidPopulate):
(WebInspector.TextResourceContentView.prototype._toggleTypeAnnotations):
(WebInspector.TextResourceContentView.prototype._toggleUnexecutedCodeHighlights):
(WebInspector.TextResourceContentView.prototype._enableControlFlowProfilerSettingChanged):
(WebInspector.TextResourceContentView.prototype._contentWillPopulate): Deleted.
* UserInterface/Views/ScriptContentView.js:
(WebInspector.ScriptContentView):
(WebInspector.ScriptContentView.prototype.get navigationItems):
(WebInspector.ScriptContentView.prototype._contentDidPopulate):
(WebInspector.ScriptContentView.prototype._toggleTypeAnnotations):
(WebInspector.ScriptContentView.prototype._toggleUnexecutedCodeHighlights):
(WebInspector.ScriptContentView.prototype._enableControlFlowProfilerSettingChanged):
(WebInspector.ScriptContentView.prototype._contentWillPopulate): Deleted.
Add the [C] icon right next to the [T] (Type Profiler) icon.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUILocalizationsenlprojlocalizedStringsjs">trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceBaseMainjs">trunk/Source/WebInspectorUI/UserInterface/Base/Main.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScriptContentViewjs">trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsSourceCodeTextEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTextContentViewjs">trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTextEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/TextEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTextResourceContentViewjs">trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/ChangeLog        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -1,3 +1,72 @@
</span><ins>+2016-09-08  Nikita Vasilyev  &lt;nvasilyev@apple.com&gt;
+
+        Web Inspector: Add a button to navigation bar to toggle Control Flow Profiler
+        https://bugs.webkit.org/show_bug.cgi?id=160973
+        &lt;rdar://problem/27912606&gt;
+
+        Reviewed by Brian Burg.
+
+        * Localizations/en.lproj/localizedStrings.js:
+        Add &quot;Fade unexecuted code&quot; and &quot;Do not fade unexecuted code&quot;.
+
+        * UserInterface/Base/Main.js:
+        (WebInspector.loaded):
+        Add a setting to remember whether Code Coverage Profiler is on or off between Web Inspector reloads.
+
+        * UserInterface/Views/SourceCodeTextEditor.js:
+        (WebInspector.SourceCodeTextEditor.prototype.shown):
+        (WebInspector.SourceCodeTextEditor.prototype.canShowTypeAnnotations):
+        (WebInspector.SourceCodeTextEditor.prototype.canShowCoverageHints):
+        (WebInspector.SourceCodeTextEditor.prototype.contentDidChange):
+        (WebInspector.SourceCodeTextEditor.prototype.toggleTypeAnnotations):
+        (WebInspector.SourceCodeTextEditor.prototype.toggleUnexecutedCodeHighlights):
+        (WebInspector.SourceCodeTextEditor.prototype.prettyPrint):
+        (WebInspector.SourceCodeTextEditor.prototype._proceedPopulateWithContent):
+        (WebInspector.SourceCodeTextEditor.prototype._setTypeTokenAnnotatorEnabledState):
+        (WebInspector.SourceCodeTextEditor.prototype.set _basicBlockAnnotatorEnabled):
+        (WebInspector.SourceCodeTextEditor.prototype._enableScrollEventsForTypeTokenAnnotator):
+        (WebInspector.SourceCodeTextEditor.prototype._enableScrollEventsForControlFlowAnnotator):
+        (WebInspector.SourceCodeTextEditor.prototype._disableScrollEventsForControlFlowAnnotator):
+        (WebInspector.SourceCodeTextEditor.prototype._createTypeTokenScrollEventHandler):
+        (WebInspector.SourceCodeTextEditor.prototype._createControlFlowScrollEventHandler):
+        (WebInspector.SourceCodeTextEditor.prototype.canBeFormatted): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype.dialogWasDismissed): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype.showPopoverForTypes): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._addBreakpointWithEditorLineInfo): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._removeBreakpointWithEditorLineInfo): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._tokenTrackingControllerHighlightedMarkedExpression): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._dismissEditingController): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype.editingControllerDidStartEditing): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype.editingControllerDidFinishEditing): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._getAssociatedScript): Deleted.
+        (WebInspector.SourceCodeTextEditor.prototype._createTypeTokenAnnotator): Deleted.
+        Make Code Coverage profiler independent from Type Profiler.
+
+        * UserInterface/Views/TextContentView.js:
+        (WebInspector.TextContentView):
+        (WebInspector.TextContentView.prototype.get navigationItems):
+        (WebInspector.TextContentView.prototype.get textEditor): Deleted.
+        * UserInterface/Views/TextEditor.js:
+        (WebInspector.TextEditor.prototype.get hasModified):
+        (WebInspector.TextEditor.prototype.canShowCoverageHints):
+        * UserInterface/Views/TextResourceContentView.js:
+        (WebInspector.TextResourceContentView):
+        (WebInspector.TextResourceContentView.prototype.get navigationItems):
+        (WebInspector.TextResourceContentView.prototype._contentDidPopulate):
+        (WebInspector.TextResourceContentView.prototype._toggleTypeAnnotations):
+        (WebInspector.TextResourceContentView.prototype._toggleUnexecutedCodeHighlights):
+        (WebInspector.TextResourceContentView.prototype._enableControlFlowProfilerSettingChanged):
+        (WebInspector.TextResourceContentView.prototype._contentWillPopulate): Deleted.
+        * UserInterface/Views/ScriptContentView.js:
+        (WebInspector.ScriptContentView):
+        (WebInspector.ScriptContentView.prototype.get navigationItems):
+        (WebInspector.ScriptContentView.prototype._contentDidPopulate):
+        (WebInspector.ScriptContentView.prototype._toggleTypeAnnotations):
+        (WebInspector.ScriptContentView.prototype._toggleUnexecutedCodeHighlights):
+        (WebInspector.ScriptContentView.prototype._enableControlFlowProfilerSettingChanged):
+        (WebInspector.ScriptContentView.prototype._contentWillPopulate): Deleted.
+        Add the [C] icon right next to the [T] (Type Profiler) icon.
+
</ins><span class="cx"> 2016-09-08  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: Debugger sidebar should include a warning message breakpoints are disabled
</span></span></pre></div>
<a id="trunkSourceWebInspectorUILocalizationsenlprojlocalizedStringsjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -1,822 +1,824 @@
</span><del>-var localizedStrings = new Object;
-
-localizedStrings[&quot; (Prototype)&quot;] = &quot; (Prototype)&quot;;
-localizedStrings[&quot; (line %s)&quot;] = &quot; (line %s)&quot;;
-localizedStrings[&quot;%.0f B&quot;] = &quot;%.0f B&quot;;
-localizedStrings[&quot;%.0fms&quot;] = &quot;%.0fms&quot;;
-localizedStrings[&quot;%.1f KB&quot;] = &quot;%.1f KB&quot;;
-localizedStrings[&quot;%.1f MB&quot;] = &quot;%.1f MB&quot;;
-localizedStrings[&quot;%.1f days&quot;] = &quot;%.1f days&quot;;
-localizedStrings[&quot;%.1fB&quot;] = &quot;%.1fB&quot;;
-localizedStrings[&quot;%.1fK&quot;] = &quot;%.1fK&quot;;
-localizedStrings[&quot;%.1fM&quot;] = &quot;%.1fM&quot;;
-localizedStrings[&quot;%.1fhrs&quot;] = &quot;%.1fhrs&quot;;
-localizedStrings[&quot;%.1fmin&quot;] = &quot;%.1fmin&quot;;
-localizedStrings[&quot;%.1fms&quot;] = &quot;%.1fms&quot;;
-localizedStrings[&quot;%.2f KB&quot;] = &quot;%.2f KB&quot;;
-localizedStrings[&quot;%.2f MB&quot;] = &quot;%.2f MB&quot;;
-localizedStrings[&quot;%.2f\u00d7&quot;] = &quot;%.2f\u00d7&quot;;
-localizedStrings[&quot;%.2fms&quot;] = &quot;%.2fms&quot;;
-localizedStrings[&quot;%.2fs&quot;] = &quot;%.2fs&quot;;
-localizedStrings[&quot;%.3fms&quot;] = &quot;%.3fms&quot;;
-localizedStrings[&quot;%d Errors&quot;] = &quot;%d Errors&quot;;
-localizedStrings[&quot;%d Errors, %d Warnings&quot;] = &quot;%d Errors, %d Warnings&quot;;
-localizedStrings[&quot;%d More\u2026&quot;] = &quot;%d More\u2026&quot;;
-localizedStrings[&quot;%d Warnings&quot;] = &quot;%d Warnings&quot;;
-localizedStrings[&quot;%d \xd7 %d pixels&quot;] = &quot;%d \xd7 %d pixels&quot;;
-localizedStrings[&quot;%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)&quot;] = &quot;%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)&quot;;
-localizedStrings[&quot;%d matches&quot;] = &quot;%d matches&quot;;
-localizedStrings[&quot;%dpx&quot;] = &quot;%dpx&quot;;
-localizedStrings[&quot;%dpx²&quot;] = &quot;%dpx²&quot;;
-localizedStrings[&quot;%s (computed)&quot;] = &quot;%s (computed)&quot;;
-localizedStrings[&quot;%s (default)&quot;] = &quot;%s (default)&quot;;
-localizedStrings[&quot;%s (hidden)&quot;] = &quot;%s (hidden)&quot;;
-localizedStrings[&quot;%s Event Dispatched&quot;] = &quot;%s Event Dispatched&quot;;
-localizedStrings[&quot;%s Prototype&quot;] = &quot;%s Prototype&quot;;
-localizedStrings[&quot;%s \u2013 %s&quot;] = &quot;%s \u2013 %s&quot;;
-localizedStrings[&quot;%s \u2014 %s&quot;] = &quot;%s \u2014 %s&quot;;
-localizedStrings[&quot;%s delay&quot;] = &quot;%s delay&quot;;
-localizedStrings[&quot;%s interval&quot;] = &quot;%s interval&quot;;
-localizedStrings[&quot;(Index)&quot;] = &quot;(Index)&quot;;
-localizedStrings[&quot;(Tail Call)&quot;] = &quot;(Tail Call)&quot;;
-localizedStrings[&quot;(anonymous function)&quot;] = &quot;(anonymous function)&quot;;
-localizedStrings[&quot;(many)&quot;] = &quot;(many)&quot;;
-localizedStrings[&quot;(modify the boxes below to add a value)&quot;] = &quot;(modify the boxes below to add a value)&quot;;
-localizedStrings[&quot;(multiple)&quot;] = &quot;(multiple)&quot;;
-localizedStrings[&quot;(program)&quot;] = &quot;(program)&quot;;
-localizedStrings[&quot;(uninitialized)&quot;] = &quot;(uninitialized)&quot;;
-localizedStrings[&quot;, &quot;] = &quot;, &quot;;
-localizedStrings[&quot;1 match&quot;] = &quot;1 match&quot;;
-localizedStrings[&quot;Accessibility&quot;] = &quot;Accessibility&quot;;
-localizedStrings[&quot;Action&quot;] = &quot;Action&quot;;
-localizedStrings[&quot;Activity Viewer&quot;] = &quot;Activity Viewer&quot;;
-localizedStrings[&quot;Add %s Rule&quot;] = &quot;Add %s Rule&quot;;
-localizedStrings[&quot;Add Action&quot;] = &quot;Add Action&quot;;
-localizedStrings[&quot;Add Attribute&quot;] = &quot;Add Attribute&quot;;
-localizedStrings[&quot;Add Breakpoint&quot;] = &quot;Add Breakpoint&quot;;
-localizedStrings[&quot;Add New&quot;] = &quot;Add New&quot;;
-localizedStrings[&quot;Add New Probe Expression&quot;] = &quot;Add New Probe Expression&quot;;
-localizedStrings[&quot;Add New Watch Expression&quot;] = &quot;Add New Watch Expression&quot;;
-localizedStrings[&quot;Add a Class&quot;] = &quot;Add a Class&quot;;
-localizedStrings[&quot;Add new breakpoint action after this action&quot;] = &quot;Add new breakpoint action after this action&quot;;
-localizedStrings[&quot;Add probe expression&quot;] = &quot;Add probe expression&quot;;
-localizedStrings[&quot;Add watch expression&quot;] = &quot;Add watch expression&quot;;
-localizedStrings[&quot;Additions&quot;] = &quot;Additions&quot;;
-localizedStrings[&quot;Align&quot;] = &quot;Align&quot;;
-localizedStrings[&quot;Alignment&quot;] = &quot;Alignment&quot;;
-localizedStrings[&quot;All&quot;] = &quot;All&quot;;
-localizedStrings[&quot;All Changes&quot;] = &quot;All Changes&quot;;
-localizedStrings[&quot;All Exceptions&quot;] = &quot;All Exceptions&quot;;
-localizedStrings[&quot;All Resources&quot;] = &quot;All Resources&quot;;
-localizedStrings[&quot;All Storage&quot;] = &quot;All Storage&quot;;
-localizedStrings[&quot;All Uncaught Exceptions&quot;] = &quot;All Uncaught Exceptions&quot;;
-localizedStrings[&quot;Alternates&quot;] = &quot;Alternates&quot;;
-localizedStrings[&quot;An error occurred trying to load the resource.&quot;] = &quot;An error occurred trying to load the resource.&quot;;
-localizedStrings[&quot;An error occurred trying to read the “%s” table.&quot;] = &quot;An error occurred trying to read the “%s” table.&quot;;
-localizedStrings[&quot;An unexpected error %s occurred.&quot;] = &quot;An unexpected error %s occurred.&quot;;
-localizedStrings[&quot;An unexpected error occurred.&quot;] = &quot;An unexpected error occurred.&quot;;
-localizedStrings[&quot;Angle&quot;] = &quot;Angle&quot;;
-localizedStrings[&quot;Animation&quot;] = &quot;Animation&quot;;
-localizedStrings[&quot;Animation Frame %s Canceled&quot;] = &quot;Animation Frame %s Canceled&quot;;
-localizedStrings[&quot;Animation Frame %s Fired&quot;] = &quot;Animation Frame %s Fired&quot;;
-localizedStrings[&quot;Animation Frame %s Requested&quot;] = &quot;Animation Frame %s Requested&quot;;
-localizedStrings[&quot;Animation Frame Canceled&quot;] = &quot;Animation Frame Canceled&quot;;
-localizedStrings[&quot;Animation Frame Fired&quot;] = &quot;Animation Frame Fired&quot;;
-localizedStrings[&quot;Animation Frame Requested&quot;] = &quot;Animation Frame Requested&quot;;
-localizedStrings[&quot;Anonymous Script %d&quot;] = &quot;Anonymous Script %d&quot;;
-localizedStrings[&quot;Anonymous Scripts&quot;] = &quot;Anonymous Scripts&quot;;
-localizedStrings[&quot;Anonymous StyleSheet %d&quot;] = &quot;Anonymous StyleSheet %d&quot;;
-localizedStrings[&quot;Application Cache&quot;] = &quot;Application Cache&quot;;
-localizedStrings[&quot;Area&quot;] = &quot;Area&quot;;
-localizedStrings[&quot;Assertion&quot;] = &quot;Assertion&quot;;
-localizedStrings[&quot;Assertion Failed&quot;] = &quot;Assertion Failed&quot;;
-localizedStrings[&quot;Assertion Failed: %s&quot;] = &quot;Assertion Failed: %s&quot;;
-localizedStrings[&quot;Assertion with message: %s&quot;] = &quot;Assertion with message: %s&quot;;
-localizedStrings[&quot;Assertive&quot;] = &quot;Assertive&quot;;
-localizedStrings[&quot;Attach&quot;] = &quot;Attach&quot;;
-localizedStrings[&quot;Attribute&quot;] = &quot;Attribute&quot;;
-localizedStrings[&quot;Attributes&quot;] = &quot;Attributes&quot;;
-localizedStrings[&quot;Author Stylesheet&quot;] = &quot;Author Stylesheet&quot;;
-localizedStrings[&quot;Auto Increment&quot;] = &quot;Auto Increment&quot;;
-localizedStrings[&quot;Automatically continue after evaluating&quot;] = &quot;Automatically continue after evaluating&quot;;
-localizedStrings[&quot;Average Time&quot;] = &quot;Average Time&quot;;
-localizedStrings[&quot;Back (%s)&quot;] = &quot;Back (%s)&quot;;
-localizedStrings[&quot;Background&quot;] = &quot;Background&quot;;
-localizedStrings[&quot;Basis&quot;] = &quot;Basis&quot;;
-localizedStrings[&quot;Bezier&quot;] = &quot;Bezier&quot;;
-localizedStrings[&quot;Blend&quot;] = &quot;Blend&quot;;
-localizedStrings[&quot;Block Variables&quot;] = &quot;Block Variables&quot;;
-localizedStrings[&quot;Blur&quot;] = &quot;Blur&quot;;
-localizedStrings[&quot;Border&quot;] = &quot;Border&quot;;
-localizedStrings[&quot;Bottom&quot;] = &quot;Bottom&quot;;
-localizedStrings[&quot;Boundary&quot;] = &quot;Boundary&quot;;
-localizedStrings[&quot;Box Model&quot;] = &quot;Box Model&quot;;
-localizedStrings[&quot;Box Shadow&quot;] = &quot;Box Shadow&quot;;
-localizedStrings[&quot;Breakdown&quot;] = &quot;Breakdown&quot;;
-localizedStrings[&quot;Breakdown of each memory category at the end of the selected time range&quot;] = &quot;Breakdown of each memory category at the end of the selected time range&quot;;
-localizedStrings[&quot;Breakpoints&quot;] = &quot;Breakpoints&quot;;
-localizedStrings[&quot;Breakpoints are disabled.&quot;] = &quot;Breakpoints are disabled.&quot;;
-localizedStrings[&quot;Bubbling&quot;] = &quot;Bubbling&quot;;
-localizedStrings[&quot;Busy&quot;] = &quot;Busy&quot;;
-localizedStrings[&quot;CSP Hash&quot;] = &quot;CSP Hash&quot;;
-localizedStrings[&quot;Cached&quot;] = &quot;Cached&quot;;
-localizedStrings[&quot;Call Stack&quot;] = &quot;Call Stack&quot;;
-localizedStrings[&quot;Call Trees&quot;] = &quot;Call Trees&quot;;
-localizedStrings[&quot;Calls&quot;] = &quot;Calls&quot;;
-localizedStrings[&quot;Cancel Automatic Continue&quot;] = &quot;Cancel Automatic Continue&quot;;
-localizedStrings[&quot;Cancel comparison&quot;] = &quot;Cancel comparison&quot;;
-localizedStrings[&quot;Cap&quot;] = &quot;Cap&quot;;
-localizedStrings[&quot;Caps&quot;] = &quot;Caps&quot;;
-localizedStrings[&quot;Capturing&quot;] = &quot;Capturing&quot;;
-localizedStrings[&quot;Catch Variables&quot;] = &quot;Catch Variables&quot;;
-localizedStrings[&quot;Categories&quot;] = &quot;Categories&quot;;
-localizedStrings[&quot;Center X&quot;] = &quot;Center X&quot;;
-localizedStrings[&quot;Center Y&quot;] = &quot;Center Y&quot;;
-localizedStrings[&quot;Character Data&quot;] = &quot;Character Data&quot;;
-localizedStrings[&quot;Charge ‘%s’ to Callers&quot;] = &quot;Charge ‘%s’ to Callers&quot;;
-localizedStrings[&quot;Checked&quot;] = &quot;Checked&quot;;
-localizedStrings[&quot;Child Layers&quot;] = &quot;Child Layers&quot;;
-localizedStrings[&quot;Children&quot;] = &quot;Children&quot;;
-localizedStrings[&quot;Class Name&quot;] = &quot;Class Name&quot;;
-localizedStrings[&quot;Classes&quot;] = &quot;Classes&quot;;
-localizedStrings[&quot;Clear&quot;] = &quot;Clear&quot;;
-localizedStrings[&quot;Clear Log&quot;] = &quot;Clear Log&quot;;
-localizedStrings[&quot;Clear Log on Navigation&quot;] = &quot;Clear Log on Navigation&quot;;
-localizedStrings[&quot;Clear Network Items&quot;] = &quot;Clear Network Items&quot;;
-localizedStrings[&quot;Clear Timeline&quot;] = &quot;Clear Timeline&quot;;
-localizedStrings[&quot;Clear focus&quot;] = &quot;Clear focus&quot;;
-localizedStrings[&quot;Clear log (%s or %s)&quot;] = &quot;Clear log (%s or %s)&quot;;
-localizedStrings[&quot;Clear object store&quot;] = &quot;Clear object store&quot;;
-localizedStrings[&quot;Clear samples&quot;] = &quot;Clear samples&quot;;
-localizedStrings[&quot;Clear watch expressions&quot;] = &quot;Clear watch expressions&quot;;
-localizedStrings[&quot;Click Listener&quot;] = &quot;Click Listener&quot;;
-localizedStrings[&quot;Click to add a new rule.&quot;] = &quot;Click to add a new rule.&quot;;
-localizedStrings[&quot;Click to clear modified properties&quot;] = &quot;Click to clear modified properties&quot;;
-localizedStrings[&quot;Click to close this tab&quot;] = &quot;Click to close this tab&quot;;
-localizedStrings[&quot;Click to disable the selected rule&quot;] = &quot;Click to disable the selected rule&quot;;
-localizedStrings[&quot;Click to enable the selected rule&quot;] = &quot;Click to enable the selected rule&quot;;
-localizedStrings[&quot;Click to link property values&quot;] = &quot;Click to link property values&quot;;
-localizedStrings[&quot;Click to open a cubic-bezier editor.&quot;] = &quot;Click to open a cubic-bezier editor.&quot;;
-localizedStrings[&quot;Click to open a spring editor.&quot;] = &quot;Click to open a spring editor.&quot;;
-localizedStrings[&quot;Click to remove link&quot;] = &quot;Click to remove link&quot;;
-localizedStrings[&quot;Click to remove the selected item.&quot;] = &quot;Click to remove the selected item.&quot;;
-localizedStrings[&quot;Click to restart the animation&quot;] = &quot;Click to restart the animation&quot;;
-localizedStrings[&quot;Click to select a color. Shift-click to switch color formats.&quot;] = &quot;Click to select a color. Shift-click to switch color formats.&quot;;
-localizedStrings[&quot;Click to select a gradient.&quot;] = &quot;Click to select a gradient.&quot;;
-localizedStrings[&quot;Clickable&quot;] = &quot;Clickable&quot;;
-localizedStrings[&quot;Clip&quot;] = &quot;Clip&quot;;
-localizedStrings[&quot;Close&quot;] = &quot;Close&quot;;
-localizedStrings[&quot;Close %s timeline view&quot;] = &quot;Close %s timeline view&quot;;
-localizedStrings[&quot;Close Other Tabs&quot;] = &quot;Close Other Tabs&quot;;
-localizedStrings[&quot;Close Tab&quot;] = &quot;Close Tab&quot;;
-localizedStrings[&quot;Close resource view&quot;] = &quot;Close resource view&quot;;
-localizedStrings[&quot;Closed&quot;] = &quot;Closed&quot;;
-localizedStrings[&quot;Closure Variables&quot;] = &quot;Closure Variables&quot;;
-localizedStrings[&quot;Closure Variables (%s)&quot;] = &quot;Closure Variables (%s)&quot;;
-localizedStrings[&quot;Code&quot;] = &quot;Code&quot;;
-localizedStrings[&quot;Collapse columns&quot;] = &quot;Collapse columns&quot;;
-localizedStrings[&quot;Color&quot;] = &quot;Color&quot;;
-localizedStrings[&quot;Comment&quot;] = &quot;Comment&quot;;
-localizedStrings[&quot;Comment All Properties&quot;] = &quot;Comment All Properties&quot;;
-localizedStrings[&quot;Compare snapshots&quot;] = &quot;Compare snapshots&quot;;
-localizedStrings[&quot;Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording&quot;] = &quot;Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording&quot;;
-localizedStrings[&quot;Composite&quot;] = &quot;Composite&quot;;
-localizedStrings[&quot;Compressed&quot;] = &quot;Compressed&quot;;
-localizedStrings[&quot;Compression&quot;] = &quot;Compression&quot;;
-localizedStrings[&quot;Condition&quot;] = &quot;Condition&quot;;
-localizedStrings[&quot;Conditional expression&quot;] = &quot;Conditional expression&quot;;
-localizedStrings[&quot;Connection&quot;] = &quot;Connection&quot;;
-localizedStrings[&quot;Console&quot;] = &quot;Console&quot;;
-localizedStrings[&quot;Console Evaluation&quot;] = &quot;Console Evaluation&quot;;
-localizedStrings[&quot;Console Evaluation %d&quot;] = &quot;Console Evaluation %d&quot;;
-localizedStrings[&quot;Console Profile Recorded&quot;] = &quot;Console Profile Recorded&quot;;
-localizedStrings[&quot;Console errors, click to show the Console tab&quot;] = &quot;Console errors, click to show the Console tab&quot;;
-localizedStrings[&quot;Console logs, click to show the Console tab&quot;] = &quot;Console logs, click to show the Console tab&quot;;
-localizedStrings[&quot;Console warnings, click to show the Console tab&quot;] = &quot;Console warnings, click to show the Console tab&quot;;
-localizedStrings[&quot;Container Regions&quot;] = &quot;Container Regions&quot;;
-localizedStrings[&quot;Content&quot;] = &quot;Content&quot;;
-localizedStrings[&quot;Content Flow&quot;] = &quot;Content Flow&quot;;
-localizedStrings[&quot;Content Security Policy violation of directive: %s&quot;] = &quot;Content Security Policy violation of directive: %s&quot;;
-localizedStrings[&quot;Continue script execution (%s or %s)&quot;] = &quot;Continue script execution (%s or %s)&quot;;
-localizedStrings[&quot;Continue to Here&quot;] = &quot;Continue to Here&quot;;
-localizedStrings[&quot;Controls&quot;] = &quot;Controls&quot;;
-localizedStrings[&quot;Cookies&quot;] = &quot;Cookies&quot;;
-localizedStrings[&quot;Copy Link Address&quot;] = &quot;Copy Link Address&quot;;
-localizedStrings[&quot;Copy Path to Property&quot;] = &quot;Copy Path to Property&quot;;
-localizedStrings[&quot;Copy Row&quot;] = &quot;Copy Row&quot;;
-localizedStrings[&quot;Copy Rule&quot;] = &quot;Copy Rule&quot;;
-localizedStrings[&quot;Copy Selected&quot;] = &quot;Copy Selected&quot;;
-localizedStrings[&quot;Copy Table&quot;] = &quot;Copy Table&quot;;
-localizedStrings[&quot;Copy as HTML&quot;] = &quot;Copy as HTML&quot;;
-localizedStrings[&quot;Copy as cURL&quot;] = &quot;Copy as cURL&quot;;
-localizedStrings[&quot;Could not fetch properties. Object may no longer exist.&quot;] = &quot;Could not fetch properties. Object may no longer exist.&quot;;
-localizedStrings[&quot;Count&quot;] = &quot;Count&quot;;
-localizedStrings[&quot;Create %s Rule&quot;] = &quot;Create %s Rule&quot;;
-localizedStrings[&quot;Create a new tab&quot;] = &quot;Create a new tab&quot;;
-localizedStrings[&quot;Current&quot;] = &quot;Current&quot;;
-localizedStrings[&quot;Cursor&quot;] = &quot;Cursor&quot;;
-localizedStrings[&quot;DNS&quot;] = &quot;DNS&quot;;
-localizedStrings[&quot;DOM Content Loaded \u2014 %s&quot;] = &quot;DOM Content Loaded \u2014 %s&quot;;
-localizedStrings[&quot;Damping&quot;] = &quot;Damping&quot;;
-localizedStrings[&quot;Dash Array&quot;] = &quot;Dash Array&quot;;
-localizedStrings[&quot;Data&quot;] = &quot;Data&quot;;
-localizedStrings[&quot;Data returned from the database is too large.&quot;] = &quot;Data returned from the database is too large.&quot;;
-localizedStrings[&quot;Database&quot;] = &quot;Database&quot;;
-localizedStrings[&quot;Database no longer has expected version.&quot;] = &quot;Database no longer has expected version.&quot;;
-localizedStrings[&quot;Databases&quot;] = &quot;Databases&quot;;
-localizedStrings[&quot;Date&quot;] = &quot;Date&quot;;
-localizedStrings[&quot;Debug: &quot;] = &quot;Debug: &quot;;
-localizedStrings[&quot;Debugger&quot;] = &quot;Debugger&quot;;
-localizedStrings[&quot;Debugger Paused&quot;] = &quot;Debugger Paused&quot;;
-localizedStrings[&quot;Debugger Statement&quot;] = &quot;Debugger Statement&quot;;
-localizedStrings[&quot;Debugger is disabled during a Timeline recording.&quot;] = &quot;Debugger is disabled during a Timeline recording.&quot;;
-localizedStrings[&quot;Decoded&quot;] = &quot;Decoded&quot;;
-localizedStrings[&quot;Decoration&quot;] = &quot;Decoration&quot;;
-localizedStrings[&quot;Default&quot;] = &quot;Default&quot;;
-localizedStrings[&quot;Delay&quot;] = &quot;Delay&quot;;
-localizedStrings[&quot;Delete&quot;] = &quot;Delete&quot;;
-localizedStrings[&quot;Delete Breakpoint&quot;] = &quot;Delete Breakpoint&quot;;
-localizedStrings[&quot;Delete Breakpoints&quot;] = &quot;Delete Breakpoints&quot;;
-localizedStrings[&quot;Delete Node&quot;] = &quot;Delete Node&quot;;
-localizedStrings[&quot;Detach into separate window&quot;] = &quot;Detach into separate window&quot;;
-localizedStrings[&quot;Details&quot;] = &quot;Details&quot;;
-localizedStrings[&quot;Did you mean “%s”?\nClick to replace.&quot;] = &quot;Did you mean “%s”?\nClick to replace.&quot;;
-localizedStrings[&quot;Dimensions&quot;] = &quot;Dimensions&quot;;
-localizedStrings[&quot;Direction&quot;] = &quot;Direction&quot;;
-localizedStrings[&quot;Disable Breakpoint&quot;] = &quot;Disable Breakpoint&quot;;
-localizedStrings[&quot;Disable Breakpoints&quot;] = &quot;Disable Breakpoints&quot;;
-localizedStrings[&quot;Disable all breakpoints (%s)&quot;] = &quot;Disable all breakpoints (%s)&quot;;
-localizedStrings[&quot;Disable paint flashing&quot;] = &quot;Disable paint flashing&quot;;
-localizedStrings[&quot;Disabled&quot;] = &quot;Disabled&quot;;
-localizedStrings[&quot;Display&quot;] = &quot;Display&quot;;
-localizedStrings[&quot;Dock to bottom of window&quot;] = &quot;Dock to bottom of window&quot;;
-localizedStrings[&quot;Dock to right of window&quot;] = &quot;Dock to right of window&quot;;
-localizedStrings[&quot;Document&quot;] = &quot;Document&quot;;
-localizedStrings[&quot;Document Fragment&quot;] = &quot;Document Fragment&quot;;
-localizedStrings[&quot;Document Type&quot;] = &quot;Document Type&quot;;
-localizedStrings[&quot;Documents&quot;] = &quot;Documents&quot;;
-localizedStrings[&quot;Domain&quot;] = &quot;Domain&quot;;
-localizedStrings[&quot;Done&quot;] = &quot;Done&quot;;
-localizedStrings[&quot;Download Web Archive&quot;] = &quot;Download Web Archive&quot;;
-localizedStrings[&quot;Duplicate Selector&quot;] = &quot;Duplicate Selector&quot;;
-localizedStrings[&quot;Duplicate property “%s”.\nClick to delete this property.&quot;] = &quot;Duplicate property “%s”.\nClick to delete this property.&quot;;
-localizedStrings[&quot;Duration&quot;] = &quot;Duration&quot;;
-localizedStrings[&quot;Dynamically calculated for the parent element&quot;] = &quot;Dynamically calculated for the parent element&quot;;
-localizedStrings[&quot;Dynamically calculated for the selected element&quot;] = &quot;Dynamically calculated for the selected element&quot;;
-localizedStrings[&quot;Dynamically calculated for the selected element and did not match&quot;] = &quot;Dynamically calculated for the selected element and did not match&quot;;
-localizedStrings[&quot;Edit&quot;] = &quot;Edit&quot;;
-localizedStrings[&quot;Edit Attribute&quot;] = &quot;Edit Attribute&quot;;
-localizedStrings[&quot;Edit Breakpoint…&quot;] = &quot;Edit Breakpoint…&quot;;
-localizedStrings[&quot;Edit Text&quot;] = &quot;Edit Text&quot;;
-localizedStrings[&quot;Edit as HTML&quot;] = &quot;Edit as HTML&quot;;
-localizedStrings[&quot;Edit configuration&quot;] = &quot;Edit configuration&quot;;
-localizedStrings[&quot;Edit “%s”&quot;] = &quot;Edit “%s”&quot;;
-localizedStrings[&quot;Effects&quot;] = &quot;Effects&quot;;
-localizedStrings[&quot;Element&quot;] = &quot;Element&quot;;
-localizedStrings[&quot;Element clips compositing descendants&quot;] = &quot;Element clips compositing descendants&quot;;
-localizedStrings[&quot;Element has CSS blending applied and composited descendants&quot;] = &quot;Element has CSS blending applied and composited descendants&quot;;
-localizedStrings[&quot;Element has CSS filters applied&quot;] = &quot;Element has CSS filters applied&quot;;
-localizedStrings[&quot;Element has CSS filters applied and composited descendants&quot;] = &quot;Element has CSS filters applied and composited descendants&quot;;
-localizedStrings[&quot;Element has a 2D transform and composited descendants&quot;] = &quot;Element has a 2D transform and composited descendants&quot;;
-localizedStrings[&quot;Element has a 3D transform&quot;] = &quot;Element has a 3D transform&quot;;
-localizedStrings[&quot;Element has a reflection and composited descendants&quot;] = &quot;Element has a reflection and composited descendants&quot;;
-localizedStrings[&quot;Element has children with a negative z-index&quot;] = &quot;Element has children with a negative z-index&quot;;
-localizedStrings[&quot;Element has opacity applied and composited descendants&quot;] = &quot;Element has opacity applied and composited descendants&quot;;
-localizedStrings[&quot;Element has perspective applied&quot;] = &quot;Element has perspective applied&quot;;
-localizedStrings[&quot;Element has “-webkit-overflow-scrolling: touch” style&quot;] = &quot;Element has “-webkit-overflow-scrolling: touch” style&quot;;
-localizedStrings[&quot;Element has “backface-visibility: hidden” style&quot;] = &quot;Element has “backface-visibility: hidden” style&quot;;
-localizedStrings[&quot;Element has “blend-mode” style&quot;] = &quot;Element has “blend-mode” style&quot;;
-localizedStrings[&quot;Element has “position: fixed” style&quot;] = &quot;Element has “position: fixed” style&quot;;
-localizedStrings[&quot;Element has “position: sticky” style&quot;] = &quot;Element has “position: sticky” style&quot;;
-localizedStrings[&quot;Element has “transform-style: preserve-3d” style&quot;] = &quot;Element has “transform-style: preserve-3d” style&quot;;
-localizedStrings[&quot;Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter&quot;] = &quot;Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter&quot;;
-localizedStrings[&quot;Element is &lt;canvas&gt;&quot;] = &quot;Element is &lt;canvas&gt;&quot;;
-localizedStrings[&quot;Element is &lt;iframe&gt;&quot;] = &quot;Element is &lt;iframe&gt;&quot;;
-localizedStrings[&quot;Element is &lt;video&gt;&quot;] = &quot;Element is &lt;video&gt;&quot;;
-localizedStrings[&quot;Element is a plug-in&quot;] = &quot;Element is a plug-in&quot;;
-localizedStrings[&quot;Element is a stacking context and has composited descendants with CSS blending applied&quot;] = &quot;Element is a stacking context and has composited descendants with CSS blending applied&quot;;
-localizedStrings[&quot;Element is animated&quot;] = &quot;Element is animated&quot;;
-localizedStrings[&quot;Element is masked and composited descendants&quot;] = &quot;Element is masked and composited descendants&quot;;
-localizedStrings[&quot;Element is the root element&quot;] = &quot;Element is the root element&quot;;
-localizedStrings[&quot;Element may overlap another compositing element&quot;] = &quot;Element may overlap another compositing element&quot;;
-localizedStrings[&quot;Element overlaps other compositing element&quot;] = &quot;Element overlaps other compositing element&quot;;
-localizedStrings[&quot;Elements&quot;] = &quot;Elements&quot;;
-localizedStrings[&quot;Enable Breakpoint&quot;] = &quot;Enable Breakpoint&quot;;
-localizedStrings[&quot;Enable Breakpoints&quot;] = &quot;Enable Breakpoints&quot;;
-localizedStrings[&quot;Enable all breakpoints (%s)&quot;] = &quot;Enable all breakpoints (%s)&quot;;
-localizedStrings[&quot;Enable breakpoints.&quot;] = &quot;Enable breakpoints.&quot;;
-localizedStrings[&quot;Enable paint flashing&quot;] = &quot;Enable paint flashing&quot;;
-localizedStrings[&quot;Encoded&quot;] = &quot;Encoded&quot;;
-localizedStrings[&quot;Encoding&quot;] = &quot;Encoding&quot;;
-localizedStrings[&quot;Enter Class Name&quot;] = &quot;Enter Class Name&quot;;
-localizedStrings[&quot;Enter Tag&quot;] = &quot;Enter Tag&quot;;
-localizedStrings[&quot;Enter Value&quot;] = &quot;Enter Value&quot;;
-localizedStrings[&quot;Enter a Gradient&quot;] = &quot;Enter a Gradient&quot;;
-localizedStrings[&quot;Enter a URL&quot;] = &quot;Enter a URL&quot;;
-localizedStrings[&quot;Enter a name.&quot;] = &quot;Enter a name.&quot;;
-localizedStrings[&quot;Enter an array value&quot;] = &quot;Enter an array value&quot;;
-localizedStrings[&quot;Enter the name of a Keyframe&quot;] = &quot;Enter the name of a Keyframe&quot;;
-localizedStrings[&quot;Enter value&quot;] = &quot;Enter value&quot;;
-localizedStrings[&quot;Entire Recording&quot;] = &quot;Entire Recording&quot;;
-localizedStrings[&quot;Error: &quot;] = &quot;Error: &quot;;
-localizedStrings[&quot;Errors&quot;] = &quot;Errors&quot;;
-localizedStrings[&quot;Eval Code&quot;] = &quot;Eval Code&quot;;
-localizedStrings[&quot;Evaluate JavaScript&quot;] = &quot;Evaluate JavaScript&quot;;
-localizedStrings[&quot;Event Dispatched&quot;] = &quot;Event Dispatched&quot;;
-localizedStrings[&quot;Event Listeners&quot;] = &quot;Event Listeners&quot;;
-localizedStrings[&quot;Events&quot;] = &quot;Events&quot;;
-localizedStrings[&quot;Exception with thrown value: %s&quot;] = &quot;Exception with thrown value: %s&quot;;
-localizedStrings[&quot;Expand columns&quot;] = &quot;Expand columns&quot;;
-localizedStrings[&quot;Expanded&quot;] = &quot;Expanded&quot;;
-localizedStrings[&quot;Expires&quot;] = &quot;Expires&quot;;
-localizedStrings[&quot;Expression&quot;] = &quot;Expression&quot;;
-localizedStrings[&quot;Extension Scripts&quot;] = &quot;Extension Scripts&quot;;
-localizedStrings[&quot;Extra Scripts&quot;] = &quot;Extra Scripts&quot;;
-localizedStrings[&quot;Family&quot;] = &quot;Family&quot;;
-localizedStrings[&quot;Features&quot;] = &quot;Features&quot;;
-localizedStrings[&quot;File or Resource&quot;] = &quot;File or Resource&quot;;
-localizedStrings[&quot;Filename&quot;] = &quot;Filename&quot;;
-localizedStrings[&quot;Fill&quot;] = &quot;Fill&quot;;
-localizedStrings[&quot;Fill Mode&quot;] = &quot;Fill Mode&quot;;
-localizedStrings[&quot;Filter Console Log&quot;] = &quot;Filter Console Log&quot;;
-localizedStrings[&quot;Filter List&quot;] = &quot;Filter List&quot;;
-localizedStrings[&quot;Filter Records&quot;] = &quot;Filter Records&quot;;
-localizedStrings[&quot;Filter Resource List&quot;] = &quot;Filter Resource List&quot;;
-localizedStrings[&quot;Filter Search Results&quot;] = &quot;Filter Search Results&quot;;
-localizedStrings[&quot;Filter Storage List&quot;] = &quot;Filter Storage List&quot;;
-localizedStrings[&quot;Filter Styles&quot;] = &quot;Filter Styles&quot;;
-localizedStrings[&quot;Flexbox&quot;] = &quot;Flexbox&quot;;
-localizedStrings[&quot;Float&quot;] = &quot;Float&quot;;
-localizedStrings[&quot;Float and Clear&quot;] = &quot;Float and Clear&quot;;
-localizedStrings[&quot;Flows&quot;] = &quot;Flows&quot;;
-localizedStrings[&quot;Focus %s Rule&quot;] = &quot;Focus %s Rule&quot;;
-localizedStrings[&quot;Focus on Subtree&quot;] = &quot;Focus on Subtree&quot;;
-localizedStrings[&quot;Focused&quot;] = &quot;Focused&quot;;
-localizedStrings[&quot;Font&quot;] = &quot;Font&quot;;
-localizedStrings[&quot;Fonts&quot;] = &quot;Fonts&quot;;
-localizedStrings[&quot;Forced Layout&quot;] = &quot;Forced Layout&quot;;
-localizedStrings[&quot;Forced Pseudo-Classes&quot;] = &quot;Forced Pseudo-Classes&quot;;
-localizedStrings[&quot;Format: HSL&quot;] = &quot;Format: HSL&quot;;
-localizedStrings[&quot;Format: HSLA&quot;] = &quot;Format: HSLA&quot;;
-localizedStrings[&quot;Format: Hex&quot;] = &quot;Format: Hex&quot;;
-localizedStrings[&quot;Format: Hex with Alpha&quot;] = &quot;Format: Hex with Alpha&quot;;
-localizedStrings[&quot;Format: Keyword&quot;] = &quot;Format: Keyword&quot;;
-localizedStrings[&quot;Format: RGB&quot;] = &quot;Format: RGB&quot;;
-localizedStrings[&quot;Format: RGBA&quot;] = &quot;Format: RGBA&quot;;
-localizedStrings[&quot;Format: Short Hex&quot;] = &quot;Format: Short Hex&quot;;
-localizedStrings[&quot;Format: Short Hex with Alpha&quot;] = &quot;Format: Short Hex with Alpha&quot;;
-localizedStrings[&quot;Forward (%s)&quot;] = &quot;Forward (%s)&quot;;
-localizedStrings[&quot;Fragment&quot;] = &quot;Fragment&quot;;
-localizedStrings[&quot;Frame %d&quot;] = &quot;Frame %d&quot;;
-localizedStrings[&quot;Frame URL&quot;] = &quot;Frame URL&quot;;
-localizedStrings[&quot;Frames&quot;] = &quot;Frames&quot;;
-localizedStrings[&quot;Frames %d \u2013 %d&quot;] = &quot;Frames %d \u2013 %d&quot;;
-localizedStrings[&quot;Full Garbage Collection&quot;] = &quot;Full Garbage Collection&quot;;
-localizedStrings[&quot;Full URL&quot;] = &quot;Full URL&quot;;
-localizedStrings[&quot;Function&quot;] = &quot;Function&quot;;
-localizedStrings[&quot;Function Name Variable&quot;] = &quot;Function Name Variable&quot;;
-localizedStrings[&quot;Garbage Collection&quot;] = &quot;Garbage Collection&quot;;
-localizedStrings[&quot;Getter&quot;] = &quot;Getter&quot;;
-localizedStrings[&quot;Global Code&quot;] = &quot;Global Code&quot;;
-localizedStrings[&quot;Global Lexical Environment&quot;] = &quot;Global Lexical Environment&quot;;
-localizedStrings[&quot;Global Variables&quot;] = &quot;Global Variables&quot;;
-localizedStrings[&quot;Grammar&quot;] = &quot;Grammar&quot;;
-localizedStrings[&quot;Group&quot;] = &quot;Group&quot;;
-localizedStrings[&quot;Grow&quot;] = &quot;Grow&quot;;
-localizedStrings[&quot;HTML Attributes&quot;] = &quot;HTML Attributes&quot;;
-localizedStrings[&quot;HTTP&quot;] = &quot;HTTP&quot;;
-localizedStrings[&quot;Heap Snapshot Object (@%d)&quot;] = &quot;Heap Snapshot Object (@%d)&quot;;
-localizedStrings[&quot;Height&quot;] = &quot;Height&quot;;
-localizedStrings[&quot;Hide compositing borders&quot;] = &quot;Hide compositing borders&quot;;
-localizedStrings[&quot;Hide shadow DOM nodes&quot;] = &quot;Hide shadow DOM nodes&quot;;
-localizedStrings[&quot;Hide the details sidebar (%s)&quot;] = &quot;Hide the details sidebar (%s)&quot;;
-localizedStrings[&quot;Hide the navigation sidebar (%s)&quot;] = &quot;Hide the navigation sidebar (%s)&quot;;
-localizedStrings[&quot;Hide type information&quot;] = &quot;Hide type information&quot;;
-localizedStrings[&quot;Highest: %s&quot;] = &quot;Highest: %s&quot;;
-localizedStrings[&quot;Horizontal&quot;] = &quot;Horizontal&quot;;
-localizedStrings[&quot;Host&quot;] = &quot;Host&quot;;
-localizedStrings[&quot;Icon Only&quot;] = &quot;Icon Only&quot;;
-localizedStrings[&quot;Icon and Text (Horizontal)&quot;] = &quot;Icon and Text (Horizontal)&quot;;
-localizedStrings[&quot;Icon and Text (Vertical)&quot;] = &quot;Icon and Text (Vertical)&quot;;
-localizedStrings[&quot;Identity&quot;] = &quot;Identity&quot;;
-localizedStrings[&quot;Ignore&quot;] = &quot;Ignore&quot;;
-localizedStrings[&quot;Ignored&quot;] = &quot;Ignored&quot;;
-localizedStrings[&quot;Image&quot;] = &quot;Image&quot;;
-localizedStrings[&quot;Image Size&quot;] = &quot;Image Size&quot;;
-localizedStrings[&quot;Images&quot;] = &quot;Images&quot;;
-localizedStrings[&quot;Immediate Pause Requested&quot;] = &quot;Immediate Pause Requested&quot;;
-localizedStrings[&quot;Indent&quot;] = &quot;Indent&quot;;
-localizedStrings[&quot;Index&quot;] = &quot;Index&quot;;
-localizedStrings[&quot;Index Key \u2014 %s&quot;] = &quot;Index Key \u2014 %s&quot;;
-localizedStrings[&quot;Indexed Databases&quot;] = &quot;Indexed Databases&quot;;
-localizedStrings[&quot;Info: &quot;] = &quot;Info: &quot;;
-localizedStrings[&quot;Inherited From: &quot;] = &quot;Inherited From: &quot;;
-localizedStrings[&quot;Inherited from %s&quot;] = &quot;Inherited from %s&quot;;
-localizedStrings[&quot;Initial Velocity&quot;] = &quot;Initial Velocity&quot;;
-localizedStrings[&quot;Initiated&quot;] = &quot;Initiated&quot;;
-localizedStrings[&quot;Initiator&quot;] = &quot;Initiator&quot;;
-localizedStrings[&quot;Input: &quot;] = &quot;Input: &quot;;
-localizedStrings[&quot;Inset&quot;] = &quot;Inset&quot;;
-localizedStrings[&quot;Instances&quot;] = &quot;Instances&quot;;
-localizedStrings[&quot;Invalid&quot;] = &quot;Invalid&quot;;
-localizedStrings[&quot;Inverted&quot;] = &quot;Inverted&quot;;
-localizedStrings[&quot;Invoke getter&quot;] = &quot;Invoke getter&quot;;
-localizedStrings[&quot;Iterations&quot;] = &quot;Iterations&quot;;
-localizedStrings[&quot;JavaScript&quot;] = &quot;JavaScript&quot;;
-localizedStrings[&quot;JavaScript &amp; Events&quot;] = &quot;JavaScript &amp; Events&quot;;
-localizedStrings[&quot;JavaScript Allocations&quot;] = &quot;JavaScript Allocations&quot;;
-localizedStrings[&quot;Join&quot;] = &quot;Join&quot;;
-localizedStrings[&quot;Jump to Definition&quot;] = &quot;Jump to Definition&quot;;
-localizedStrings[&quot;Keep Log on Navigation&quot;] = &quot;Keep Log on Navigation&quot;;
-localizedStrings[&quot;Key&quot;] = &quot;Key&quot;;
-localizedStrings[&quot;Key Path&quot;] = &quot;Key Path&quot;;
-localizedStrings[&quot;Label&quot;] = &quot;Label&quot;;
-localizedStrings[&quot;Latency&quot;] = &quot;Latency&quot;;
-localizedStrings[&quot;Layer&quot;] = &quot;Layer&quot;;
-localizedStrings[&quot;Layer Count: %d&quot;] = &quot;Layer Count: %d&quot;;
-localizedStrings[&quot;Layer Info&quot;] = &quot;Layer Info&quot;;
-localizedStrings[&quot;Layers&quot;] = &quot;Layers&quot;;
-localizedStrings[&quot;Layout&quot;] = &quot;Layout&quot;;
-localizedStrings[&quot;Layout &amp; Rendering&quot;] = &quot;Layout &amp; Rendering&quot;;
-localizedStrings[&quot;Layout Invalidated&quot;] = &quot;Layout Invalidated&quot;;
-localizedStrings[&quot;Left&quot;] = &quot;Left&quot;;
-localizedStrings[&quot;Letter&quot;] = &quot;Letter&quot;;
-localizedStrings[&quot;Ligatures&quot;] = &quot;Ligatures&quot;;
-localizedStrings[&quot;Line %d&quot;] = &quot;Line %d&quot;;
-localizedStrings[&quot;Line %d:%d&quot;] = &quot;Line %d:%d&quot;;
-localizedStrings[&quot;Line Number&quot;] = &quot;Line Number&quot;;
-localizedStrings[&quot;Linear Gradient&quot;] = &quot;Linear Gradient&quot;;
-localizedStrings[&quot;List Styles&quot;] = &quot;List Styles&quot;;
-localizedStrings[&quot;Live&quot;] = &quot;Live&quot;;
-localizedStrings[&quot;Live Size&quot;] = &quot;Live Size&quot;;
-localizedStrings[&quot;Load \u2014 %s&quot;] = &quot;Load \u2014 %s&quot;;
-localizedStrings[&quot;Local File&quot;] = &quot;Local File&quot;;
-localizedStrings[&quot;Local Storage&quot;] = &quot;Local Storage&quot;;
-localizedStrings[&quot;Local Variables&quot;] = &quot;Local Variables&quot;;
-localizedStrings[&quot;Located at %s&quot;] = &quot;Located at %s&quot;;
-localizedStrings[&quot;Location&quot;] = &quot;Location&quot;;
-localizedStrings[&quot;Log Element&quot;] = &quot;Log Element&quot;;
-localizedStrings[&quot;Log Message&quot;] = &quot;Log Message&quot;;
-localizedStrings[&quot;Log Symbol&quot;] = &quot;Log Symbol&quot;;
-localizedStrings[&quot;Log Value&quot;] = &quot;Log Value&quot;;
-localizedStrings[&quot;Log: &quot;] = &quot;Log: &quot;;
-localizedStrings[&quot;Logs&quot;] = &quot;Logs&quot;;
-localizedStrings[&quot;Lowest: %s&quot;] = &quot;Lowest: %s&quot;;
-localizedStrings[&quot;MIME Type&quot;] = &quot;MIME Type&quot;;
-localizedStrings[&quot;Main Frame&quot;] = &quot;Main Frame&quot;;
-localizedStrings[&quot;Manifest URL&quot;] = &quot;Manifest URL&quot;;
-localizedStrings[&quot;Margin&quot;] = &quot;Margin&quot;;
-localizedStrings[&quot;Mass&quot;] = &quot;Mass&quot;;
-localizedStrings[&quot;Max&quot;] = &quot;Max&quot;;
-localizedStrings[&quot;Max Comparison&quot;] = &quot;Max Comparison&quot;;
-localizedStrings[&quot;Maximum&quot;] = &quot;Maximum&quot;;
-localizedStrings[&quot;Maximum Size: %s&quot;] = &quot;Maximum Size: %s&quot;;
-localizedStrings[&quot;Maximum maximum memory size in this recording&quot;] = &quot;Maximum maximum memory size in this recording&quot;;
-localizedStrings[&quot;Media: &quot;] = &quot;Media: &quot;;
-localizedStrings[&quot;Memory&quot;] = &quot;Memory&quot;;
-localizedStrings[&quot;Memory: %s&quot;] = &quot;Memory: %s&quot;;
-localizedStrings[&quot;Message&quot;] = &quot;Message&quot;;
-localizedStrings[&quot;Method&quot;] = &quot;Method&quot;;
-localizedStrings[&quot;Microtask Dispatched&quot;] = &quot;Microtask Dispatched&quot;;
-localizedStrings[&quot;Min&quot;] = &quot;Min&quot;;
-localizedStrings[&quot;Missing Dependencies:%s&quot;] = &quot;Missing Dependencies:%s&quot;;
-localizedStrings[&quot;Miter&quot;] = &quot;Miter&quot;;
-localizedStrings[&quot;Mixed&quot;] = &quot;Mixed&quot;;
-localizedStrings[&quot;Module Code&quot;] = &quot;Module Code&quot;;
-localizedStrings[&quot;Multi-Entry&quot;] = &quot;Multi-Entry&quot;;
-localizedStrings[&quot;Name&quot;] = &quot;Name&quot;;
-localizedStrings[&quot;Network&quot;] = &quot;Network&quot;;
-localizedStrings[&quot;Network Issue&quot;] = &quot;Network Issue&quot;;
-localizedStrings[&quot;Network Requests&quot;] = &quot;Network Requests&quot;;
-localizedStrings[&quot;New Rule&quot;] = &quot;New Rule&quot;;
-localizedStrings[&quot;New Tab&quot;] = &quot;New Tab&quot;;
-localizedStrings[&quot;No&quot;] = &quot;No&quot;;
-localizedStrings[&quot;No Accessibility Information&quot;] = &quot;No Accessibility Information&quot;;
-localizedStrings[&quot;No Application Cache information available&quot;] = &quot;No Application Cache information available&quot;;
-localizedStrings[&quot;No Attributes&quot;] = &quot;No Attributes&quot;;
-localizedStrings[&quot;No Box Model Information&quot;] = &quot;No Box Model Information&quot;;
-localizedStrings[&quot;No Call Frames&quot;] = &quot;No Call Frames&quot;;
-localizedStrings[&quot;No Chart Available&quot;] = &quot;No Chart Available&quot;;
-localizedStrings[&quot;No Child Layers&quot;] = &quot;No Child Layers&quot;;
-localizedStrings[&quot;No Entries.&quot;] = &quot;No Entries.&quot;;
-localizedStrings[&quot;No Event Listeners&quot;] = &quot;No Event Listeners&quot;;
-localizedStrings[&quot;No Filter Results&quot;] = &quot;No Filter Results&quot;;
-localizedStrings[&quot;No Layer Available&quot;] = &quot;No Layer Available&quot;;
-localizedStrings[&quot;No Parameters&quot;] = &quot;No Parameters&quot;;
-localizedStrings[&quot;No Properties&quot;] = &quot;No Properties&quot;;
-localizedStrings[&quot;No Properties \u2014 Click to Edit&quot;] = &quot;No Properties \u2014 Click to Edit&quot;;
-localizedStrings[&quot;No Properties.&quot;] = &quot;No Properties.&quot;;
-localizedStrings[&quot;No Query Parameters&quot;] = &quot;No Query Parameters&quot;;
-localizedStrings[&quot;No Request Headers&quot;] = &quot;No Request Headers&quot;;
-localizedStrings[&quot;No Response Headers&quot;] = &quot;No Response Headers&quot;;
-localizedStrings[&quot;No Results Found&quot;] = &quot;No Results Found&quot;;
-localizedStrings[&quot;No Search Results&quot;] = &quot;No Search Results&quot;;
-localizedStrings[&quot;No Watch Expressions&quot;] = &quot;No Watch Expressions&quot;;
-localizedStrings[&quot;No exact ARIA role match.&quot;] = &quot;No exact ARIA role match.&quot;;
-localizedStrings[&quot;No message&quot;] = &quot;No message&quot;;
-localizedStrings[&quot;No preview available&quot;] = &quot;No preview available&quot;;
-localizedStrings[&quot;No properties.&quot;] = &quot;No properties.&quot;;
-localizedStrings[&quot;Node&quot;] = &quot;Node&quot;;
-localizedStrings[&quot;Not found&quot;] = &quot;Not found&quot;;
-localizedStrings[&quot;Number&quot;] = &quot;Number&quot;;
-localizedStrings[&quot;Numeric&quot;] = &quot;Numeric&quot;;
-localizedStrings[&quot;Object Graph&quot;] = &quot;Object Graph&quot;;
-localizedStrings[&quot;Object Store&quot;] = &quot;Object Store&quot;;
-localizedStrings[&quot;Offset&quot;] = &quot;Offset&quot;;
-localizedStrings[&quot;Online&quot;] = &quot;Online&quot;;
-localizedStrings[&quot;Only show resources with issues&quot;] = &quot;Only show resources with issues&quot;;
-localizedStrings[&quot;Opacity&quot;] = &quot;Opacity&quot;;
-localizedStrings[&quot;Open&quot;] = &quot;Open&quot;;
-localizedStrings[&quot;Open in New Tab&quot;] = &quot;Open in New Tab&quot;;
-localizedStrings[&quot;Option-click to show all units&quot;] = &quot;Option-click to show all units&quot;;
-localizedStrings[&quot;Option-click to show all values&quot;] = &quot;Option-click to show all values&quot;;
-localizedStrings[&quot;Option-click to show source&quot;] = &quot;Option-click to show source&quot;;
-localizedStrings[&quot;Options&quot;] = &quot;Options&quot;;
-localizedStrings[&quot;Order&quot;] = &quot;Order&quot;;
-localizedStrings[&quot;Origin&quot;] = &quot;Origin&quot;;
-localizedStrings[&quot;Original&quot;] = &quot;Original&quot;;
-localizedStrings[&quot;Original formatting&quot;] = &quot;Original formatting&quot;;
-localizedStrings[&quot;Originally %s&quot;] = &quot;Originally %s&quot;;
-localizedStrings[&quot;Other&quot;] = &quot;Other&quot;;
-localizedStrings[&quot;Other Issue&quot;] = &quot;Other Issue&quot;;
-localizedStrings[&quot;Outline&quot;] = &quot;Outline&quot;;
-localizedStrings[&quot;Output: &quot;] = &quot;Output: &quot;;
-localizedStrings[&quot;Outset&quot;] = &quot;Outset&quot;;
-localizedStrings[&quot;Over 1 ms&quot;] = &quot;Over 1 ms&quot;;
-localizedStrings[&quot;Over 15 ms&quot;] = &quot;Over 15 ms&quot;;
-localizedStrings[&quot;Overflow&quot;] = &quot;Overflow&quot;;
-localizedStrings[&quot;Overview&quot;] = &quot;Overview&quot;;
-localizedStrings[&quot;Owns&quot;] = &quot;Owns&quot;;
-localizedStrings[&quot;Padding&quot;] = &quot;Padding&quot;;
-localizedStrings[&quot;Page&quot;] = &quot;Page&quot;;
-localizedStrings[&quot;Page Issue&quot;] = &quot;Page Issue&quot;;
-localizedStrings[&quot;Paint&quot;] = &quot;Paint&quot;;
-localizedStrings[&quot;Paints&quot;] = &quot;Paints&quot;;
-localizedStrings[&quot;Parent&quot;] = &quot;Parent&quot;;
-localizedStrings[&quot;Partial Garbage Collection&quot;] = &quot;Partial Garbage Collection&quot;;
-localizedStrings[&quot;Path&quot;] = &quot;Path&quot;;
-localizedStrings[&quot;Pause Playback&quot;] = &quot;Pause Playback&quot;;
-localizedStrings[&quot;Pause Reason&quot;] = &quot;Pause Reason&quot;;
-localizedStrings[&quot;Pause script execution (%s or %s)&quot;] = &quot;Pause script execution (%s or %s)&quot;;
-localizedStrings[&quot;Play Sound&quot;] = &quot;Play Sound&quot;;
-localizedStrings[&quot;Polite&quot;] = &quot;Polite&quot;;
-localizedStrings[&quot;Port&quot;] = &quot;Port&quot;;
-localizedStrings[&quot;Position&quot;] = &quot;Position&quot;;
-localizedStrings[&quot;Position X&quot;] = &quot;Position X&quot;;
-localizedStrings[&quot;Position Y&quot;] = &quot;Position Y&quot;;
-localizedStrings[&quot;Pressed&quot;] = &quot;Pressed&quot;;
-localizedStrings[&quot;Pretty print&quot;] = &quot;Pretty print&quot;;
-localizedStrings[&quot;Primary Key&quot;] = &quot;Primary Key&quot;;
-localizedStrings[&quot;Primary Key \u2014 %s&quot;] = &quot;Primary Key \u2014 %s&quot;;
-localizedStrings[&quot;Probe Expression&quot;] = &quot;Probe Expression&quot;;
-localizedStrings[&quot;Probe Sample Recorded&quot;] = &quot;Probe Sample Recorded&quot;;
-localizedStrings[&quot;Probes&quot;] = &quot;Probes&quot;;
-localizedStrings[&quot;Processing Instruction&quot;] = &quot;Processing Instruction&quot;;
-localizedStrings[&quot;Properties&quot;] = &quot;Properties&quot;;
-localizedStrings[&quot;Property&quot;] = &quot;Property&quot;;
-localizedStrings[&quot;Query Parameters&quot;] = &quot;Query Parameters&quot;;
-localizedStrings[&quot;Query String&quot;] = &quot;Query String&quot;;
-localizedStrings[&quot;Query returned no results.&quot;] = &quot;Query returned no results.&quot;;
-localizedStrings[&quot;Radial Gradient&quot;] = &quot;Radial Gradient&quot;;
-localizedStrings[&quot;Radius&quot;] = &quot;Radius&quot;;
-localizedStrings[&quot;Radius X&quot;] = &quot;Radius X&quot;;
-localizedStrings[&quot;Radius Y&quot;] = &quot;Radius Y&quot;;
-localizedStrings[&quot;Range Issue&quot;] = &quot;Range Issue&quot;;
-localizedStrings[&quot;Readonly&quot;] = &quot;Readonly&quot;;
-localizedStrings[&quot;Reasons for compositing:&quot;] = &quot;Reasons for compositing:&quot;;
-localizedStrings[&quot;Recording Timeline Data&quot;] = &quot;Recording Timeline Data&quot;;
-localizedStrings[&quot;Reference Issue&quot;] = &quot;Reference Issue&quot;;
-localizedStrings[&quot;Reflection&quot;] = &quot;Reflection&quot;;
-localizedStrings[&quot;Refresh&quot;] = &quot;Refresh&quot;;
-localizedStrings[&quot;Refresh watch expressions&quot;] = &quot;Refresh watch expressions&quot;;
-localizedStrings[&quot;Region Flow&quot;] = &quot;Region Flow&quot;;
-localizedStrings[&quot;Region announced in its entirety.&quot;] = &quot;Region announced in its entirety.&quot;;
-localizedStrings[&quot;Reload page (%s)\nReload ignoring cache (%s)&quot;] = &quot;Reload page (%s)\nReload ignoring cache (%s)&quot;;
-localizedStrings[&quot;Removals&quot;] = &quot;Removals&quot;;
-localizedStrings[&quot;Remove Watch Expression&quot;] = &quot;Remove Watch Expression&quot;;
-localizedStrings[&quot;Remove probe&quot;] = &quot;Remove probe&quot;;
-localizedStrings[&quot;Remove this breakpoint action&quot;] = &quot;Remove this breakpoint action&quot;;
-localizedStrings[&quot;Rendering Frames&quot;] = &quot;Rendering Frames&quot;;
-localizedStrings[&quot;Repeat&quot;] = &quot;Repeat&quot;;
-localizedStrings[&quot;Repeating Linear Gradient&quot;] = &quot;Repeating Linear Gradient&quot;;
-localizedStrings[&quot;Repeating Radial Gradient&quot;] = &quot;Repeating Radial Gradient&quot;;
-localizedStrings[&quot;Request&quot;] = &quot;Request&quot;;
-localizedStrings[&quot;Request &amp; Response&quot;] = &quot;Request &amp; Response&quot;;
-localizedStrings[&quot;Request Data&quot;] = &quot;Request Data&quot;;
-localizedStrings[&quot;Request Headers&quot;] = &quot;Request Headers&quot;;
-localizedStrings[&quot;Required&quot;] = &quot;Required&quot;;
-localizedStrings[&quot;Reset&quot;] = &quot;Reset&quot;;
-localizedStrings[&quot;Resource&quot;] = &quot;Resource&quot;;
-localizedStrings[&quot;Resource Type&quot;] = &quot;Resource Type&quot;;
-localizedStrings[&quot;Resource failed to load.&quot;] = &quot;Resource failed to load.&quot;;
-localizedStrings[&quot;Resource was loaded with the 'data' scheme.&quot;] = &quot;Resource was loaded with the 'data' scheme.&quot;;
-localizedStrings[&quot;Resource was served from the cache.&quot;] = &quot;Resource was served from the cache.&quot;;
-localizedStrings[&quot;Resources&quot;] = &quot;Resources&quot;;
-localizedStrings[&quot;Response&quot;] = &quot;Response&quot;;
-localizedStrings[&quot;Response Headers&quot;] = &quot;Response Headers&quot;;
-localizedStrings[&quot;Restart (%s)&quot;] = &quot;Restart (%s)&quot;;
-localizedStrings[&quot;Retained Size&quot;] = &quot;Retained Size&quot;;
-localizedStrings[&quot;Return type for anonymous function&quot;] = &quot;Return type for anonymous function&quot;;
-localizedStrings[&quot;Return type for function: %s&quot;] = &quot;Return type for function: %s&quot;;
-localizedStrings[&quot;Reveal in DOM Tree&quot;] = &quot;Reveal in DOM Tree&quot;;
-localizedStrings[&quot;Reveal in Debugger Tab&quot;] = &quot;Reveal in Debugger Tab&quot;;
-localizedStrings[&quot;Reveal in Original Resource&quot;] = &quot;Reveal in Original Resource&quot;;
-localizedStrings[&quot;Reveal in Resources Tab&quot;] = &quot;Reveal in Resources Tab&quot;;
-localizedStrings[&quot;Right&quot;] = &quot;Right&quot;;
-localizedStrings[&quot;Role&quot;] = &quot;Role&quot;;
-localizedStrings[&quot;Rule&quot;] = &quot;Rule&quot;;
-localizedStrings[&quot;Samples&quot;] = &quot;Samples&quot;;
-localizedStrings[&quot;Save File&quot;] = &quot;Save File&quot;;
-localizedStrings[&quot;Save configuration&quot;] = &quot;Save configuration&quot;;
-localizedStrings[&quot;Scheme&quot;] = &quot;Scheme&quot;;
-localizedStrings[&quot;Scope&quot;] = &quot;Scope&quot;;
-localizedStrings[&quot;Scope Chain&quot;] = &quot;Scope Chain&quot;;
-localizedStrings[&quot;Script&quot;] = &quot;Script&quot;;
-localizedStrings[&quot;Script Element %d&quot;] = &quot;Script Element %d&quot;;
-localizedStrings[&quot;Script Evaluated&quot;] = &quot;Script Evaluated&quot;;
-localizedStrings[&quot;Scripts&quot;] = &quot;Scripts&quot;;
-localizedStrings[&quot;Scroll Into View&quot;] = &quot;Scroll Into View&quot;;
-localizedStrings[&quot;Search&quot;] = &quot;Search&quot;;
-localizedStrings[&quot;Search Resource Content&quot;] = &quot;Search Resource Content&quot;;
-localizedStrings[&quot;Secure&quot;] = &quot;Secure&quot;;
-localizedStrings[&quot;Security Issue&quot;] = &quot;Security Issue&quot;;
-localizedStrings[&quot;Security Origin&quot;] = &quot;Security Origin&quot;;
-localizedStrings[&quot;Select %s Rule&quot;] = &quot;Select %s Rule&quot;;
-localizedStrings[&quot;Select baseline snapshot&quot;] = &quot;Select baseline snapshot&quot;;
-localizedStrings[&quot;Select comparison snapshot&quot;] = &quot;Select comparison snapshot&quot;;
-localizedStrings[&quot;Selected&quot;] = &quot;Selected&quot;;
-localizedStrings[&quot;Selected Element&quot;] = &quot;Selected Element&quot;;
-localizedStrings[&quot;Selected Item&quot;] = &quot;Selected Item&quot;;
-localizedStrings[&quot;Selected Items&quot;] = &quot;Selected Items&quot;;
-localizedStrings[&quot;Selected Symbol&quot;] = &quot;Selected Symbol&quot;;
-localizedStrings[&quot;Selected Value&quot;] = &quot;Selected Value&quot;;
-localizedStrings[&quot;Self&quot;] = &quot;Self&quot;;
-localizedStrings[&quot;Self Size&quot;] = &quot;Self Size&quot;;
-localizedStrings[&quot;Self Time&quot;] = &quot;Self Time&quot;;
-localizedStrings[&quot;Semantic Issue&quot;] = &quot;Semantic Issue&quot;;
-localizedStrings[&quot;Session&quot;] = &quot;Session&quot;;
-localizedStrings[&quot;Session Storage&quot;] = &quot;Session Storage&quot;;
-localizedStrings[&quot;Set to Automatically Continue&quot;] = &quot;Set to Automatically Continue&quot;;
-localizedStrings[&quot;Setter&quot;] = &quot;Setter&quot;;
-localizedStrings[&quot;Settings&quot;] = &quot;Settings&quot;;
-localizedStrings[&quot;Shadow&quot;] = &quot;Shadow&quot;;
-localizedStrings[&quot;Shadow Content&quot;] = &quot;Shadow Content&quot;;
-localizedStrings[&quot;Shadow Content (%s)&quot;] = &quot;Shadow Content (%s)&quot;;
-localizedStrings[&quot;Shared Focus&quot;] = &quot;Shared Focus&quot;;
-localizedStrings[&quot;Shortest property path to %s&quot;] = &quot;Shortest property path to %s&quot;;
-localizedStrings[&quot;Show %d More&quot;] = &quot;Show %d More&quot;;
-localizedStrings[&quot;Show All&quot;] = &quot;Show All&quot;;
-localizedStrings[&quot;Show All Nodes (%d More)&quot;] = &quot;Show All Nodes (%d More)&quot;;
-localizedStrings[&quot;Show Remaining (%d)&quot;] = &quot;Show Remaining (%d)&quot;;
-localizedStrings[&quot;Show Source&quot;] = &quot;Show Source&quot;;
-localizedStrings[&quot;Show all resources&quot;] = &quot;Show all resources&quot;;
-localizedStrings[&quot;Show compositing borders&quot;] = &quot;Show compositing borders&quot;;
-localizedStrings[&quot;Show console tab&quot;] = &quot;Show console tab&quot;;
-localizedStrings[&quot;Show shadow DOM nodes&quot;] = &quot;Show shadow DOM nodes&quot;;
-localizedStrings[&quot;Show the details sidebar (%s)&quot;] = &quot;Show the details sidebar (%s)&quot;;
-localizedStrings[&quot;Show the navigation sidebar (%s)&quot;] = &quot;Show the navigation sidebar (%s)&quot;;
-localizedStrings[&quot;Show type information&quot;] = &quot;Show type information&quot;;
-localizedStrings[&quot;Shrink&quot;] = &quot;Shrink&quot;;
-localizedStrings[&quot;Size&quot;] = &quot;Size&quot;;
-localizedStrings[&quot;Size of the current object plus the size of all objects it keeps alive.&quot;] = &quot;Size of the current object plus the size of all objects it keeps alive.&quot;;
-localizedStrings[&quot;Sizing&quot;] = &quot;Sizing&quot;;
-localizedStrings[&quot;Slice&quot;] = &quot;Slice&quot;;
-localizedStrings[&quot;Small Icons&quot;] = &quot;Small Icons&quot;;
-localizedStrings[&quot;Snapshot %d&quot;] = &quot;Snapshot %d&quot;;
-localizedStrings[&quot;Snapshot %d \u2014 %s&quot;] = &quot;Snapshot %d \u2014 %s&quot;;
-localizedStrings[&quot;Snapshot Comparison (%d and %d)&quot;] = &quot;Snapshot Comparison (%d and %d)&quot;;
-localizedStrings[&quot;Snapshot List&quot;] = &quot;Snapshot List&quot;;
-localizedStrings[&quot;Socket&quot;] = &quot;Socket&quot;;
-localizedStrings[&quot;Sockets&quot;] = &quot;Sockets&quot;;
-localizedStrings[&quot;Sort Ascending&quot;] = &quot;Sort Ascending&quot;;
-localizedStrings[&quot;Sort Descending&quot;] = &quot;Sort Descending&quot;;
-localizedStrings[&quot;Sources&quot;] = &quot;Sources&quot;;
-localizedStrings[&quot;Spacing&quot;] = &quot;Spacing&quot;;
-localizedStrings[&quot;Specificity: (%d, %d, %d)&quot;] = &quot;Specificity: (%d, %d, %d)&quot;;
-localizedStrings[&quot;Specificity: No value for selected element&quot;] = &quot;Specificity: No value for selected element&quot;;
-localizedStrings[&quot;Spelling&quot;] = &quot;Spelling&quot;;
-localizedStrings[&quot;Spread&quot;] = &quot;Spread&quot;;
-localizedStrings[&quot;Spring&quot;] = &quot;Spring&quot;;
-localizedStrings[&quot;Stalled&quot;] = &quot;Stalled&quot;;
-localizedStrings[&quot;Start Playback&quot;] = &quot;Start Playback&quot;;
-localizedStrings[&quot;Start Recording&quot;] = &quot;Start Recording&quot;;
-localizedStrings[&quot;Start Time&quot;] = &quot;Start Time&quot;;
-localizedStrings[&quot;Start element selection (%s)&quot;] = &quot;Start element selection (%s)&quot;;
-localizedStrings[&quot;Start recording (%s)\nCreate new recording (%s)&quot;] = &quot;Start recording (%s)\nCreate new recording (%s)&quot;;
-localizedStrings[&quot;State&quot;] = &quot;State&quot;;
-localizedStrings[&quot;Status&quot;] = &quot;Status&quot;;
-localizedStrings[&quot;Step&quot;] = &quot;Step&quot;;
-localizedStrings[&quot;Step into (%s or %s)&quot;] = &quot;Step into (%s or %s)&quot;;
-localizedStrings[&quot;Step out (%s or %s)&quot;] = &quot;Step out (%s or %s)&quot;;
-localizedStrings[&quot;Step over (%s or %s)&quot;] = &quot;Step over (%s or %s)&quot;;
-localizedStrings[&quot;Stiffness&quot;] = &quot;Stiffness&quot;;
-localizedStrings[&quot;Stop Recording&quot;] = &quot;Stop Recording&quot;;
-localizedStrings[&quot;Stop element selection (%s)&quot;] = &quot;Stop element selection (%s)&quot;;
-localizedStrings[&quot;Stop recording (%s)&quot;] = &quot;Stop recording (%s)&quot;;
-localizedStrings[&quot;Stop recording.&quot;] = &quot;Stop recording.&quot;;
-localizedStrings[&quot;Storage&quot;] = &quot;Storage&quot;;
-localizedStrings[&quot;Stroke&quot;] = &quot;Stroke&quot;;
-localizedStrings[&quot;Style&quot;] = &quot;Style&quot;;
-localizedStrings[&quot;Style Attribute&quot;] = &quot;Style Attribute&quot;;
-localizedStrings[&quot;Style Rules&quot;] = &quot;Style Rules&quot;;
-localizedStrings[&quot;Styles&quot;] = &quot;Styles&quot;;
-localizedStrings[&quot;Styles Invalidated&quot;] = &quot;Styles Invalidated&quot;;
-localizedStrings[&quot;Styles Recalculated&quot;] = &quot;Styles Recalculated&quot;;
-localizedStrings[&quot;Styles \u2014 Computed&quot;] = &quot;Styles \u2014 Computed&quot;;
-localizedStrings[&quot;Styles \u2014 Rules&quot;] = &quot;Styles \u2014 Rules&quot;;
-localizedStrings[&quot;Styles \u2014 Visual&quot;] = &quot;Styles \u2014 Visual&quot;;
-localizedStrings[&quot;Stylesheet&quot;] = &quot;Stylesheet&quot;;
-localizedStrings[&quot;Stylesheets&quot;] = &quot;Stylesheets&quot;;
-localizedStrings[&quot;Take snapshot&quot;] = &quot;Take snapshot&quot;;
-localizedStrings[&quot;Template Content&quot;] = &quot;Template Content&quot;;
-localizedStrings[&quot;Text&quot;] = &quot;Text&quot;;
-localizedStrings[&quot;Text Node&quot;] = &quot;Text Node&quot;;
-localizedStrings[&quot;Text Only&quot;] = &quot;Text Only&quot;;
-localizedStrings[&quot;The property “%s” is not supported.&quot;] = &quot;The property “%s” is not supported.&quot;;
-localizedStrings[&quot;The selector “%s” is invalid.\nClick to revert to the previous selector.&quot;] = &quot;The selector “%s” is invalid.\nClick to revert to the previous selector.&quot;;
-localizedStrings[&quot;The value “%s” is not supported for this property.&quot;] = &quot;The value “%s” is not supported for this property.&quot;;
-localizedStrings[&quot;The value “%s” is not supported for this property.\nClick to delete and open autocomplete.&quot;] = &quot;The value “%s” is not supported for this property.\nClick to delete and open autocomplete.&quot;;
-localizedStrings[&quot;The value “%s” needs units.\nClick to add “px” to the value.&quot;] = &quot;The value “%s” needs units.\nClick to add “px” to the value.&quot;;
-localizedStrings[&quot;The “%s”\ntable is empty.&quot;] = &quot;The “%s”\ntable is empty.&quot;;
-localizedStrings[&quot;The “webkit” prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;] = &quot;The “webkit” prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;;
-localizedStrings[&quot;The “webkit” prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;] = &quot;The “webkit” prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;;
-localizedStrings[&quot;This Element&quot;] = &quot;This Element&quot;;
-localizedStrings[&quot;This object is a root&quot;] = &quot;This object is a root&quot;;
-localizedStrings[&quot;This object is referenced by internal objects&quot;] = &quot;This object is referenced by internal objects&quot;;
-localizedStrings[&quot;This property needs a value.\nClick to open autocomplete.&quot;] = &quot;This property needs a value.\nClick to open autocomplete.&quot;;
-localizedStrings[&quot;Time&quot;] = &quot;Time&quot;;
-localizedStrings[&quot;Time until the load event fired, click to show the Network Requests timeline&quot;] = &quot;Time until the load event fired, click to show the Network Requests timeline&quot;;
-localizedStrings[&quot;Timeline&quot;] = &quot;Timeline&quot;;
-localizedStrings[&quot;Timeline Recording %d&quot;] = &quot;Timeline Recording %d&quot;;
-localizedStrings[&quot;Timelines&quot;] = &quot;Timelines&quot;;
-localizedStrings[&quot;Timer %s Fired&quot;] = &quot;Timer %s Fired&quot;;
-localizedStrings[&quot;Timer %s Installed&quot;] = &quot;Timer %s Installed&quot;;
-localizedStrings[&quot;Timer %s Removed&quot;] = &quot;Timer %s Removed&quot;;
-localizedStrings[&quot;Timer Fired&quot;] = &quot;Timer Fired&quot;;
-localizedStrings[&quot;Timer Installed&quot;] = &quot;Timer Installed&quot;;
-localizedStrings[&quot;Timer Removed&quot;] = &quot;Timer Removed&quot;;
-localizedStrings[&quot;Timestamp \u2014 %s&quot;] = &quot;Timestamp \u2014 %s&quot;;
-localizedStrings[&quot;Timing&quot;] = &quot;Timing&quot;;
-localizedStrings[&quot;Toggle Classes&quot;] = &quot;Toggle Classes&quot;;
-localizedStrings[&quot;Top&quot;] = &quot;Top&quot;;
-localizedStrings[&quot;Top Functions&quot;] = &quot;Top Functions&quot;;
-localizedStrings[&quot;Total Time&quot;] = &quot;Total Time&quot;;
-localizedStrings[&quot;Total memory size at the end of the selected time range&quot;] = &quot;Total memory size at the end of the selected time range&quot;;
-localizedStrings[&quot;Total number of resources, click to show the Resources tab&quot;] = &quot;Total number of resources, click to show the Resources tab&quot;;
-localizedStrings[&quot;Total size of all resources, click to show the Network Requests timeline&quot;] = &quot;Total size of all resources, click to show the Network Requests timeline&quot;;
-localizedStrings[&quot;Total time&quot;] = &quot;Total time&quot;;
-localizedStrings[&quot;Trace&quot;] = &quot;Trace&quot;;
-localizedStrings[&quot;Trace: %s&quot;] = &quot;Trace: %s&quot;;
-localizedStrings[&quot;Transferred&quot;] = &quot;Transferred&quot;;
-localizedStrings[&quot;Transform&quot;] = &quot;Transform&quot;;
-localizedStrings[&quot;Transition&quot;] = &quot;Transition&quot;;
-localizedStrings[&quot;Triggered Breakpoint&quot;] = &quot;Triggered Breakpoint&quot;;
-localizedStrings[&quot;True&quot;] = &quot;True&quot;;
-localizedStrings[&quot;Type&quot;] = &quot;Type&quot;;
-localizedStrings[&quot;Type Issue&quot;] = &quot;Type Issue&quot;;
-localizedStrings[&quot;Type information for variable: %s&quot;] = &quot;Type information for variable: %s&quot;;
-localizedStrings[&quot;Unable to determine path to property from root&quot;] = &quot;Unable to determine path to property from root&quot;;
-localizedStrings[&quot;Unchanged&quot;] = &quot;Unchanged&quot;;
-localizedStrings[&quot;Uncomment All Properties&quot;] = &quot;Uncomment All Properties&quot;;
-localizedStrings[&quot;Unique&quot;] = &quot;Unique&quot;;
-localizedStrings[&quot;Unknown node&quot;] = &quot;Unknown node&quot;;
-localizedStrings[&quot;Untitled&quot;] = &quot;Untitled&quot;;
-localizedStrings[&quot;User Agent&quot;] = &quot;User Agent&quot;;
-localizedStrings[&quot;User Agent Stylesheet&quot;] = &quot;User Agent Stylesheet&quot;;
-localizedStrings[&quot;User Stylesheet&quot;] = &quot;User Stylesheet&quot;;
-localizedStrings[&quot;Using Keyword Value&quot;] = &quot;Using Keyword Value&quot;;
-localizedStrings[&quot;Using the previous selector “%s”.&quot;] = &quot;Using the previous selector “%s”.&quot;;
-localizedStrings[&quot;Value&quot;] = &quot;Value&quot;;
-localizedStrings[&quot;Variables&quot;] = &quot;Variables&quot;;
-localizedStrings[&quot;Variants&quot;] = &quot;Variants&quot;;
-localizedStrings[&quot;Version&quot;] = &quot;Version&quot;;
-localizedStrings[&quot;Vertical&quot;] = &quot;Vertical&quot;;
-localizedStrings[&quot;Visibility&quot;] = &quot;Visibility&quot;;
-localizedStrings[&quot;Warning: &quot;] = &quot;Warning: &quot;;
-localizedStrings[&quot;Warnings&quot;] = &quot;Warnings&quot;;
-localizedStrings[&quot;Watch Expressions&quot;] = &quot;Watch Expressions&quot;;
-localizedStrings[&quot;Web Inspector&quot;] = &quot;Web Inspector&quot;;
-localizedStrings[&quot;Weight&quot;] = &quot;Weight&quot;;
-localizedStrings[&quot;Whitespace&quot;] = &quot;Whitespace&quot;;
-localizedStrings[&quot;Width&quot;] = &quot;Width&quot;;
-localizedStrings[&quot;With Object Properties&quot;] = &quot;With Object Properties&quot;;
-localizedStrings[&quot;Word&quot;] = &quot;Word&quot;;
-localizedStrings[&quot;Working Copy&quot;] = &quot;Working Copy&quot;;
-localizedStrings[&quot;Wrap&quot;] = &quot;Wrap&quot;;
-localizedStrings[&quot;X&quot;] = &quot;X&quot;;
-localizedStrings[&quot;X1&quot;] = &quot;X1&quot;;
-localizedStrings[&quot;X2&quot;] = &quot;X2&quot;;
-localizedStrings[&quot;XHR&quot;] = &quot;XHR&quot;;
-localizedStrings[&quot;XHRs&quot;] = &quot;XHRs&quot;;
-localizedStrings[&quot;Y&quot;] = &quot;Y&quot;;
-localizedStrings[&quot;Y1&quot;] = &quot;Y1&quot;;
-localizedStrings[&quot;Y2&quot;] = &quot;Y2&quot;;
-localizedStrings[&quot;Yes&quot;] = &quot;Yes&quot;;
-localizedStrings[&quot;Z-Index&quot;] = &quot;Z-Index&quot;;
-localizedStrings[&quot;key&quot;] = &quot;key&quot;;
-localizedStrings[&quot;line &quot;] = &quot;line &quot;;
-localizedStrings[&quot;originally %s&quot;] = &quot;originally %s&quot;;
-localizedStrings[&quot;time before stopping&quot;] = &quot;time before stopping&quot;;
-localizedStrings[&quot;times before stopping&quot;] = &quot;times before stopping&quot;;
-localizedStrings[&quot;value&quot;] = &quot;value&quot;;
-localizedStrings[&quot;“%s” Profile Recorded&quot;] = &quot;“%s” Profile Recorded&quot;;
</del><ins>+\xFE\xFFvar localizedStrings = new Object;
+
+localizedStrings[&quot; (Prototype)&quot;] = &quot; (Prototype)&quot;;
+localizedStrings[&quot; (line %s)&quot;] = &quot; (line %s)&quot;;
+localizedStrings[&quot;%.0f B&quot;] = &quot;%.0f B&quot;;
+localizedStrings[&quot;%.0fms&quot;] = &quot;%.0fms&quot;;
+localizedStrings[&quot;%.1f KB&quot;] = &quot;%.1f KB&quot;;
+localizedStrings[&quot;%.1f MB&quot;] = &quot;%.1f MB&quot;;
+localizedStrings[&quot;%.1f days&quot;] = &quot;%.1f days&quot;;
+localizedStrings[&quot;%.1fB&quot;] = &quot;%.1fB&quot;;
+localizedStrings[&quot;%.1fK&quot;] = &quot;%.1fK&quot;;
+localizedStrings[&quot;%.1fM&quot;] = &quot;%.1fM&quot;;
+localizedStrings[&quot;%.1fhrs&quot;] = &quot;%.1fhrs&quot;;
+localizedStrings[&quot;%.1fmin&quot;] = &quot;%.1fmin&quot;;
+localizedStrings[&quot;%.1fms&quot;] = &quot;%.1fms&quot;;
+localizedStrings[&quot;%.2f KB&quot;] = &quot;%.2f KB&quot;;
+localizedStrings[&quot;%.2f MB&quot;] = &quot;%.2f MB&quot;;
+localizedStrings[&quot;%.2f\u00d7&quot;] = &quot;%.2f\u00d7&quot;;
+localizedStrings[&quot;%.2fms&quot;] = &quot;%.2fms&quot;;
+localizedStrings[&quot;%.2fs&quot;] = &quot;%.2fs&quot;;
+localizedStrings[&quot;%.3fms&quot;] = &quot;%.3fms&quot;;
+localizedStrings[&quot;%d Errors&quot;] = &quot;%d Errors&quot;;
+localizedStrings[&quot;%d Errors, %d Warnings&quot;] = &quot;%d Errors, %d Warnings&quot;;
+localizedStrings[&quot;%d More\u2026&quot;] = &quot;%d More\u2026&quot;;
+localizedStrings[&quot;%d Warnings&quot;] = &quot;%d Warnings&quot;;
+localizedStrings[&quot;%d \xd7 %d pixels&quot;] = &quot;%d \xd7 %d pixels&quot;;
+localizedStrings[&quot;%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)&quot;] = &quot;%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)&quot;;
+localizedStrings[&quot;%d matches&quot;] = &quot;%d matches&quot;;
+localizedStrings[&quot;%dpx&quot;] = &quot;%dpx&quot;;
+localizedStrings[&quot;%dpx\xB2&quot;] = &quot;%dpx\xB2&quot;;
+localizedStrings[&quot;%s (computed)&quot;] = &quot;%s (computed)&quot;;
+localizedStrings[&quot;%s (default)&quot;] = &quot;%s (default)&quot;;
+localizedStrings[&quot;%s (hidden)&quot;] = &quot;%s (hidden)&quot;;
+localizedStrings[&quot;%s Event Dispatched&quot;] = &quot;%s Event Dispatched&quot;;
+localizedStrings[&quot;%s Prototype&quot;] = &quot;%s Prototype&quot;;
+localizedStrings[&quot;%s \u2013 %s&quot;] = &quot;%s \u2013 %s&quot;;
+localizedStrings[&quot;%s \u2014 %s&quot;] = &quot;%s \u2014 %s&quot;;
+localizedStrings[&quot;%s delay&quot;] = &quot;%s delay&quot;;
+localizedStrings[&quot;%s interval&quot;] = &quot;%s interval&quot;;
+localizedStrings[&quot;(Index)&quot;] = &quot;(Index)&quot;;
+localizedStrings[&quot;(Tail Call)&quot;] = &quot;(Tail Call)&quot;;
+localizedStrings[&quot;(anonymous function)&quot;] = &quot;(anonymous function)&quot;;
+localizedStrings[&quot;(many)&quot;] = &quot;(many)&quot;;
+localizedStrings[&quot;(modify the boxes below to add a value)&quot;] = &quot;(modify the boxes below to add a value)&quot;;
+localizedStrings[&quot;(multiple)&quot;] = &quot;(multiple)&quot;;
+localizedStrings[&quot;(program)&quot;] = &quot;(program)&quot;;
+localizedStrings[&quot;(uninitialized)&quot;] = &quot;(uninitialized)&quot;;
+localizedStrings[&quot;, &quot;] = &quot;, &quot;;
+localizedStrings[&quot;1 match&quot;] = &quot;1 match&quot;;
+localizedStrings[&quot;Accessibility&quot;] = &quot;Accessibility&quot;;
+localizedStrings[&quot;Action&quot;] = &quot;Action&quot;;
+localizedStrings[&quot;Activity Viewer&quot;] = &quot;Activity Viewer&quot;;
+localizedStrings[&quot;Add %s Rule&quot;] = &quot;Add %s Rule&quot;;
+localizedStrings[&quot;Add Action&quot;] = &quot;Add Action&quot;;
+localizedStrings[&quot;Add Attribute&quot;] = &quot;Add Attribute&quot;;
+localizedStrings[&quot;Add Breakpoint&quot;] = &quot;Add Breakpoint&quot;;
+localizedStrings[&quot;Add New&quot;] = &quot;Add New&quot;;
+localizedStrings[&quot;Add New Probe Expression&quot;] = &quot;Add New Probe Expression&quot;;
+localizedStrings[&quot;Add New Watch Expression&quot;] = &quot;Add New Watch Expression&quot;;
+localizedStrings[&quot;Add a Class&quot;] = &quot;Add a Class&quot;;
+localizedStrings[&quot;Add new breakpoint action after this action&quot;] = &quot;Add new breakpoint action after this action&quot;;
+localizedStrings[&quot;Add probe expression&quot;] = &quot;Add probe expression&quot;;
+localizedStrings[&quot;Add watch expression&quot;] = &quot;Add watch expression&quot;;
+localizedStrings[&quot;Additions&quot;] = &quot;Additions&quot;;
+localizedStrings[&quot;Align&quot;] = &quot;Align&quot;;
+localizedStrings[&quot;Alignment&quot;] = &quot;Alignment&quot;;
+localizedStrings[&quot;All&quot;] = &quot;All&quot;;
+localizedStrings[&quot;All Changes&quot;] = &quot;All Changes&quot;;
+localizedStrings[&quot;All Exceptions&quot;] = &quot;All Exceptions&quot;;
+localizedStrings[&quot;All Resources&quot;] = &quot;All Resources&quot;;
+localizedStrings[&quot;All Storage&quot;] = &quot;All Storage&quot;;
+localizedStrings[&quot;All Uncaught Exceptions&quot;] = &quot;All Uncaught Exceptions&quot;;
+localizedStrings[&quot;Alternates&quot;] = &quot;Alternates&quot;;
+localizedStrings[&quot;An error occurred trying to load the resource.&quot;] = &quot;An error occurred trying to load the resource.&quot;;
+localizedStrings[&quot;An error occurred trying to read the  %s  table.&quot;] = &quot;An error occurred trying to read the  %s  table.&quot;;
+localizedStrings[&quot;An unexpected error %s occurred.&quot;] = &quot;An unexpected error %s occurred.&quot;;
+localizedStrings[&quot;An unexpected error occurred.&quot;] = &quot;An unexpected error occurred.&quot;;
+localizedStrings[&quot;Angle&quot;] = &quot;Angle&quot;;
+localizedStrings[&quot;Animation&quot;] = &quot;Animation&quot;;
+localizedStrings[&quot;Animation Frame %s Canceled&quot;] = &quot;Animation Frame %s Canceled&quot;;
+localizedStrings[&quot;Animation Frame %s Fired&quot;] = &quot;Animation Frame %s Fired&quot;;
+localizedStrings[&quot;Animation Frame %s Requested&quot;] = &quot;Animation Frame %s Requested&quot;;
+localizedStrings[&quot;Animation Frame Canceled&quot;] = &quot;Animation Frame Canceled&quot;;
+localizedStrings[&quot;Animation Frame Fired&quot;] = &quot;Animation Frame Fired&quot;;
+localizedStrings[&quot;Animation Frame Requested&quot;] = &quot;Animation Frame Requested&quot;;
+localizedStrings[&quot;Anonymous Script %d&quot;] = &quot;Anonymous Script %d&quot;;
+localizedStrings[&quot;Anonymous Scripts&quot;] = &quot;Anonymous Scripts&quot;;
+localizedStrings[&quot;Anonymous StyleSheet %d&quot;] = &quot;Anonymous StyleSheet %d&quot;;
+localizedStrings[&quot;Application Cache&quot;] = &quot;Application Cache&quot;;
+localizedStrings[&quot;Area&quot;] = &quot;Area&quot;;
+localizedStrings[&quot;Assertion&quot;] = &quot;Assertion&quot;;
+localizedStrings[&quot;Assertion Failed&quot;] = &quot;Assertion Failed&quot;;
+localizedStrings[&quot;Assertion Failed: %s&quot;] = &quot;Assertion Failed: %s&quot;;
+localizedStrings[&quot;Assertion with message: %s&quot;] = &quot;Assertion with message: %s&quot;;
+localizedStrings[&quot;Assertive&quot;] = &quot;Assertive&quot;;
+localizedStrings[&quot;Attach&quot;] = &quot;Attach&quot;;
+localizedStrings[&quot;Attribute&quot;] = &quot;Attribute&quot;;
+localizedStrings[&quot;Attributes&quot;] = &quot;Attributes&quot;;
+localizedStrings[&quot;Author Stylesheet&quot;] = &quot;Author Stylesheet&quot;;
+localizedStrings[&quot;Auto Increment&quot;] = &quot;Auto Increment&quot;;
+localizedStrings[&quot;Automatically continue after evaluating&quot;] = &quot;Automatically continue after evaluating&quot;;
+localizedStrings[&quot;Average Time&quot;] = &quot;Average Time&quot;;
+localizedStrings[&quot;Back (%s)&quot;] = &quot;Back (%s)&quot;;
+localizedStrings[&quot;Background&quot;] = &quot;Background&quot;;
+localizedStrings[&quot;Basis&quot;] = &quot;Basis&quot;;
+localizedStrings[&quot;Bezier&quot;] = &quot;Bezier&quot;;
+localizedStrings[&quot;Blend&quot;] = &quot;Blend&quot;;
+localizedStrings[&quot;Block Variables&quot;] = &quot;Block Variables&quot;;
+localizedStrings[&quot;Blur&quot;] = &quot;Blur&quot;;
+localizedStrings[&quot;Border&quot;] = &quot;Border&quot;;
+localizedStrings[&quot;Bottom&quot;] = &quot;Bottom&quot;;
+localizedStrings[&quot;Boundary&quot;] = &quot;Boundary&quot;;
+localizedStrings[&quot;Box Model&quot;] = &quot;Box Model&quot;;
+localizedStrings[&quot;Box Shadow&quot;] = &quot;Box Shadow&quot;;
+localizedStrings[&quot;Breakdown&quot;] = &quot;Breakdown&quot;;
+localizedStrings[&quot;Breakdown of each memory category at the end of the selected time range&quot;] = &quot;Breakdown of each memory category at the end of the selected time range&quot;;
+localizedStrings[&quot;Breakpoints&quot;] = &quot;Breakpoints&quot;;
+localizedStrings[&quot;Breakpoints are disabled.&quot;] = &quot;Breakpoints are disabled.&quot;;
+localizedStrings[&quot;Bubbling&quot;] = &quot;Bubbling&quot;;
+localizedStrings[&quot;Busy&quot;] = &quot;Busy&quot;;
+localizedStrings[&quot;CSP Hash&quot;] = &quot;CSP Hash&quot;;
+localizedStrings[&quot;Cached&quot;] = &quot;Cached&quot;;
+localizedStrings[&quot;Call Stack&quot;] = &quot;Call Stack&quot;;
+localizedStrings[&quot;Call Trees&quot;] = &quot;Call Trees&quot;;
+localizedStrings[&quot;Calls&quot;] = &quot;Calls&quot;;
+localizedStrings[&quot;Cancel Automatic Continue&quot;] = &quot;Cancel Automatic Continue&quot;;
+localizedStrings[&quot;Cancel comparison&quot;] = &quot;Cancel comparison&quot;;
+localizedStrings[&quot;Cap&quot;] = &quot;Cap&quot;;
+localizedStrings[&quot;Caps&quot;] = &quot;Caps&quot;;
+localizedStrings[&quot;Capturing&quot;] = &quot;Capturing&quot;;
+localizedStrings[&quot;Catch Variables&quot;] = &quot;Catch Variables&quot;;
+localizedStrings[&quot;Categories&quot;] = &quot;Categories&quot;;
+localizedStrings[&quot;Center X&quot;] = &quot;Center X&quot;;
+localizedStrings[&quot;Center Y&quot;] = &quot;Center Y&quot;;
+localizedStrings[&quot;Character Data&quot;] = &quot;Character Data&quot;;
+localizedStrings[&quot;Charge  %s  to Callers&quot;] = &quot;Charge  %s  to Callers&quot;;
+localizedStrings[&quot;Checked&quot;] = &quot;Checked&quot;;
+localizedStrings[&quot;Child Layers&quot;] = &quot;Child Layers&quot;;
+localizedStrings[&quot;Children&quot;] = &quot;Children&quot;;
+localizedStrings[&quot;Class Name&quot;] = &quot;Class Name&quot;;
+localizedStrings[&quot;Classes&quot;] = &quot;Classes&quot;;
+localizedStrings[&quot;Clear&quot;] = &quot;Clear&quot;;
+localizedStrings[&quot;Clear Log&quot;] = &quot;Clear Log&quot;;
+localizedStrings[&quot;Clear Log on Navigation&quot;] = &quot;Clear Log on Navigation&quot;;
+localizedStrings[&quot;Clear Network Items&quot;] = &quot;Clear Network Items&quot;;
+localizedStrings[&quot;Clear Timeline&quot;] = &quot;Clear Timeline&quot;;
+localizedStrings[&quot;Clear focus&quot;] = &quot;Clear focus&quot;;
+localizedStrings[&quot;Clear log (%s or %s)&quot;] = &quot;Clear log (%s or %s)&quot;;
+localizedStrings[&quot;Clear object store&quot;] = &quot;Clear object store&quot;;
+localizedStrings[&quot;Clear samples&quot;] = &quot;Clear samples&quot;;
+localizedStrings[&quot;Clear watch expressions&quot;] = &quot;Clear watch expressions&quot;;
+localizedStrings[&quot;Click Listener&quot;] = &quot;Click Listener&quot;;
+localizedStrings[&quot;Click to add a new rule.&quot;] = &quot;Click to add a new rule.&quot;;
+localizedStrings[&quot;Click to clear modified properties&quot;] = &quot;Click to clear modified properties&quot;;
+localizedStrings[&quot;Click to close this tab&quot;] = &quot;Click to close this tab&quot;;
+localizedStrings[&quot;Click to disable the selected rule&quot;] = &quot;Click to disable the selected rule&quot;;
+localizedStrings[&quot;Click to enable the selected rule&quot;] = &quot;Click to enable the selected rule&quot;;
+localizedStrings[&quot;Click to link property values&quot;] = &quot;Click to link property values&quot;;
+localizedStrings[&quot;Click to open a cubic-bezier editor.&quot;] = &quot;Click to open a cubic-bezier editor.&quot;;
+localizedStrings[&quot;Click to open a spring editor.&quot;] = &quot;Click to open a spring editor.&quot;;
+localizedStrings[&quot;Click to remove link&quot;] = &quot;Click to remove link&quot;;
+localizedStrings[&quot;Click to remove the selected item.&quot;] = &quot;Click to remove the selected item.&quot;;
+localizedStrings[&quot;Click to restart the animation&quot;] = &quot;Click to restart the animation&quot;;
+localizedStrings[&quot;Click to select a color. Shift-click to switch color formats.&quot;] = &quot;Click to select a color. Shift-click to switch color formats.&quot;;
+localizedStrings[&quot;Click to select a gradient.&quot;] = &quot;Click to select a gradient.&quot;;
+localizedStrings[&quot;Clickable&quot;] = &quot;Clickable&quot;;
+localizedStrings[&quot;Clip&quot;] = &quot;Clip&quot;;
+localizedStrings[&quot;Close&quot;] = &quot;Close&quot;;
+localizedStrings[&quot;Close %s timeline view&quot;] = &quot;Close %s timeline view&quot;;
+localizedStrings[&quot;Close Other Tabs&quot;] = &quot;Close Other Tabs&quot;;
+localizedStrings[&quot;Close Tab&quot;] = &quot;Close Tab&quot;;
+localizedStrings[&quot;Close resource view&quot;] = &quot;Close resource view&quot;;
+localizedStrings[&quot;Closed&quot;] = &quot;Closed&quot;;
+localizedStrings[&quot;Closure Variables&quot;] = &quot;Closure Variables&quot;;
+localizedStrings[&quot;Closure Variables (%s)&quot;] = &quot;Closure Variables (%s)&quot;;
+localizedStrings[&quot;Code&quot;] = &quot;Code&quot;;
+localizedStrings[&quot;Collapse columns&quot;] = &quot;Collapse columns&quot;;
+localizedStrings[&quot;Color&quot;] = &quot;Color&quot;;
+localizedStrings[&quot;Comment&quot;] = &quot;Comment&quot;;
+localizedStrings[&quot;Comment All Properties&quot;] = &quot;Comment All Properties&quot;;
+localizedStrings[&quot;Compare snapshots&quot;] = &quot;Compare snapshots&quot;;
+localizedStrings[&quot;Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording&quot;] = &quot;Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording&quot;;
+localizedStrings[&quot;Composite&quot;] = &quot;Composite&quot;;
+localizedStrings[&quot;Compressed&quot;] = &quot;Compressed&quot;;
+localizedStrings[&quot;Compression&quot;] = &quot;Compression&quot;;
+localizedStrings[&quot;Condition&quot;] = &quot;Condition&quot;;
+localizedStrings[&quot;Conditional expression&quot;] = &quot;Conditional expression&quot;;
+localizedStrings[&quot;Connection&quot;] = &quot;Connection&quot;;
+localizedStrings[&quot;Console&quot;] = &quot;Console&quot;;
+localizedStrings[&quot;Console Evaluation&quot;] = &quot;Console Evaluation&quot;;
+localizedStrings[&quot;Console Evaluation %d&quot;] = &quot;Console Evaluation %d&quot;;
+localizedStrings[&quot;Console Profile Recorded&quot;] = &quot;Console Profile Recorded&quot;;
+localizedStrings[&quot;Console errors, click to show the Console tab&quot;] = &quot;Console errors, click to show the Console tab&quot;;
+localizedStrings[&quot;Console logs, click to show the Console tab&quot;] = &quot;Console logs, click to show the Console tab&quot;;
+localizedStrings[&quot;Console warnings, click to show the Console tab&quot;] = &quot;Console warnings, click to show the Console tab&quot;;
+localizedStrings[&quot;Container Regions&quot;] = &quot;Container Regions&quot;;
+localizedStrings[&quot;Content&quot;] = &quot;Content&quot;;
+localizedStrings[&quot;Content Flow&quot;] = &quot;Content Flow&quot;;
+localizedStrings[&quot;Content Security Policy violation of directive: %s&quot;] = &quot;Content Security Policy violation of directive: %s&quot;;
+localizedStrings[&quot;Continue script execution (%s or %s)&quot;] = &quot;Continue script execution (%s or %s)&quot;;
+localizedStrings[&quot;Continue to Here&quot;] = &quot;Continue to Here&quot;;
+localizedStrings[&quot;Controls&quot;] = &quot;Controls&quot;;
+localizedStrings[&quot;Cookies&quot;] = &quot;Cookies&quot;;
+localizedStrings[&quot;Copy Link Address&quot;] = &quot;Copy Link Address&quot;;
+localizedStrings[&quot;Copy Path to Property&quot;] = &quot;Copy Path to Property&quot;;
+localizedStrings[&quot;Copy Row&quot;] = &quot;Copy Row&quot;;
+localizedStrings[&quot;Copy Rule&quot;] = &quot;Copy Rule&quot;;
+localizedStrings[&quot;Copy Selected&quot;] = &quot;Copy Selected&quot;;
+localizedStrings[&quot;Copy Table&quot;] = &quot;Copy Table&quot;;
+localizedStrings[&quot;Copy as HTML&quot;] = &quot;Copy as HTML&quot;;
+localizedStrings[&quot;Copy as cURL&quot;] = &quot;Copy as cURL&quot;;
+localizedStrings[&quot;Could not fetch properties. Object may no longer exist.&quot;] = &quot;Could not fetch properties. Object may no longer exist.&quot;;
+localizedStrings[&quot;Count&quot;] = &quot;Count&quot;;
+localizedStrings[&quot;Create %s Rule&quot;] = &quot;Create %s Rule&quot;;
+localizedStrings[&quot;Create a new tab&quot;] = &quot;Create a new tab&quot;;
+localizedStrings[&quot;Current&quot;] = &quot;Current&quot;;
+localizedStrings[&quot;Cursor&quot;] = &quot;Cursor&quot;;
+localizedStrings[&quot;DNS&quot;] = &quot;DNS&quot;;
+localizedStrings[&quot;DOM Content Loaded \u2014 %s&quot;] = &quot;DOM Content Loaded \u2014 %s&quot;;
+localizedStrings[&quot;Damping&quot;] = &quot;Damping&quot;;
+localizedStrings[&quot;Dash Array&quot;] = &quot;Dash Array&quot;;
+localizedStrings[&quot;Data&quot;] = &quot;Data&quot;;
+localizedStrings[&quot;Data returned from the database is too large.&quot;] = &quot;Data returned from the database is too large.&quot;;
+localizedStrings[&quot;Database&quot;] = &quot;Database&quot;;
+localizedStrings[&quot;Database no longer has expected version.&quot;] = &quot;Database no longer has expected version.&quot;;
+localizedStrings[&quot;Databases&quot;] = &quot;Databases&quot;;
+localizedStrings[&quot;Date&quot;] = &quot;Date&quot;;
+localizedStrings[&quot;Debug: &quot;] = &quot;Debug: &quot;;
+localizedStrings[&quot;Debugger&quot;] = &quot;Debugger&quot;;
+localizedStrings[&quot;Debugger Paused&quot;] = &quot;Debugger Paused&quot;;
+localizedStrings[&quot;Debugger Statement&quot;] = &quot;Debugger Statement&quot;;
+localizedStrings[&quot;Debugger is disabled during a Timeline recording.&quot;] = &quot;Debugger is disabled during a Timeline recording.&quot;;
+localizedStrings[&quot;Decoded&quot;] = &quot;Decoded&quot;;
+localizedStrings[&quot;Decoration&quot;] = &quot;Decoration&quot;;
+localizedStrings[&quot;Default&quot;] = &quot;Default&quot;;
+localizedStrings[&quot;Delay&quot;] = &quot;Delay&quot;;
+localizedStrings[&quot;Delete&quot;] = &quot;Delete&quot;;
+localizedStrings[&quot;Delete Breakpoint&quot;] = &quot;Delete Breakpoint&quot;;
+localizedStrings[&quot;Delete Breakpoints&quot;] = &quot;Delete Breakpoints&quot;;
+localizedStrings[&quot;Delete Node&quot;] = &quot;Delete Node&quot;;
+localizedStrings[&quot;Detach into separate window&quot;] = &quot;Detach into separate window&quot;;
+localizedStrings[&quot;Details&quot;] = &quot;Details&quot;;
+localizedStrings[&quot;Did you mean  %s ?\nClick to replace.&quot;] = &quot;Did you mean  %s ?\nClick to replace.&quot;;
+localizedStrings[&quot;Dimensions&quot;] = &quot;Dimensions&quot;;
+localizedStrings[&quot;Direction&quot;] = &quot;Direction&quot;;
+localizedStrings[&quot;Disable Breakpoint&quot;] = &quot;Disable Breakpoint&quot;;
+localizedStrings[&quot;Disable Breakpoints&quot;] = &quot;Disable Breakpoints&quot;;
+localizedStrings[&quot;Disable all breakpoints (%s)&quot;] = &quot;Disable all breakpoints (%s)&quot;;
+localizedStrings[&quot;Disable paint flashing&quot;] = &quot;Disable paint flashing&quot;;
+localizedStrings[&quot;Disabled&quot;] = &quot;Disabled&quot;;
+localizedStrings[&quot;Display&quot;] = &quot;Display&quot;;
+localizedStrings[&quot;Do not fade unexecuted code&quot;] = &quot;Do not fade unexecuted code&quot;;
+localizedStrings[&quot;Dock to bottom of window&quot;] = &quot;Dock to bottom of window&quot;;
+localizedStrings[&quot;Dock to right of window&quot;] = &quot;Dock to right of window&quot;;
+localizedStrings[&quot;Document&quot;] = &quot;Document&quot;;
+localizedStrings[&quot;Document Fragment&quot;] = &quot;Document Fragment&quot;;
+localizedStrings[&quot;Document Type&quot;] = &quot;Document Type&quot;;
+localizedStrings[&quot;Documents&quot;] = &quot;Documents&quot;;
+localizedStrings[&quot;Domain&quot;] = &quot;Domain&quot;;
+localizedStrings[&quot;Done&quot;] = &quot;Done&quot;;
+localizedStrings[&quot;Download Web Archive&quot;] = &quot;Download Web Archive&quot;;
+localizedStrings[&quot;Duplicate Selector&quot;] = &quot;Duplicate Selector&quot;;
+localizedStrings[&quot;Duplicate property  %s .\nClick to delete this property.&quot;] = &quot;Duplicate property  %s .\nClick to delete this property.&quot;;
+localizedStrings[&quot;Duration&quot;] = &quot;Duration&quot;;
+localizedStrings[&quot;Dynamically calculated for the parent element&quot;] = &quot;Dynamically calculated for the parent element&quot;;
+localizedStrings[&quot;Dynamically calculated for the selected element&quot;] = &quot;Dynamically calculated for the selected element&quot;;
+localizedStrings[&quot;Dynamically calculated for the selected element and did not match&quot;] = &quot;Dynamically calculated for the selected element and did not match&quot;;
+localizedStrings[&quot;Edit&quot;] = &quot;Edit&quot;;
+localizedStrings[&quot;Edit Attribute&quot;] = &quot;Edit Attribute&quot;;
+localizedStrings[&quot;Edit Breakpoint &amp;&quot;] = &quot;Edit Breakpoint &amp;&quot;;
+localizedStrings[&quot;Edit Text&quot;] = &quot;Edit Text&quot;;
+localizedStrings[&quot;Edit as HTML&quot;] = &quot;Edit as HTML&quot;;
+localizedStrings[&quot;Edit configuration&quot;] = &quot;Edit configuration&quot;;
+localizedStrings[&quot;Edit  %s &quot;] = &quot;Edit  %s &quot;;
+localizedStrings[&quot;Effects&quot;] = &quot;Effects&quot;;
+localizedStrings[&quot;Element&quot;] = &quot;Element&quot;;
+localizedStrings[&quot;Element clips compositing descendants&quot;] = &quot;Element clips compositing descendants&quot;;
+localizedStrings[&quot;Element has CSS blending applied and composited descendants&quot;] = &quot;Element has CSS blending applied and composited descendants&quot;;
+localizedStrings[&quot;Element has CSS filters applied&quot;] = &quot;Element has CSS filters applied&quot;;
+localizedStrings[&quot;Element has CSS filters applied and composited descendants&quot;] = &quot;Element has CSS filters applied and composited descendants&quot;;
+localizedStrings[&quot;Element has a 2D transform and composited descendants&quot;] = &quot;Element has a 2D transform and composited descendants&quot;;
+localizedStrings[&quot;Element has a 3D transform&quot;] = &quot;Element has a 3D transform&quot;;
+localizedStrings[&quot;Element has a reflection and composited descendants&quot;] = &quot;Element has a reflection and composited descendants&quot;;
+localizedStrings[&quot;Element has children with a negative z-index&quot;] = &quot;Element has children with a negative z-index&quot;;
+localizedStrings[&quot;Element has opacity applied and composited descendants&quot;] = &quot;Element has opacity applied and composited descendants&quot;;
+localizedStrings[&quot;Element has perspective applied&quot;] = &quot;Element has perspective applied&quot;;
+localizedStrings[&quot;Element has  -webkit-overflow-scrolling: touch  style&quot;] = &quot;Element has  -webkit-overflow-scrolling: touch  style&quot;;
+localizedStrings[&quot;Element has  backface-visibility: hidden  style&quot;] = &quot;Element has  backface-visibility: hidden  style&quot;;
+localizedStrings[&quot;Element has  blend-mode  style&quot;] = &quot;Element has  blend-mode  style&quot;;
+localizedStrings[&quot;Element has  position: fixed  style&quot;] = &quot;Element has  position: fixed  style&quot;;
+localizedStrings[&quot;Element has  position: sticky  style&quot;] = &quot;Element has  position: sticky  style&quot;;
+localizedStrings[&quot;Element has  transform-style: preserve-3d  style&quot;] = &quot;Element has  transform-style: preserve-3d  style&quot;;
+localizedStrings[&quot;Element has  will-change  style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter&quot;] = &quot;Element has  will-change  style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter&quot;;
+localizedStrings[&quot;Element is &lt;canvas&gt;&quot;] = &quot;Element is &lt;canvas&gt;&quot;;
+localizedStrings[&quot;Element is &lt;iframe&gt;&quot;] = &quot;Element is &lt;iframe&gt;&quot;;
+localizedStrings[&quot;Element is &lt;video&gt;&quot;] = &quot;Element is &lt;video&gt;&quot;;
+localizedStrings[&quot;Element is a plug-in&quot;] = &quot;Element is a plug-in&quot;;
+localizedStrings[&quot;Element is a stacking context and has composited descendants with CSS blending applied&quot;] = &quot;Element is a stacking context and has composited descendants with CSS blending applied&quot;;
+localizedStrings[&quot;Element is animated&quot;] = &quot;Element is animated&quot;;
+localizedStrings[&quot;Element is masked and composited descendants&quot;] = &quot;Element is masked and composited descendants&quot;;
+localizedStrings[&quot;Element is the root element&quot;] = &quot;Element is the root element&quot;;
+localizedStrings[&quot;Element may overlap another compositing element&quot;] = &quot;Element may overlap another compositing element&quot;;
+localizedStrings[&quot;Element overlaps other compositing element&quot;] = &quot;Element overlaps other compositing element&quot;;
+localizedStrings[&quot;Elements&quot;] = &quot;Elements&quot;;
+localizedStrings[&quot;Enable Breakpoint&quot;] = &quot;Enable Breakpoint&quot;;
+localizedStrings[&quot;Enable Breakpoints&quot;] = &quot;Enable Breakpoints&quot;;
+localizedStrings[&quot;Enable all breakpoints (%s)&quot;] = &quot;Enable all breakpoints (%s)&quot;;
+localizedStrings[&quot;Enable breakpoints.&quot;] = &quot;Enable breakpoints.&quot;;
+localizedStrings[&quot;Enable paint flashing&quot;] = &quot;Enable paint flashing&quot;;
+localizedStrings[&quot;Encoded&quot;] = &quot;Encoded&quot;;
+localizedStrings[&quot;Encoding&quot;] = &quot;Encoding&quot;;
+localizedStrings[&quot;Enter Class Name&quot;] = &quot;Enter Class Name&quot;;
+localizedStrings[&quot;Enter Tag&quot;] = &quot;Enter Tag&quot;;
+localizedStrings[&quot;Enter Value&quot;] = &quot;Enter Value&quot;;
+localizedStrings[&quot;Enter a Gradient&quot;] = &quot;Enter a Gradient&quot;;
+localizedStrings[&quot;Enter a URL&quot;] = &quot;Enter a URL&quot;;
+localizedStrings[&quot;Enter a name.&quot;] = &quot;Enter a name.&quot;;
+localizedStrings[&quot;Enter an array value&quot;] = &quot;Enter an array value&quot;;
+localizedStrings[&quot;Enter the name of a Keyframe&quot;] = &quot;Enter the name of a Keyframe&quot;;
+localizedStrings[&quot;Enter value&quot;] = &quot;Enter value&quot;;
+localizedStrings[&quot;Entire Recording&quot;] = &quot;Entire Recording&quot;;
+localizedStrings[&quot;Error: &quot;] = &quot;Error: &quot;;
+localizedStrings[&quot;Errors&quot;] = &quot;Errors&quot;;
+localizedStrings[&quot;Eval Code&quot;] = &quot;Eval Code&quot;;
+localizedStrings[&quot;Evaluate JavaScript&quot;] = &quot;Evaluate JavaScript&quot;;
+localizedStrings[&quot;Event Dispatched&quot;] = &quot;Event Dispatched&quot;;
+localizedStrings[&quot;Event Listeners&quot;] = &quot;Event Listeners&quot;;
+localizedStrings[&quot;Events&quot;] = &quot;Events&quot;;
+localizedStrings[&quot;Exception with thrown value: %s&quot;] = &quot;Exception with thrown value: %s&quot;;
+localizedStrings[&quot;Expand columns&quot;] = &quot;Expand columns&quot;;
+localizedStrings[&quot;Expanded&quot;] = &quot;Expanded&quot;;
+localizedStrings[&quot;Expires&quot;] = &quot;Expires&quot;;
+localizedStrings[&quot;Expression&quot;] = &quot;Expression&quot;;
+localizedStrings[&quot;Extension Scripts&quot;] = &quot;Extension Scripts&quot;;
+localizedStrings[&quot;Extra Scripts&quot;] = &quot;Extra Scripts&quot;;
+localizedStrings[&quot;Fade unexecuted code&quot;] = &quot;Fade unexecuted code&quot;;
+localizedStrings[&quot;Family&quot;] = &quot;Family&quot;;
+localizedStrings[&quot;Features&quot;] = &quot;Features&quot;;
+localizedStrings[&quot;File or Resource&quot;] = &quot;File or Resource&quot;;
+localizedStrings[&quot;Filename&quot;] = &quot;Filename&quot;;
+localizedStrings[&quot;Fill&quot;] = &quot;Fill&quot;;
+localizedStrings[&quot;Fill Mode&quot;] = &quot;Fill Mode&quot;;
+localizedStrings[&quot;Filter Console Log&quot;] = &quot;Filter Console Log&quot;;
+localizedStrings[&quot;Filter List&quot;] = &quot;Filter List&quot;;
+localizedStrings[&quot;Filter Records&quot;] = &quot;Filter Records&quot;;
+localizedStrings[&quot;Filter Resource List&quot;] = &quot;Filter Resource List&quot;;
+localizedStrings[&quot;Filter Search Results&quot;] = &quot;Filter Search Results&quot;;
+localizedStrings[&quot;Filter Storage List&quot;] = &quot;Filter Storage List&quot;;
+localizedStrings[&quot;Filter Styles&quot;] = &quot;Filter Styles&quot;;
+localizedStrings[&quot;Flexbox&quot;] = &quot;Flexbox&quot;;
+localizedStrings[&quot;Float&quot;] = &quot;Float&quot;;
+localizedStrings[&quot;Float and Clear&quot;] = &quot;Float and Clear&quot;;
+localizedStrings[&quot;Flows&quot;] = &quot;Flows&quot;;
+localizedStrings[&quot;Focus %s Rule&quot;] = &quot;Focus %s Rule&quot;;
+localizedStrings[&quot;Focus on Subtree&quot;] = &quot;Focus on Subtree&quot;;
+localizedStrings[&quot;Focused&quot;] = &quot;Focused&quot;;
+localizedStrings[&quot;Font&quot;] = &quot;Font&quot;;
+localizedStrings[&quot;Fonts&quot;] = &quot;Fonts&quot;;
+localizedStrings[&quot;Forced Layout&quot;] = &quot;Forced Layout&quot;;
+localizedStrings[&quot;Forced Pseudo-Classes&quot;] = &quot;Forced Pseudo-Classes&quot;;
+localizedStrings[&quot;Format: HSL&quot;] = &quot;Format: HSL&quot;;
+localizedStrings[&quot;Format: HSLA&quot;] = &quot;Format: HSLA&quot;;
+localizedStrings[&quot;Format: Hex&quot;] = &quot;Format: Hex&quot;;
+localizedStrings[&quot;Format: Hex with Alpha&quot;] = &quot;Format: Hex with Alpha&quot;;
+localizedStrings[&quot;Format: Keyword&quot;] = &quot;Format: Keyword&quot;;
+localizedStrings[&quot;Format: RGB&quot;] = &quot;Format: RGB&quot;;
+localizedStrings[&quot;Format: RGBA&quot;] = &quot;Format: RGBA&quot;;
+localizedStrings[&quot;Format: Short Hex&quot;] = &quot;Format: Short Hex&quot;;
+localizedStrings[&quot;Format: Short Hex with Alpha&quot;] = &quot;Format: Short Hex with Alpha&quot;;
+localizedStrings[&quot;Forward (%s)&quot;] = &quot;Forward (%s)&quot;;
+localizedStrings[&quot;Fragment&quot;] = &quot;Fragment&quot;;
+localizedStrings[&quot;Frame %d&quot;] = &quot;Frame %d&quot;;
+localizedStrings[&quot;Frame URL&quot;] = &quot;Frame URL&quot;;
+localizedStrings[&quot;Frames&quot;] = &quot;Frames&quot;;
+localizedStrings[&quot;Frames %d \u2013 %d&quot;] = &quot;Frames %d \u2013 %d&quot;;
+localizedStrings[&quot;Full Garbage Collection&quot;] = &quot;Full Garbage Collection&quot;;
+localizedStrings[&quot;Full URL&quot;] = &quot;Full URL&quot;;
+localizedStrings[&quot;Function&quot;] = &quot;Function&quot;;
+localizedStrings[&quot;Function Name Variable&quot;] = &quot;Function Name Variable&quot;;
+localizedStrings[&quot;Garbage Collection&quot;] = &quot;Garbage Collection&quot;;
+localizedStrings[&quot;Getter&quot;] = &quot;Getter&quot;;
+localizedStrings[&quot;Global Code&quot;] = &quot;Global Code&quot;;
+localizedStrings[&quot;Global Lexical Environment&quot;] = &quot;Global Lexical Environment&quot;;
+localizedStrings[&quot;Global Variables&quot;] = &quot;Global Variables&quot;;
+localizedStrings[&quot;Grammar&quot;] = &quot;Grammar&quot;;
+localizedStrings[&quot;Group&quot;] = &quot;Group&quot;;
+localizedStrings[&quot;Grow&quot;] = &quot;Grow&quot;;
+localizedStrings[&quot;HTML Attributes&quot;] = &quot;HTML Attributes&quot;;
+localizedStrings[&quot;HTTP&quot;] = &quot;HTTP&quot;;
+localizedStrings[&quot;Heap Snapshot Object (@%d)&quot;] = &quot;Heap Snapshot Object (@%d)&quot;;
+localizedStrings[&quot;Height&quot;] = &quot;Height&quot;;
+localizedStrings[&quot;Hide compositing borders&quot;] = &quot;Hide compositing borders&quot;;
+localizedStrings[&quot;Hide shadow DOM nodes&quot;] = &quot;Hide shadow DOM nodes&quot;;
+localizedStrings[&quot;Hide the details sidebar (%s)&quot;] = &quot;Hide the details sidebar (%s)&quot;;
+localizedStrings[&quot;Hide the navigation sidebar (%s)&quot;] = &quot;Hide the navigation sidebar (%s)&quot;;
+localizedStrings[&quot;Hide type information&quot;] = &quot;Hide type information&quot;;
+localizedStrings[&quot;Highest: %s&quot;] = &quot;Highest: %s&quot;;
+localizedStrings[&quot;Horizontal&quot;] = &quot;Horizontal&quot;;
+localizedStrings[&quot;Host&quot;] = &quot;Host&quot;;
+localizedStrings[&quot;Icon Only&quot;] = &quot;Icon Only&quot;;
+localizedStrings[&quot;Icon and Text (Horizontal)&quot;] = &quot;Icon and Text (Horizontal)&quot;;
+localizedStrings[&quot;Icon and Text (Vertical)&quot;] = &quot;Icon and Text (Vertical)&quot;;
+localizedStrings[&quot;Identity&quot;] = &quot;Identity&quot;;
+localizedStrings[&quot;Ignore&quot;] = &quot;Ignore&quot;;
+localizedStrings[&quot;Ignored&quot;] = &quot;Ignored&quot;;
+localizedStrings[&quot;Image&quot;] = &quot;Image&quot;;
+localizedStrings[&quot;Image Size&quot;] = &quot;Image Size&quot;;
+localizedStrings[&quot;Images&quot;] = &quot;Images&quot;;
+localizedStrings[&quot;Immediate Pause Requested&quot;] = &quot;Immediate Pause Requested&quot;;
+localizedStrings[&quot;Indent&quot;] = &quot;Indent&quot;;
+localizedStrings[&quot;Index&quot;] = &quot;Index&quot;;
+localizedStrings[&quot;Index Key \u2014 %s&quot;] = &quot;Index Key \u2014 %s&quot;;
+localizedStrings[&quot;Indexed Databases&quot;] = &quot;Indexed Databases&quot;;
+localizedStrings[&quot;Info: &quot;] = &quot;Info: &quot;;
+localizedStrings[&quot;Inherited From: &quot;] = &quot;Inherited From: &quot;;
+localizedStrings[&quot;Inherited from %s&quot;] = &quot;Inherited from %s&quot;;
+localizedStrings[&quot;Initial Velocity&quot;] = &quot;Initial Velocity&quot;;
+localizedStrings[&quot;Initiated&quot;] = &quot;Initiated&quot;;
+localizedStrings[&quot;Initiator&quot;] = &quot;Initiator&quot;;
+localizedStrings[&quot;Input: &quot;] = &quot;Input: &quot;;
+localizedStrings[&quot;Inset&quot;] = &quot;Inset&quot;;
+localizedStrings[&quot;Instances&quot;] = &quot;Instances&quot;;
+localizedStrings[&quot;Invalid&quot;] = &quot;Invalid&quot;;
+localizedStrings[&quot;Inverted&quot;] = &quot;Inverted&quot;;
+localizedStrings[&quot;Invoke getter&quot;] = &quot;Invoke getter&quot;;
+localizedStrings[&quot;Iterations&quot;] = &quot;Iterations&quot;;
+localizedStrings[&quot;JavaScript&quot;] = &quot;JavaScript&quot;;
+localizedStrings[&quot;JavaScript &amp; Events&quot;] = &quot;JavaScript &amp; Events&quot;;
+localizedStrings[&quot;JavaScript Allocations&quot;] = &quot;JavaScript Allocations&quot;;
+localizedStrings[&quot;Join&quot;] = &quot;Join&quot;;
+localizedStrings[&quot;Jump to Definition&quot;] = &quot;Jump to Definition&quot;;
+localizedStrings[&quot;Keep Log on Navigation&quot;] = &quot;Keep Log on Navigation&quot;;
+localizedStrings[&quot;Key&quot;] = &quot;Key&quot;;
+localizedStrings[&quot;Key Path&quot;] = &quot;Key Path&quot;;
+localizedStrings[&quot;Label&quot;] = &quot;Label&quot;;
+localizedStrings[&quot;Latency&quot;] = &quot;Latency&quot;;
+localizedStrings[&quot;Layer&quot;] = &quot;Layer&quot;;
+localizedStrings[&quot;Layer Count: %d&quot;] = &quot;Layer Count: %d&quot;;
+localizedStrings[&quot;Layer Info&quot;] = &quot;Layer Info&quot;;
+localizedStrings[&quot;Layers&quot;] = &quot;Layers&quot;;
+localizedStrings[&quot;Layout&quot;] = &quot;Layout&quot;;
+localizedStrings[&quot;Layout &amp; Rendering&quot;] = &quot;Layout &amp; Rendering&quot;;
+localizedStrings[&quot;Layout Invalidated&quot;] = &quot;Layout Invalidated&quot;;
+localizedStrings[&quot;Left&quot;] = &quot;Left&quot;;
+localizedStrings[&quot;Letter&quot;] = &quot;Letter&quot;;
+localizedStrings[&quot;Ligatures&quot;] = &quot;Ligatures&quot;;
+localizedStrings[&quot;Line %d&quot;] = &quot;Line %d&quot;;
+localizedStrings[&quot;Line %d:%d&quot;] = &quot;Line %d:%d&quot;;
+localizedStrings[&quot;Line Number&quot;] = &quot;Line Number&quot;;
+localizedStrings[&quot;Linear Gradient&quot;] = &quot;Linear Gradient&quot;;
+localizedStrings[&quot;List Styles&quot;] = &quot;List Styles&quot;;
+localizedStrings[&quot;Live&quot;] = &quot;Live&quot;;
+localizedStrings[&quot;Live Size&quot;] = &quot;Live Size&quot;;
+localizedStrings[&quot;Load \u2014 %s&quot;] = &quot;Load \u2014 %s&quot;;
+localizedStrings[&quot;Local File&quot;] = &quot;Local File&quot;;
+localizedStrings[&quot;Local Storage&quot;] = &quot;Local Storage&quot;;
+localizedStrings[&quot;Local Variables&quot;] = &quot;Local Variables&quot;;
+localizedStrings[&quot;Located at %s&quot;] = &quot;Located at %s&quot;;
+localizedStrings[&quot;Location&quot;] = &quot;Location&quot;;
+localizedStrings[&quot;Log Element&quot;] = &quot;Log Element&quot;;
+localizedStrings[&quot;Log Message&quot;] = &quot;Log Message&quot;;
+localizedStrings[&quot;Log Symbol&quot;] = &quot;Log Symbol&quot;;
+localizedStrings[&quot;Log Value&quot;] = &quot;Log Value&quot;;
+localizedStrings[&quot;Log: &quot;] = &quot;Log: &quot;;
+localizedStrings[&quot;Logs&quot;] = &quot;Logs&quot;;
+localizedStrings[&quot;Lowest: %s&quot;] = &quot;Lowest: %s&quot;;
+localizedStrings[&quot;MIME Type&quot;] = &quot;MIME Type&quot;;
+localizedStrings[&quot;Main Frame&quot;] = &quot;Main Frame&quot;;
+localizedStrings[&quot;Manifest URL&quot;] = &quot;Manifest URL&quot;;
+localizedStrings[&quot;Margin&quot;] = &quot;Margin&quot;;
+localizedStrings[&quot;Mass&quot;] = &quot;Mass&quot;;
+localizedStrings[&quot;Max&quot;] = &quot;Max&quot;;
+localizedStrings[&quot;Max Comparison&quot;] = &quot;Max Comparison&quot;;
+localizedStrings[&quot;Maximum&quot;] = &quot;Maximum&quot;;
+localizedStrings[&quot;Maximum Size: %s&quot;] = &quot;Maximum Size: %s&quot;;
+localizedStrings[&quot;Maximum maximum memory size in this recording&quot;] = &quot;Maximum maximum memory size in this recording&quot;;
+localizedStrings[&quot;Media: &quot;] = &quot;Media: &quot;;
+localizedStrings[&quot;Memory&quot;] = &quot;Memory&quot;;
+localizedStrings[&quot;Memory: %s&quot;] = &quot;Memory: %s&quot;;
+localizedStrings[&quot;Message&quot;] = &quot;Message&quot;;
+localizedStrings[&quot;Method&quot;] = &quot;Method&quot;;
+localizedStrings[&quot;Microtask Dispatched&quot;] = &quot;Microtask Dispatched&quot;;
+localizedStrings[&quot;Min&quot;] = &quot;Min&quot;;
+localizedStrings[&quot;Missing Dependencies:%s&quot;] = &quot;Missing Dependencies:%s&quot;;
+localizedStrings[&quot;Miter&quot;] = &quot;Miter&quot;;
+localizedStrings[&quot;Mixed&quot;] = &quot;Mixed&quot;;
+localizedStrings[&quot;Module Code&quot;] = &quot;Module Code&quot;;
+localizedStrings[&quot;Multi-Entry&quot;] = &quot;Multi-Entry&quot;;
+localizedStrings[&quot;Name&quot;] = &quot;Name&quot;;
+localizedStrings[&quot;Network&quot;] = &quot;Network&quot;;
+localizedStrings[&quot;Network Issue&quot;] = &quot;Network Issue&quot;;
+localizedStrings[&quot;Network Requests&quot;] = &quot;Network Requests&quot;;
+localizedStrings[&quot;New Rule&quot;] = &quot;New Rule&quot;;
+localizedStrings[&quot;New Tab&quot;] = &quot;New Tab&quot;;
+localizedStrings[&quot;No&quot;] = &quot;No&quot;;
+localizedStrings[&quot;No Accessibility Information&quot;] = &quot;No Accessibility Information&quot;;
+localizedStrings[&quot;No Application Cache information available&quot;] = &quot;No Application Cache information available&quot;;
+localizedStrings[&quot;No Attributes&quot;] = &quot;No Attributes&quot;;
+localizedStrings[&quot;No Box Model Information&quot;] = &quot;No Box Model Information&quot;;
+localizedStrings[&quot;No Call Frames&quot;] = &quot;No Call Frames&quot;;
+localizedStrings[&quot;No Chart Available&quot;] = &quot;No Chart Available&quot;;
+localizedStrings[&quot;No Child Layers&quot;] = &quot;No Child Layers&quot;;
+localizedStrings[&quot;No Entries.&quot;] = &quot;No Entries.&quot;;
+localizedStrings[&quot;No Event Listeners&quot;] = &quot;No Event Listeners&quot;;
+localizedStrings[&quot;No Filter Results&quot;] = &quot;No Filter Results&quot;;
+localizedStrings[&quot;No Layer Available&quot;] = &quot;No Layer Available&quot;;
+localizedStrings[&quot;No Parameters&quot;] = &quot;No Parameters&quot;;
+localizedStrings[&quot;No Properties&quot;] = &quot;No Properties&quot;;
+localizedStrings[&quot;No Properties \u2014 Click to Edit&quot;] = &quot;No Properties \u2014 Click to Edit&quot;;
+localizedStrings[&quot;No Properties.&quot;] = &quot;No Properties.&quot;;
+localizedStrings[&quot;No Query Parameters&quot;] = &quot;No Query Parameters&quot;;
+localizedStrings[&quot;No Request Headers&quot;] = &quot;No Request Headers&quot;;
+localizedStrings[&quot;No Response Headers&quot;] = &quot;No Response Headers&quot;;
+localizedStrings[&quot;No Results Found&quot;] = &quot;No Results Found&quot;;
+localizedStrings[&quot;No Search Results&quot;] = &quot;No Search Results&quot;;
+localizedStrings[&quot;No Watch Expressions&quot;] = &quot;No Watch Expressions&quot;;
+localizedStrings[&quot;No exact ARIA role match.&quot;] = &quot;No exact ARIA role match.&quot;;
+localizedStrings[&quot;No message&quot;] = &quot;No message&quot;;
+localizedStrings[&quot;No preview available&quot;] = &quot;No preview available&quot;;
+localizedStrings[&quot;No properties.&quot;] = &quot;No properties.&quot;;
+localizedStrings[&quot;Node&quot;] = &quot;Node&quot;;
+localizedStrings[&quot;Not found&quot;] = &quot;Not found&quot;;
+localizedStrings[&quot;Number&quot;] = &quot;Number&quot;;
+localizedStrings[&quot;Numeric&quot;] = &quot;Numeric&quot;;
+localizedStrings[&quot;Object Graph&quot;] = &quot;Object Graph&quot;;
+localizedStrings[&quot;Object Store&quot;] = &quot;Object Store&quot;;
+localizedStrings[&quot;Offset&quot;] = &quot;Offset&quot;;
+localizedStrings[&quot;Online&quot;] = &quot;Online&quot;;
+localizedStrings[&quot;Only show resources with issues&quot;] = &quot;Only show resources with issues&quot;;
+localizedStrings[&quot;Opacity&quot;] = &quot;Opacity&quot;;
+localizedStrings[&quot;Open&quot;] = &quot;Open&quot;;
+localizedStrings[&quot;Open in New Tab&quot;] = &quot;Open in New Tab&quot;;
+localizedStrings[&quot;Option-click to show all units&quot;] = &quot;Option-click to show all units&quot;;
+localizedStrings[&quot;Option-click to show all values&quot;] = &quot;Option-click to show all values&quot;;
+localizedStrings[&quot;Option-click to show source&quot;] = &quot;Option-click to show source&quot;;
+localizedStrings[&quot;Options&quot;] = &quot;Options&quot;;
+localizedStrings[&quot;Order&quot;] = &quot;Order&quot;;
+localizedStrings[&quot;Origin&quot;] = &quot;Origin&quot;;
+localizedStrings[&quot;Original&quot;] = &quot;Original&quot;;
+localizedStrings[&quot;Original formatting&quot;] = &quot;Original formatting&quot;;
+localizedStrings[&quot;Originally %s&quot;] = &quot;Originally %s&quot;;
+localizedStrings[&quot;Other&quot;] = &quot;Other&quot;;
+localizedStrings[&quot;Other Issue&quot;] = &quot;Other Issue&quot;;
+localizedStrings[&quot;Outline&quot;] = &quot;Outline&quot;;
+localizedStrings[&quot;Output: &quot;] = &quot;Output: &quot;;
+localizedStrings[&quot;Outset&quot;] = &quot;Outset&quot;;
+localizedStrings[&quot;Over 1 ms&quot;] = &quot;Over 1 ms&quot;;
+localizedStrings[&quot;Over 15 ms&quot;] = &quot;Over 15 ms&quot;;
+localizedStrings[&quot;Overflow&quot;] = &quot;Overflow&quot;;
+localizedStrings[&quot;Overview&quot;] = &quot;Overview&quot;;
+localizedStrings[&quot;Owns&quot;] = &quot;Owns&quot;;
+localizedStrings[&quot;Padding&quot;] = &quot;Padding&quot;;
+localizedStrings[&quot;Page&quot;] = &quot;Page&quot;;
+localizedStrings[&quot;Page Issue&quot;] = &quot;Page Issue&quot;;
+localizedStrings[&quot;Paint&quot;] = &quot;Paint&quot;;
+localizedStrings[&quot;Paints&quot;] = &quot;Paints&quot;;
+localizedStrings[&quot;Parent&quot;] = &quot;Parent&quot;;
+localizedStrings[&quot;Partial Garbage Collection&quot;] = &quot;Partial Garbage Collection&quot;;
+localizedStrings[&quot;Path&quot;] = &quot;Path&quot;;
+localizedStrings[&quot;Pause Playback&quot;] = &quot;Pause Playback&quot;;
+localizedStrings[&quot;Pause Reason&quot;] = &quot;Pause Reason&quot;;
+localizedStrings[&quot;Pause script execution (%s or %s)&quot;] = &quot;Pause script execution (%s or %s)&quot;;
+localizedStrings[&quot;Play Sound&quot;] = &quot;Play Sound&quot;;
+localizedStrings[&quot;Polite&quot;] = &quot;Polite&quot;;
+localizedStrings[&quot;Port&quot;] = &quot;Port&quot;;
+localizedStrings[&quot;Position&quot;] = &quot;Position&quot;;
+localizedStrings[&quot;Position X&quot;] = &quot;Position X&quot;;
+localizedStrings[&quot;Position Y&quot;] = &quot;Position Y&quot;;
+localizedStrings[&quot;Pressed&quot;] = &quot;Pressed&quot;;
+localizedStrings[&quot;Pretty print&quot;] = &quot;Pretty print&quot;;
+localizedStrings[&quot;Primary Key&quot;] = &quot;Primary Key&quot;;
+localizedStrings[&quot;Primary Key \u2014 %s&quot;] = &quot;Primary Key \u2014 %s&quot;;
+localizedStrings[&quot;Probe Expression&quot;] = &quot;Probe Expression&quot;;
+localizedStrings[&quot;Probe Sample Recorded&quot;] = &quot;Probe Sample Recorded&quot;;
+localizedStrings[&quot;Probes&quot;] = &quot;Probes&quot;;
+localizedStrings[&quot;Processing Instruction&quot;] = &quot;Processing Instruction&quot;;
+localizedStrings[&quot;Properties&quot;] = &quot;Properties&quot;;
+localizedStrings[&quot;Property&quot;] = &quot;Property&quot;;
+localizedStrings[&quot;Query Parameters&quot;] = &quot;Query Parameters&quot;;
+localizedStrings[&quot;Query String&quot;] = &quot;Query String&quot;;
+localizedStrings[&quot;Query returned no results.&quot;] = &quot;Query returned no results.&quot;;
+localizedStrings[&quot;Radial Gradient&quot;] = &quot;Radial Gradient&quot;;
+localizedStrings[&quot;Radius&quot;] = &quot;Radius&quot;;
+localizedStrings[&quot;Radius X&quot;] = &quot;Radius X&quot;;
+localizedStrings[&quot;Radius Y&quot;] = &quot;Radius Y&quot;;
+localizedStrings[&quot;Range Issue&quot;] = &quot;Range Issue&quot;;
+localizedStrings[&quot;Readonly&quot;] = &quot;Readonly&quot;;
+localizedStrings[&quot;Reasons for compositing:&quot;] = &quot;Reasons for compositing:&quot;;
+localizedStrings[&quot;Recording Timeline Data&quot;] = &quot;Recording Timeline Data&quot;;
+localizedStrings[&quot;Reference Issue&quot;] = &quot;Reference Issue&quot;;
+localizedStrings[&quot;Reflection&quot;] = &quot;Reflection&quot;;
+localizedStrings[&quot;Refresh&quot;] = &quot;Refresh&quot;;
+localizedStrings[&quot;Refresh watch expressions&quot;] = &quot;Refresh watch expressions&quot;;
+localizedStrings[&quot;Region Flow&quot;] = &quot;Region Flow&quot;;
+localizedStrings[&quot;Region announced in its entirety.&quot;] = &quot;Region announced in its entirety.&quot;;
+localizedStrings[&quot;Reload page (%s)\nReload ignoring cache (%s)&quot;] = &quot;Reload page (%s)\nReload ignoring cache (%s)&quot;;
+localizedStrings[&quot;Removals&quot;] = &quot;Removals&quot;;
+localizedStrings[&quot;Remove Watch Expression&quot;] = &quot;Remove Watch Expression&quot;;
+localizedStrings[&quot;Remove probe&quot;] = &quot;Remove probe&quot;;
+localizedStrings[&quot;Remove this breakpoint action&quot;] = &quot;Remove this breakpoint action&quot;;
+localizedStrings[&quot;Rendering Frames&quot;] = &quot;Rendering Frames&quot;;
+localizedStrings[&quot;Repeat&quot;] = &quot;Repeat&quot;;
+localizedStrings[&quot;Repeating Linear Gradient&quot;] = &quot;Repeating Linear Gradient&quot;;
+localizedStrings[&quot;Repeating Radial Gradient&quot;] = &quot;Repeating Radial Gradient&quot;;
+localizedStrings[&quot;Request&quot;] = &quot;Request&quot;;
+localizedStrings[&quot;Request &amp; Response&quot;] = &quot;Request &amp; Response&quot;;
+localizedStrings[&quot;Request Data&quot;] = &quot;Request Data&quot;;
+localizedStrings[&quot;Request Headers&quot;] = &quot;Request Headers&quot;;
+localizedStrings[&quot;Required&quot;] = &quot;Required&quot;;
+localizedStrings[&quot;Reset&quot;] = &quot;Reset&quot;;
+localizedStrings[&quot;Resource&quot;] = &quot;Resource&quot;;
+localizedStrings[&quot;Resource Type&quot;] = &quot;Resource Type&quot;;
+localizedStrings[&quot;Resource failed to load.&quot;] = &quot;Resource failed to load.&quot;;
+localizedStrings[&quot;Resource was loaded with the 'data' scheme.&quot;] = &quot;Resource was loaded with the 'data' scheme.&quot;;
+localizedStrings[&quot;Resource was served from the cache.&quot;] = &quot;Resource was served from the cache.&quot;;
+localizedStrings[&quot;Resources&quot;] = &quot;Resources&quot;;
+localizedStrings[&quot;Response&quot;] = &quot;Response&quot;;
+localizedStrings[&quot;Response Headers&quot;] = &quot;Response Headers&quot;;
+localizedStrings[&quot;Restart (%s)&quot;] = &quot;Restart (%s)&quot;;
+localizedStrings[&quot;Retained Size&quot;] = &quot;Retained Size&quot;;
+localizedStrings[&quot;Return type for anonymous function&quot;] = &quot;Return type for anonymous function&quot;;
+localizedStrings[&quot;Return type for function: %s&quot;] = &quot;Return type for function: %s&quot;;
+localizedStrings[&quot;Reveal in DOM Tree&quot;] = &quot;Reveal in DOM Tree&quot;;
+localizedStrings[&quot;Reveal in Debugger Tab&quot;] = &quot;Reveal in Debugger Tab&quot;;
+localizedStrings[&quot;Reveal in Original Resource&quot;] = &quot;Reveal in Original Resource&quot;;
+localizedStrings[&quot;Reveal in Resources Tab&quot;] = &quot;Reveal in Resources Tab&quot;;
+localizedStrings[&quot;Right&quot;] = &quot;Right&quot;;
+localizedStrings[&quot;Role&quot;] = &quot;Role&quot;;
+localizedStrings[&quot;Rule&quot;] = &quot;Rule&quot;;
+localizedStrings[&quot;Samples&quot;] = &quot;Samples&quot;;
+localizedStrings[&quot;Save File&quot;] = &quot;Save File&quot;;
+localizedStrings[&quot;Save configuration&quot;] = &quot;Save configuration&quot;;
+localizedStrings[&quot;Scheme&quot;] = &quot;Scheme&quot;;
+localizedStrings[&quot;Scope&quot;] = &quot;Scope&quot;;
+localizedStrings[&quot;Scope Chain&quot;] = &quot;Scope Chain&quot;;
+localizedStrings[&quot;Script&quot;] = &quot;Script&quot;;
+localizedStrings[&quot;Script Element %d&quot;] = &quot;Script Element %d&quot;;
+localizedStrings[&quot;Script Evaluated&quot;] = &quot;Script Evaluated&quot;;
+localizedStrings[&quot;Scripts&quot;] = &quot;Scripts&quot;;
+localizedStrings[&quot;Scroll Into View&quot;] = &quot;Scroll Into View&quot;;
+localizedStrings[&quot;Search&quot;] = &quot;Search&quot;;
+localizedStrings[&quot;Search Resource Content&quot;] = &quot;Search Resource Content&quot;;
+localizedStrings[&quot;Secure&quot;] = &quot;Secure&quot;;
+localizedStrings[&quot;Security Issue&quot;] = &quot;Security Issue&quot;;
+localizedStrings[&quot;Security Origin&quot;] = &quot;Security Origin&quot;;
+localizedStrings[&quot;Select %s Rule&quot;] = &quot;Select %s Rule&quot;;
+localizedStrings[&quot;Select baseline snapshot&quot;] = &quot;Select baseline snapshot&quot;;
+localizedStrings[&quot;Select comparison snapshot&quot;] = &quot;Select comparison snapshot&quot;;
+localizedStrings[&quot;Selected&quot;] = &quot;Selected&quot;;
+localizedStrings[&quot;Selected Element&quot;] = &quot;Selected Element&quot;;
+localizedStrings[&quot;Selected Item&quot;] = &quot;Selected Item&quot;;
+localizedStrings[&quot;Selected Items&quot;] = &quot;Selected Items&quot;;
+localizedStrings[&quot;Selected Symbol&quot;] = &quot;Selected Symbol&quot;;
+localizedStrings[&quot;Selected Value&quot;] = &quot;Selected Value&quot;;
+localizedStrings[&quot;Self&quot;] = &quot;Self&quot;;
+localizedStrings[&quot;Self Size&quot;] = &quot;Self Size&quot;;
+localizedStrings[&quot;Self Time&quot;] = &quot;Self Time&quot;;
+localizedStrings[&quot;Semantic Issue&quot;] = &quot;Semantic Issue&quot;;
+localizedStrings[&quot;Session&quot;] = &quot;Session&quot;;
+localizedStrings[&quot;Session Storage&quot;] = &quot;Session Storage&quot;;
+localizedStrings[&quot;Set to Automatically Continue&quot;] = &quot;Set to Automatically Continue&quot;;
+localizedStrings[&quot;Setter&quot;] = &quot;Setter&quot;;
+localizedStrings[&quot;Settings&quot;] = &quot;Settings&quot;;
+localizedStrings[&quot;Shadow&quot;] = &quot;Shadow&quot;;
+localizedStrings[&quot;Shadow Content&quot;] = &quot;Shadow Content&quot;;
+localizedStrings[&quot;Shadow Content (%s)&quot;] = &quot;Shadow Content (%s)&quot;;
+localizedStrings[&quot;Shared Focus&quot;] = &quot;Shared Focus&quot;;
+localizedStrings[&quot;Shortest property path to %s&quot;] = &quot;Shortest property path to %s&quot;;
+localizedStrings[&quot;Show %d More&quot;] = &quot;Show %d More&quot;;
+localizedStrings[&quot;Show All&quot;] = &quot;Show All&quot;;
+localizedStrings[&quot;Show All Nodes (%d More)&quot;] = &quot;Show All Nodes (%d More)&quot;;
+localizedStrings[&quot;Show Remaining (%d)&quot;] = &quot;Show Remaining (%d)&quot;;
+localizedStrings[&quot;Show Source&quot;] = &quot;Show Source&quot;;
+localizedStrings[&quot;Show all resources&quot;] = &quot;Show all resources&quot;;
+localizedStrings[&quot;Show compositing borders&quot;] = &quot;Show compositing borders&quot;;
+localizedStrings[&quot;Show console tab&quot;] = &quot;Show console tab&quot;;
+localizedStrings[&quot;Show shadow DOM nodes&quot;] = &quot;Show shadow DOM nodes&quot;;
+localizedStrings[&quot;Show the details sidebar (%s)&quot;] = &quot;Show the details sidebar (%s)&quot;;
+localizedStrings[&quot;Show the navigation sidebar (%s)&quot;] = &quot;Show the navigation sidebar (%s)&quot;;
+localizedStrings[&quot;Show type information&quot;] = &quot;Show type information&quot;;
+localizedStrings[&quot;Shrink&quot;] = &quot;Shrink&quot;;
+localizedStrings[&quot;Size&quot;] = &quot;Size&quot;;
+localizedStrings[&quot;Size of the current object plus the size of all objects it keeps alive.&quot;] = &quot;Size of the current object plus the size of all objects it keeps alive.&quot;;
+localizedStrings[&quot;Sizing&quot;] = &quot;Sizing&quot;;
+localizedStrings[&quot;Slice&quot;] = &quot;Slice&quot;;
+localizedStrings[&quot;Small Icons&quot;] = &quot;Small Icons&quot;;
+localizedStrings[&quot;Snapshot %d&quot;] = &quot;Snapshot %d&quot;;
+localizedStrings[&quot;Snapshot %d \u2014 %s&quot;] = &quot;Snapshot %d \u2014 %s&quot;;
+localizedStrings[&quot;Snapshot Comparison (%d and %d)&quot;] = &quot;Snapshot Comparison (%d and %d)&quot;;
+localizedStrings[&quot;Snapshot List&quot;] = &quot;Snapshot List&quot;;
+localizedStrings[&quot;Socket&quot;] = &quot;Socket&quot;;
+localizedStrings[&quot;Sockets&quot;] = &quot;Sockets&quot;;
+localizedStrings[&quot;Sort Ascending&quot;] = &quot;Sort Ascending&quot;;
+localizedStrings[&quot;Sort Descending&quot;] = &quot;Sort Descending&quot;;
+localizedStrings[&quot;Sources&quot;] = &quot;Sources&quot;;
+localizedStrings[&quot;Spacing&quot;] = &quot;Spacing&quot;;
+localizedStrings[&quot;Specificity: (%d, %d, %d)&quot;] = &quot;Specificity: (%d, %d, %d)&quot;;
+localizedStrings[&quot;Specificity: No value for selected element&quot;] = &quot;Specificity: No value for selected element&quot;;
+localizedStrings[&quot;Spelling&quot;] = &quot;Spelling&quot;;
+localizedStrings[&quot;Spread&quot;] = &quot;Spread&quot;;
+localizedStrings[&quot;Spring&quot;] = &quot;Spring&quot;;
+localizedStrings[&quot;Stalled&quot;] = &quot;Stalled&quot;;
+localizedStrings[&quot;Start Playback&quot;] = &quot;Start Playback&quot;;
+localizedStrings[&quot;Start Recording&quot;] = &quot;Start Recording&quot;;
+localizedStrings[&quot;Start Time&quot;] = &quot;Start Time&quot;;
+localizedStrings[&quot;Start element selection (%s)&quot;] = &quot;Start element selection (%s)&quot;;
+localizedStrings[&quot;Start recording (%s)\nCreate new recording (%s)&quot;] = &quot;Start recording (%s)\nCreate new recording (%s)&quot;;
+localizedStrings[&quot;State&quot;] = &quot;State&quot;;
+localizedStrings[&quot;Status&quot;] = &quot;Status&quot;;
+localizedStrings[&quot;Step&quot;] = &quot;Step&quot;;
+localizedStrings[&quot;Step into (%s or %s)&quot;] = &quot;Step into (%s or %s)&quot;;
+localizedStrings[&quot;Step out (%s or %s)&quot;] = &quot;Step out (%s or %s)&quot;;
+localizedStrings[&quot;Step over (%s or %s)&quot;] = &quot;Step over (%s or %s)&quot;;
+localizedStrings[&quot;Stiffness&quot;] = &quot;Stiffness&quot;;
+localizedStrings[&quot;Stop Recording&quot;] = &quot;Stop Recording&quot;;
+localizedStrings[&quot;Stop element selection (%s)&quot;] = &quot;Stop element selection (%s)&quot;;
+localizedStrings[&quot;Stop recording (%s)&quot;] = &quot;Stop recording (%s)&quot;;
+localizedStrings[&quot;Stop recording.&quot;] = &quot;Stop recording.&quot;;
+localizedStrings[&quot;Storage&quot;] = &quot;Storage&quot;;
+localizedStrings[&quot;Stroke&quot;] = &quot;Stroke&quot;;
+localizedStrings[&quot;Style&quot;] = &quot;Style&quot;;
+localizedStrings[&quot;Style Attribute&quot;] = &quot;Style Attribute&quot;;
+localizedStrings[&quot;Style Rules&quot;] = &quot;Style Rules&quot;;
+localizedStrings[&quot;Styles&quot;] = &quot;Styles&quot;;
+localizedStrings[&quot;Styles Invalidated&quot;] = &quot;Styles Invalidated&quot;;
+localizedStrings[&quot;Styles Recalculated&quot;] = &quot;Styles Recalculated&quot;;
+localizedStrings[&quot;Styles \u2014 Computed&quot;] = &quot;Styles \u2014 Computed&quot;;
+localizedStrings[&quot;Styles \u2014 Rules&quot;] = &quot;Styles \u2014 Rules&quot;;
+localizedStrings[&quot;Styles \u2014 Visual&quot;] = &quot;Styles \u2014 Visual&quot;;
+localizedStrings[&quot;Stylesheet&quot;] = &quot;Stylesheet&quot;;
+localizedStrings[&quot;Stylesheets&quot;] = &quot;Stylesheets&quot;;
+localizedStrings[&quot;Take snapshot&quot;] = &quot;Take snapshot&quot;;
+localizedStrings[&quot;Template Content&quot;] = &quot;Template Content&quot;;
+localizedStrings[&quot;Text&quot;] = &quot;Text&quot;;
+localizedStrings[&quot;Text Node&quot;] = &quot;Text Node&quot;;
+localizedStrings[&quot;Text Only&quot;] = &quot;Text Only&quot;;
+localizedStrings[&quot;The property  %s  is not supported.&quot;] = &quot;The property  %s  is not supported.&quot;;
+localizedStrings[&quot;The selector  %s  is invalid.\nClick to revert to the previous selector.&quot;] = &quot;The selector  %s  is invalid.\nClick to revert to the previous selector.&quot;;
+localizedStrings[&quot;The value  %s  is not supported for this property.&quot;] = &quot;The value  %s  is not supported for this property.&quot;;
+localizedStrings[&quot;The value  %s  is not supported for this property.\nClick to delete and open autocomplete.&quot;] = &quot;The value  %s  is not supported for this property.\nClick to delete and open autocomplete.&quot;;
+localizedStrings[&quot;The value  %s  needs units.\nClick to add  px  to the value.&quot;] = &quot;The value  %s  needs units.\nClick to add  px  to the value.&quot;;
+localizedStrings[&quot;The  %s \ntable is empty.&quot;] = &quot;The  %s \ntable is empty.&quot;;
+localizedStrings[&quot;The  webkit  prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;] = &quot;The  webkit  prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;;
+localizedStrings[&quot;The  webkit  prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;] = &quot;The  webkit  prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;;
+localizedStrings[&quot;This Element&quot;] = &quot;This Element&quot;;
+localizedStrings[&quot;This object is a root&quot;] = &quot;This object is a root&quot;;
+localizedStrings[&quot;This object is referenced by internal objects&quot;] = &quot;This object is referenced by internal objects&quot;;
+localizedStrings[&quot;This property needs a value.\nClick to open autocomplete.&quot;] = &quot;This property needs a value.\nClick to open autocomplete.&quot;;
+localizedStrings[&quot;Time&quot;] = &quot;Time&quot;;
+localizedStrings[&quot;Time until the load event fired, click to show the Network Requests timeline&quot;] = &quot;Time until the load event fired, click to show the Network Requests timeline&quot;;
+localizedStrings[&quot;Timeline&quot;] = &quot;Timeline&quot;;
+localizedStrings[&quot;Timeline Recording %d&quot;] = &quot;Timeline Recording %d&quot;;
+localizedStrings[&quot;Timelines&quot;] = &quot;Timelines&quot;;
+localizedStrings[&quot;Timer %s Fired&quot;] = &quot;Timer %s Fired&quot;;
+localizedStrings[&quot;Timer %s Installed&quot;] = &quot;Timer %s Installed&quot;;
+localizedStrings[&quot;Timer %s Removed&quot;] = &quot;Timer %s Removed&quot;;
+localizedStrings[&quot;Timer Fired&quot;] = &quot;Timer Fired&quot;;
+localizedStrings[&quot;Timer Installed&quot;] = &quot;Timer Installed&quot;;
+localizedStrings[&quot;Timer Removed&quot;] = &quot;Timer Removed&quot;;
+localizedStrings[&quot;Timestamp \u2014 %s&quot;] = &quot;Timestamp \u2014 %s&quot;;
+localizedStrings[&quot;Timing&quot;] = &quot;Timing&quot;;
+localizedStrings[&quot;Toggle Classes&quot;] = &quot;Toggle Classes&quot;;
+localizedStrings[&quot;Top&quot;] = &quot;Top&quot;;
+localizedStrings[&quot;Top Functions&quot;] = &quot;Top Functions&quot;;
+localizedStrings[&quot;Total Time&quot;] = &quot;Total Time&quot;;
+localizedStrings[&quot;Total memory size at the end of the selected time range&quot;] = &quot;Total memory size at the end of the selected time range&quot;;
+localizedStrings[&quot;Total number of resources, click to show the Resources tab&quot;] = &quot;Total number of resources, click to show the Resources tab&quot;;
+localizedStrings[&quot;Total size of all resources, click to show the Network Requests timeline&quot;] = &quot;Total size of all resources, click to show the Network Requests timeline&quot;;
+localizedStrings[&quot;Total time&quot;] = &quot;Total time&quot;;
+localizedStrings[&quot;Trace&quot;] = &quot;Trace&quot;;
+localizedStrings[&quot;Trace: %s&quot;] = &quot;Trace: %s&quot;;
+localizedStrings[&quot;Transferred&quot;] = &quot;Transferred&quot;;
+localizedStrings[&quot;Transform&quot;] = &quot;Transform&quot;;
+localizedStrings[&quot;Transition&quot;] = &quot;Transition&quot;;
+localizedStrings[&quot;Triggered Breakpoint&quot;] = &quot;Triggered Breakpoint&quot;;
+localizedStrings[&quot;True&quot;] = &quot;True&quot;;
+localizedStrings[&quot;Type&quot;] = &quot;Type&quot;;
+localizedStrings[&quot;Type Issue&quot;] = &quot;Type Issue&quot;;
+localizedStrings[&quot;Type information for variable: %s&quot;] = &quot;Type information for variable: %s&quot;;
+localizedStrings[&quot;Unable to determine path to property from root&quot;] = &quot;Unable to determine path to property from root&quot;;
+localizedStrings[&quot;Unchanged&quot;] = &quot;Unchanged&quot;;
+localizedStrings[&quot;Uncomment All Properties&quot;] = &quot;Uncomment All Properties&quot;;
+localizedStrings[&quot;Unique&quot;] = &quot;Unique&quot;;
+localizedStrings[&quot;Unknown node&quot;] = &quot;Unknown node&quot;;
+localizedStrings[&quot;Untitled&quot;] = &quot;Untitled&quot;;
+localizedStrings[&quot;User Agent&quot;] = &quot;User Agent&quot;;
+localizedStrings[&quot;User Agent Stylesheet&quot;] = &quot;User Agent Stylesheet&quot;;
+localizedStrings[&quot;User Stylesheet&quot;] = &quot;User Stylesheet&quot;;
+localizedStrings[&quot;Using Keyword Value&quot;] = &quot;Using Keyword Value&quot;;
+localizedStrings[&quot;Using the previous selector  %s .&quot;] = &quot;Using the previous selector  %s .&quot;;
+localizedStrings[&quot;Value&quot;] = &quot;Value&quot;;
+localizedStrings[&quot;Variables&quot;] = &quot;Variables&quot;;
+localizedStrings[&quot;Variants&quot;] = &quot;Variants&quot;;
+localizedStrings[&quot;Version&quot;] = &quot;Version&quot;;
+localizedStrings[&quot;Vertical&quot;] = &quot;Vertical&quot;;
+localizedStrings[&quot;Visibility&quot;] = &quot;Visibility&quot;;
+localizedStrings[&quot;Warning: &quot;] = &quot;Warning: &quot;;
+localizedStrings[&quot;Warnings&quot;] = &quot;Warnings&quot;;
+localizedStrings[&quot;Watch Expressions&quot;] = &quot;Watch Expressions&quot;;
+localizedStrings[&quot;Web Inspector&quot;] = &quot;Web Inspector&quot;;
+localizedStrings[&quot;Weight&quot;] = &quot;Weight&quot;;
+localizedStrings[&quot;Whitespace&quot;] = &quot;Whitespace&quot;;
+localizedStrings[&quot;Width&quot;] = &quot;Width&quot;;
+localizedStrings[&quot;With Object Properties&quot;] = &quot;With Object Properties&quot;;
+localizedStrings[&quot;Word&quot;] = &quot;Word&quot;;
+localizedStrings[&quot;Working Copy&quot;] = &quot;Working Copy&quot;;
+localizedStrings[&quot;Wrap&quot;] = &quot;Wrap&quot;;
+localizedStrings[&quot;X&quot;] = &quot;X&quot;;
+localizedStrings[&quot;X1&quot;] = &quot;X1&quot;;
+localizedStrings[&quot;X2&quot;] = &quot;X2&quot;;
+localizedStrings[&quot;XHR&quot;] = &quot;XHR&quot;;
+localizedStrings[&quot;XHRs&quot;] = &quot;XHRs&quot;;
+localizedStrings[&quot;Y&quot;] = &quot;Y&quot;;
+localizedStrings[&quot;Y1&quot;] = &quot;Y1&quot;;
+localizedStrings[&quot;Y2&quot;] = &quot;Y2&quot;;
+localizedStrings[&quot;Yes&quot;] = &quot;Yes&quot;;
+localizedStrings[&quot;Z-Index&quot;] = &quot;Z-Index&quot;;
+localizedStrings[&quot;key&quot;] = &quot;key&quot;;
+localizedStrings[&quot;line &quot;] = &quot;line &quot;;
+localizedStrings[&quot;originally %s&quot;] = &quot;originally %s&quot;;
+localizedStrings[&quot;time before stopping&quot;] = &quot;time before stopping&quot;;
+localizedStrings[&quot;times before stopping&quot;] = &quot;times before stopping&quot;;
+localizedStrings[&quot;value&quot;] = &quot;value&quot;;
+localizedStrings[&quot; %s  Profile Recorded&quot;] = &quot; %s  Profile Recorded&quot;;
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceBaseMainjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Main.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Base/Main.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Main.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -162,10 +162,12 @@
</span><span class="cx">     this.showJavaScriptTypeInformationSetting = new WebInspector.Setting(&quot;show-javascript-type-information&quot;, false);
</span><span class="cx">     if (this.showJavaScriptTypeInformationSetting.value &amp;&amp; window.RuntimeAgent &amp;&amp; RuntimeAgent.enableTypeProfiler) {
</span><span class="cx">         RuntimeAgent.enableTypeProfiler();
</span><del>-        if (RuntimeAgent.enableControlFlowProfiler)
-            RuntimeAgent.enableControlFlowProfiler();
</del><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    this.enableControlFlowProfilerSetting = new WebInspector.Setting(&quot;enable-control-flow-profiler&quot;, false);
+    if (this.enableControlFlowProfilerSetting.value &amp;&amp; window.RuntimeAgent &amp;&amp; RuntimeAgent.enableControlFlowProfiler)
+        RuntimeAgent.enableControlFlowProfiler();
+
</ins><span class="cx">     // COMPATIBILITY (iOS 8): Page.setShowPaintRects did not exist.
</span><span class="cx">     this.showPaintRectsSetting = new WebInspector.Setting(&quot;show-paint-rects&quot;, false);
</span><span class="cx">     if (this.showPaintRectsSetting.value &amp;&amp; window.PageAgent &amp;&amp; PageAgent.setShowPaintRects)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScriptContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -63,8 +63,14 @@
</span><span class="cx">         this._showTypesButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;show-types&quot;, toolTipTypes, activatedToolTipTypes, &quot;Images/NavigationItemTypes.svg&quot;, 13, 14);
</span><span class="cx">         this._showTypesButtonNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._toggleTypeAnnotations, this);
</span><span class="cx">         this._showTypesButtonNavigationItem.enabled = false;
</span><ins>+        WebInspector.showJavaScriptTypeInformationSetting.addEventListener(WebInspector.Setting.Event.Changed, this._showJavaScriptTypeInformationSettingChanged, this);
</ins><span class="cx"> 
</span><del>-        WebInspector.showJavaScriptTypeInformationSetting.addEventListener(WebInspector.Setting.Event.Changed, this._showJavaScriptTypeInformationSettingChanged, this);
</del><ins>+        let toolTipCodeCoverage = WebInspector.UIString(&quot;Fade unexecuted code&quot;);
+        let activatedToolTipCodeCoverage = WebInspector.UIString(&quot;Do not fade unexecuted code&quot;);
+        this._codeCoverageButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;code-coverage&quot;, toolTipCodeCoverage, activatedToolTipCodeCoverage, &quot;Images/NavigationItemCodeCoverage.svg&quot;, 13, 14);
+        this._codeCoverageButtonNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._toggleUnexecutedCodeHighlights, this);
+        this._codeCoverageButtonNavigationItem.enabled = false;
+        WebInspector.enableControlFlowProfilerSetting.addEventListener(WebInspector.Setting.Event.Changed, this._enableControlFlowProfilerSettingChanged, this);
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Public
</span><span class="lines">@@ -71,7 +77,7 @@
</span><span class="cx"> 
</span><span class="cx">     get navigationItems()
</span><span class="cx">     {
</span><del>-        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem];
</del><ins>+        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem, this._codeCoverageButtonNavigationItem];
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     get script()
</span><span class="lines">@@ -202,8 +208,12 @@
</span><span class="cx">     _contentDidPopulate(event)
</span><span class="cx">     {
</span><span class="cx">         this._prettyPrintButtonNavigationItem.enabled = this._textEditor.canBeFormatted();
</span><ins>+
</ins><span class="cx">         this._showTypesButtonNavigationItem.enabled = this._textEditor.canShowTypeAnnotations();
</span><span class="cx">         this._showTypesButtonNavigationItem.activated = WebInspector.showJavaScriptTypeInformationSetting.value;
</span><ins>+
+        this._codeCoverageButtonNavigationItem.enabled = this._textEditor.canShowCoverageHints();
+        this._codeCoverageButtonNavigationItem.activated = WebInspector.enableControlFlowProfilerSetting.value;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     _togglePrettyPrint(event)
</span><span class="lines">@@ -214,14 +224,30 @@
</span><span class="cx"> 
</span><span class="cx">     _toggleTypeAnnotations(event)
</span><span class="cx">     {
</span><del>-        this._textEditor.toggleTypeAnnotations();
</del><ins>+        this._showTypesButtonNavigationItem.enabled = false;
+        this._textEditor.toggleTypeAnnotations().then(() =&gt; {
+            this._showTypesButtonNavigationItem.enabled = true;
+        })
</ins><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    _toggleUnexecutedCodeHighlights(event)
+    {
+        this._codeCoverageButtonNavigationItem.enabled = false;
+        this._textEditor.toggleUnexecutedCodeHighlights().then(() =&gt; {
+            this._codeCoverageButtonNavigationItem.enabled = true;
+        });
+    }
+
</ins><span class="cx">     _showJavaScriptTypeInformationSettingChanged(event)
</span><span class="cx">     {
</span><span class="cx">         this._showTypesButtonNavigationItem.activated = WebInspector.showJavaScriptTypeInformationSetting.value;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    _enableControlFlowProfilerSettingChanged(event)
+    {
+        this._codeCoverageButtonNavigationItem.activated = WebInspector.enableControlFlowProfilerSetting.value;
+    }
+
</ins><span class="cx">     _textEditorFormattingDidChange(event)
</span><span class="cx">     {
</span><span class="cx">         this._prettyPrintButtonNavigationItem.activated = this._textEditor.formatted;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsSourceCodeTextEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -101,14 +101,22 @@
</span><span class="cx">         if (WebInspector.showJavaScriptTypeInformationSetting.value) {
</span><span class="cx">             if (this._typeTokenAnnotator)
</span><span class="cx">                 this._typeTokenAnnotator.resume();
</span><del>-            if (this._basicBlockAnnotator)
-                this._basicBlockAnnotator.resume();
-            if (!this._typeTokenScrollHandler &amp;&amp; (this._typeTokenAnnotator || this._basicBlockAnnotator))
</del><ins>+            if (!this._typeTokenScrollHandler &amp;&amp; this._typeTokenAnnotator)
</ins><span class="cx">                 this._enableScrollEventsForTypeTokenAnnotator();
</span><span class="cx">         } else {
</span><del>-            if (this._typeTokenAnnotator || this._basicBlockAnnotator)
</del><ins>+            if (this._typeTokenAnnotator)
</ins><span class="cx">                 this._setTypeTokenAnnotatorEnabledState(false);
</span><span class="cx">         }
</span><ins>+
+        if (WebInspector.enableControlFlowProfilerSetting.value) {
+            if (this._basicBlockAnnotator)
+                this._basicBlockAnnotator.resume();
+
+            if (!this._controlFlowScrollHandler &amp;&amp; this._basicBlockAnnotator)
+                this._enableScrollEventsForControlFlowAnnotator();
+        } else {
+            this._basicBlockAnnotatorEnabled = false;
+        }
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     hidden()
</span><span class="lines">@@ -161,9 +169,16 @@
</span><span class="cx"> 
</span><span class="cx">     canShowTypeAnnotations()
</span><span class="cx">     {
</span><del>-        return !!this._typeTokenAnnotator;
</del><ins>+        // Type annotations for modified scripts are currently unsupported.
+        return !!this._getAssociatedScript() &amp;&amp; !this.hasModified;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    canShowCoverageHints()
+    {
+        // Code coverage hints for modified scripts are currently unsupported.
+        return !!this._getAssociatedScript() &amp;&amp; !this.hasModified;
+    }
+
</ins><span class="cx">     customPerformSearch(query)
</span><span class="cx">     {
</span><span class="cx">         function searchResultCallback(error, matches)
</span><span class="lines">@@ -249,10 +264,14 @@
</span><span class="cx">         for (var range of newRanges)
</span><span class="cx">             this._updateEditableMarkers(range);
</span><span class="cx"> 
</span><del>-        if (this._typeTokenAnnotator || this._basicBlockAnnotator) {
</del><ins>+        if (this._basicBlockAnnotator) {
+            this._basicBlockAnnotatorEnabled = false;
+            this._basicBlockAnnotator = null;
+        }
+
+        if (this._typeTokenAnnotator) {
</ins><span class="cx">             this._setTypeTokenAnnotatorEnabledState(false);
</span><span class="cx">             this._typeTokenAnnotator = null;
</span><del>-            this._basicBlockAnnotator = null;
</del><span class="cx">         }
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="lines">@@ -263,16 +282,31 @@
</span><span class="cx"> 
</span><span class="cx">         var newActivatedState = !this._typeTokenAnnotator.isActive();
</span><span class="cx">         if (newActivatedState &amp;&amp; this._isProbablyMinified &amp;&amp; !this.formatted) {
</span><del>-            this.updateFormattedState(true).then(() =&gt; {
</del><ins>+            return this.updateFormattedState(true).then(() =&gt; {
</ins><span class="cx">                 this._setTypeTokenAnnotatorEnabledState(newActivatedState);
</span><span class="cx">             });
</span><del>-            return;
</del><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         this._setTypeTokenAnnotatorEnabledState(newActivatedState);
</span><del>-        return newActivatedState;
</del><ins>+        return Promise.resolve();
</ins><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    toggleUnexecutedCodeHighlights()
+    {
+        if (!this._basicBlockAnnotator)
+            return false;
+
+        let newActivatedState = !this._basicBlockAnnotator.isActive();
+        if (newActivatedState &amp;&amp; this._isProbablyMinified &amp;&amp; !this.formatted) {
+            return this.updateFormattedState(true).then(() =&gt; {
+                this._basicBlockAnnotatorEnabled = newActivatedState;
+            });
+        }
+
+        this._basicBlockAnnotatorEnabled = newActivatedState;
+        return Promise.resolve();
+    }
+
</ins><span class="cx">     showPopoverForTypes(typeDescription, bounds, title)
</span><span class="cx">     {
</span><span class="cx">         var content = document.createElement(&quot;div&quot;);
</span><span class="lines">@@ -299,19 +333,28 @@
</span><span class="cx">         // The annotators must be cleared before pretty printing takes place and resumed
</span><span class="cx">         // after so that they clear their annotations in a known state and insert new annotations
</span><span class="cx">         // in the new state.
</span><del>-        var shouldResumeTypeTokenAnnotator = this._typeTokenAnnotator &amp;&amp; this._typeTokenAnnotator.isActive();
</del><ins>+
</ins><span class="cx">         var shouldResumeBasicBlockAnnotator = this._basicBlockAnnotator &amp;&amp; this._basicBlockAnnotator.isActive();
</span><del>-        if (shouldResumeTypeTokenAnnotator || shouldResumeBasicBlockAnnotator)
</del><ins>+        if (shouldResumeBasicBlockAnnotator)
+            this._basicBlockAnnotatorEnabled = false;
+
+        let shouldResumeTypeTokenAnnotator = this._typeTokenAnnotator &amp;&amp; this._typeTokenAnnotator.isActive();
+        if (shouldResumeTypeTokenAnnotator)
</ins><span class="cx">             this._setTypeTokenAnnotatorEnabledState(false);
</span><span class="cx"> 
</span><span class="cx">         return super.prettyPrint(pretty).then(() =&gt; {
</span><span class="cx">             if (pretty || !this._isProbablyMinified) {
</span><del>-                if (shouldResumeTypeTokenAnnotator || shouldResumeBasicBlockAnnotator)
</del><ins>+                if (shouldResumeBasicBlockAnnotator)
+                    this._basicBlockAnnotatorEnabled = true;
+
+                if (shouldResumeTypeTokenAnnotator)
</ins><span class="cx">                     this._setTypeTokenAnnotatorEnabledState(true);
</span><span class="cx">             } else {
</span><span class="cx">                 console.assert(!pretty &amp;&amp; this._isProbablyMinified);
</span><del>-                if (this._typeTokenAnnotator || this._basicBlockAnnotator)
-                    this._setTypeTokenAnnotatorEnabledState(false);
</del><ins>+                if (this._basicBlockAnnotator)
+                    this._basicBlockAnnotatorEnabled = false;
+
+                this._setTypeTokenAnnotatorEnabledState(false);
</ins><span class="cx">             }
</span><span class="cx">         });
</span><span class="cx">     }
</span><span class="lines">@@ -392,13 +435,13 @@
</span><span class="cx"> 
</span><span class="cx">         this.string = content;
</span><span class="cx"> 
</span><del>-        this._makeTypeTokenAnnotator();
-        this._makeBasicBlockAnnotator();
</del><ins>+        this._createBasicBlockAnnotator();
+        if (WebInspector.enableControlFlowProfilerSetting.value &amp;&amp; this._basicBlockAnnotator)
+            this._basicBlockAnnotatorEnabled = true;
</ins><span class="cx"> 
</span><del>-        if (WebInspector.showJavaScriptTypeInformationSetting.value) {
-            if (this._basicBlockAnnotator || this._typeTokenAnnotator)
-                this._setTypeTokenAnnotatorEnabledState(true);
-        }
</del><ins>+        this._createTypeTokenAnnotator();
+        if (WebInspector.showJavaScriptTypeInformationSetting.value)
+            this._setTypeTokenAnnotatorEnabledState(true);
</ins><span class="cx"> 
</span><span class="cx">         this._contentDidPopulate();
</span><span class="cx">     }
</span><span class="lines">@@ -1678,22 +1721,13 @@
</span><span class="cx"> 
</span><span class="cx">     _setTypeTokenAnnotatorEnabledState(shouldActivate)
</span><span class="cx">     {
</span><del>-        console.assert(this._typeTokenAnnotator);
</del><span class="cx">         if (!this._typeTokenAnnotator)
</span><span class="cx">             return;
</span><span class="cx"> 
</span><span class="cx">         if (shouldActivate) {
</span><span class="cx">             console.assert(this.visible, &quot;Annotators should not be enabled if the TextEditor is not visible&quot;);
</span><del>-
</del><span class="cx">             RuntimeAgent.enableTypeProfiler();
</span><del>-            if (RuntimeAgent.enableControlFlowProfiler)
-                RuntimeAgent.enableControlFlowProfiler();
-
</del><span class="cx">             this._typeTokenAnnotator.reset();
</span><del>-            if (this._basicBlockAnnotator) {
-                console.assert(!this._basicBlockAnnotator.isActive());
-                this._basicBlockAnnotator.reset();
-            }
</del><span class="cx"> 
</span><span class="cx">             if (!this._typeTokenScrollHandler)
</span><span class="cx">                 this._enableScrollEventsForTypeTokenAnnotator();
</span><span class="lines">@@ -1705,8 +1739,6 @@
</span><span class="cx">             // provide a confusing user experience.
</span><span class="cx"> 
</span><span class="cx">             this._typeTokenAnnotator.clear();
</span><del>-            if (this._basicBlockAnnotator)
-                this._basicBlockAnnotator.clear();
</del><span class="cx"> 
</span><span class="cx">             if (this._typeTokenScrollHandler)
</span><span class="cx">                 this._disableScrollEventsForTypeTokenAnnotator();
</span><span class="lines">@@ -1717,6 +1749,31 @@
</span><span class="cx">         this._updateTokenTrackingControllerState();
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    set _basicBlockAnnotatorEnabled(shouldActivate)
+    {
+        if (!this._basicBlockAnnotator)
+            return;
+
+        if (shouldActivate) {
+            console.assert(this.visible, &quot;Annotators should not be enabled if the TextEditor is not visible&quot;);
+
+            RuntimeAgent.enableControlFlowProfiler();
+
+            console.assert(!this._basicBlockAnnotator.isActive());
+            this._basicBlockAnnotator.reset();
+
+            if (!this._controlFlowScrollHandler)
+                this._enableScrollEventsForControlFlowAnnotator();
+        } else {
+            this._basicBlockAnnotator.clear();
+
+            if (this._controlFlowScrollHandler)
+                this._disableScrollEventsForControlFlowAnnotator();
+        }
+
+        WebInspector.enableControlFlowProfilerSetting.value = shouldActivate;
+    }
+
</ins><span class="cx">     _getAssociatedScript()
</span><span class="cx">     {
</span><span class="cx">         var script = null;
</span><span class="lines">@@ -1728,7 +1785,7 @@
</span><span class="cx">         return script;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    _makeTypeTokenAnnotator()
</del><ins>+    _createTypeTokenAnnotator()
</ins><span class="cx">     {
</span><span class="cx">         // COMPATIBILITY (iOS 8): Runtime.getRuntimeTypesForVariablesAtOffsets did not exist yet.
</span><span class="cx">         if (!RuntimeAgent.getRuntimeTypesForVariablesAtOffsets)
</span><span class="lines">@@ -1741,7 +1798,7 @@
</span><span class="cx">         this._typeTokenAnnotator = new WebInspector.TypeTokenAnnotator(this, script);
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    _makeBasicBlockAnnotator()
</del><ins>+    _createBasicBlockAnnotator()
</ins><span class="cx">     {
</span><span class="cx">         // COMPATIBILITY (iOS 8): Runtime.getBasicBlocks did not exist yet.
</span><span class="cx">         if (!RuntimeAgent.getBasicBlocks)
</span><span class="lines">@@ -1758,10 +1815,17 @@
</span><span class="cx">     {
</span><span class="cx">         // Pause updating type tokens while scrolling to prevent frame loss.
</span><span class="cx">         console.assert(!this._typeTokenScrollHandler);
</span><del>-        this._typeTokenScrollHandler = this._makeTypeTokenScrollEventHandler();
</del><ins>+        this._typeTokenScrollHandler = this._createTypeTokenScrollEventHandler();
</ins><span class="cx">         this.addScrollHandler(this._typeTokenScrollHandler);
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    _enableScrollEventsForControlFlowAnnotator()
+    {
+        console.assert(!this._controlFlowScrollHandler);
+        this._controlFlowScrollHandler = this._createControlFlowScrollEventHandler();
+        this.addScrollHandler(this._controlFlowScrollHandler);
+    }
+
</ins><span class="cx">     _disableScrollEventsForTypeTokenAnnotator()
</span><span class="cx">     {
</span><span class="cx">         console.assert(this._typeTokenScrollHandler);
</span><span class="lines">@@ -1769,30 +1833,51 @@
</span><span class="cx">         this._typeTokenScrollHandler = null;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    _makeTypeTokenScrollEventHandler()
</del><ins>+    _disableScrollEventsForControlFlowAnnotator()
</ins><span class="cx">     {
</span><del>-        var timeoutIdentifier = null;
-        function scrollHandler()
-        {
</del><ins>+        console.assert(this._controlFlowScrollHandler);
+        this.removeScrollHandler(this._controlFlowScrollHandler);
+        this._controlFlowScrollHandler = null;
+    }
+
+    _createTypeTokenScrollEventHandler()
+    {
+        let timeoutIdentifier = null;
+        let scrollHandler = () =&gt; {
</ins><span class="cx">             if (timeoutIdentifier)
</span><span class="cx">                 clearTimeout(timeoutIdentifier);
</span><span class="cx">             else {
</span><span class="cx">                 if (this._typeTokenAnnotator)
</span><span class="cx">                     this._typeTokenAnnotator.pause();
</span><del>-                if (this._basicBlockAnnotator)
-                    this._basicBlockAnnotator.pause();
</del><span class="cx">             }
</span><span class="cx"> 
</span><del>-            timeoutIdentifier = setTimeout(function() {
</del><ins>+            timeoutIdentifier = setTimeout(() =&gt; {
</ins><span class="cx">                 timeoutIdentifier = null;
</span><span class="cx">                 if (this._typeTokenAnnotator)
</span><span class="cx">                     this._typeTokenAnnotator.resume();
</span><ins>+            }, WebInspector.SourceCodeTextEditor.DurationToUpdateTypeTokensAfterScrolling);
+        };
+
+        return scrollHandler;
+    }
+
+    _createControlFlowScrollEventHandler()
+    {
+        let timeoutIdentifier = null;
+        let scrollHandler = () =&gt; {
+            if (timeoutIdentifier)
+                clearTimeout(timeoutIdentifier);
+            else if (this._basicBlockAnnotator)
+                this._basicBlockAnnotator.pause();
+
+            timeoutIdentifier = setTimeout(()  =&gt; {
+                timeoutIdentifier = null;
</ins><span class="cx">                 if (this._basicBlockAnnotator)
</span><span class="cx">                     this._basicBlockAnnotator.resume();
</span><del>-            }.bind(this), WebInspector.SourceCodeTextEditor.DurationToUpdateTypeTokensAfterScrolling);
-        }
</del><ins>+            }, WebInspector.SourceCodeTextEditor.DurationToUpdateTypeTokensAfterScrolling);
+        };
</ins><span class="cx"> 
</span><del>-        return scrollHandler.bind(this);
</del><ins>+        return scrollHandler;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     _logCleared(event)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTextContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -51,6 +51,11 @@
</span><span class="cx">         var activatedToolTipTypes = WebInspector.UIString(&quot;Hide type information&quot;);
</span><span class="cx">         this._showTypesButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;show-types&quot;, toolTipTypes, activatedToolTipTypes, &quot;Images/NavigationItemTypes.svg&quot;, 13, 14);
</span><span class="cx">         this._showTypesButtonNavigationItem.enabled = false;
</span><ins>+
+        let toolTipCodeCoverage = WebInspector.UIString(&quot;Fade unexecuted code&quot;);
+        let activatedToolTipCodeCoverage = WebInspector.UIString(&quot;Do not fade unexecuted code&quot;);
+        this._codeCoverageButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;code-coverage&quot;, toolTipCodeCoverage, activatedToolTipCodeCoverage, &quot;Images/NavigationItemCodeCoverage.svg&quot;, 13, 14);
+        this._codeCoverageButtonNavigationItem.enabled = false;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Public
</span><span class="lines">@@ -62,7 +67,7 @@
</span><span class="cx"> 
</span><span class="cx">     get navigationItems()
</span><span class="cx">     {
</span><del>-        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem];
</del><ins>+        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem, this._codeCoverageButtonNavigationItem];
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     revealPosition(position, textRangeToSelect, forceUnformatted)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTextEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TextEditor.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TextEditor.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TextEditor.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -137,6 +137,17 @@
</span><span class="cx">         return this._formatted;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    get hasModified()
+    {
+        let historySize = this._codeMirror.historySize().undo;
+
+        // Formatting code creates a history item.
+        if (this._formatted)
+            historySize--;
+
+        return historySize &gt; 0;
+    }
+
</ins><span class="cx">     updateFormattedState(formatted)
</span><span class="cx">     {
</span><span class="cx">         return this._format(formatted).catch(handlePromiseException);
</span><span class="lines">@@ -159,6 +170,11 @@
</span><span class="cx">         return false;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    canShowCoverageHints()
+    {
+        return false;
+    }
+
</ins><span class="cx">     get selectedTextRange()
</span><span class="cx">     {
</span><span class="cx">         var start = this._codeMirror.getCursor(true);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTextResourceContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js (205673 => 205674)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js        2016-09-08 23:07:44 UTC (rev 205673)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js        2016-09-08 23:13:57 UTC (rev 205674)
</span><span class="lines">@@ -53,8 +53,14 @@
</span><span class="cx">         this._showTypesButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;show-types&quot;, toolTipTypes, activatedToolTipTypes, &quot;Images/NavigationItemTypes.svg&quot;, 13, 14);
</span><span class="cx">         this._showTypesButtonNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._toggleTypeAnnotations, this);
</span><span class="cx">         this._showTypesButtonNavigationItem.enabled = false;
</span><ins>+        WebInspector.showJavaScriptTypeInformationSetting.addEventListener(WebInspector.Setting.Event.Changed, this._showJavaScriptTypeInformationSettingChanged, this);
</ins><span class="cx"> 
</span><del>-        WebInspector.showJavaScriptTypeInformationSetting.addEventListener(WebInspector.Setting.Event.Changed, this._showJavaScriptTypeInformationSettingChanged, this);
</del><ins>+        let toolTipCodeCoverage = WebInspector.UIString(&quot;Fade unexecuted code&quot;);
+        let activatedToolTipCodeCoverage = WebInspector.UIString(&quot;Do not fade unexecuted code&quot;);
+        this._codeCoverageButtonNavigationItem = new WebInspector.ActivateButtonNavigationItem(&quot;code-coverage&quot;, toolTipCodeCoverage, activatedToolTipCodeCoverage, &quot;Images/NavigationItemCodeCoverage.svg&quot;, 13, 14);
+        this._codeCoverageButtonNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._toggleUnexecutedCodeHighlights, this);
+        this._codeCoverageButtonNavigationItem.enabled = false;
+        WebInspector.enableControlFlowProfilerSetting.addEventListener(WebInspector.Setting.Event.Changed, this._enableControlFlowProfilerSettingChanged, this);
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Public
</span><span class="lines">@@ -61,7 +67,7 @@
</span><span class="cx"> 
</span><span class="cx">     get navigationItems()
</span><span class="cx">     {
</span><del>-        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem];
</del><ins>+        return [this._prettyPrintButtonNavigationItem, this._showTypesButtonNavigationItem, this._codeCoverageButtonNavigationItem];
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     get managesOwnIssues()
</span><span class="lines">@@ -196,8 +202,12 @@
</span><span class="cx">     _contentDidPopulate(event)
</span><span class="cx">     {
</span><span class="cx">         this._prettyPrintButtonNavigationItem.enabled = this._textEditor.canBeFormatted();
</span><ins>+
</ins><span class="cx">         this._showTypesButtonNavigationItem.enabled = this._textEditor.canShowTypeAnnotations();
</span><span class="cx">         this._showTypesButtonNavigationItem.activated = WebInspector.showJavaScriptTypeInformationSetting.value;
</span><ins>+
+        this._codeCoverageButtonNavigationItem.enabled = this._textEditor.canShowCoverageHints();
+        this._codeCoverageButtonNavigationItem.activated = WebInspector.enableControlFlowProfilerSetting.value;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     _togglePrettyPrint(event)
</span><span class="lines">@@ -208,14 +218,30 @@
</span><span class="cx"> 
</span><span class="cx">     _toggleTypeAnnotations(event)
</span><span class="cx">     {
</span><del>-        this._textEditor.toggleTypeAnnotations();
</del><ins>+        this._showTypesButtonNavigationItem.enabled = false;
+        this._textEditor.toggleTypeAnnotations().then(() =&gt; {
+            this._showTypesButtonNavigationItem.enabled = true;
+        })
</ins><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    _toggleUnexecutedCodeHighlights(event)
+    {
+        this._codeCoverageButtonNavigationItem.enabled = false;
+        this._textEditor.toggleUnexecutedCodeHighlights().then(() =&gt; {
+            this._codeCoverageButtonNavigationItem.enabled = true;
+        });
+    }
+
</ins><span class="cx">     _showJavaScriptTypeInformationSettingChanged(event)
</span><span class="cx">     {
</span><span class="cx">         this._showTypesButtonNavigationItem.activated = WebInspector.showJavaScriptTypeInformationSetting.value;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    _enableControlFlowProfilerSettingChanged(event)
+    {
+        this._codeCoverageButtonNavigationItem.activated = WebInspector.enableControlFlowProfilerSetting.value;
+    }
+
</ins><span class="cx">     _textEditorFormattingDidChange(event)
</span><span class="cx">     {
</span><span class="cx">         this._prettyPrintButtonNavigationItem.activated = this._textEditor.formatted;
</span></span></pre>
</div>
</div>

</body>
</html>