<!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>[211432] 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/211432">211432</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2017-01-31 07:59:52 -0800 (Tue, 31 Jan 2017)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Address some ESLint warnings
https://bugs.webkit.org/show_bug.cgi?id=167634

Patch by Joseph Pecoraro &lt;pecoraro@apple.com&gt; on 2017-01-31
Reviewed by Brian Burg.

* UserInterface/Base/DOMUtilities.js:
(WebInspector.linkifyNodeReference):
(isSimiliarNode):
(WebInspector.xpathIndex):
These empty statements were supposed to be returns!

* UserInterface/Base/Main.js:
* UserInterface/Models/CSSProperty.js:
(WebInspector.CSSProperty.prototype.get relatedLonghandProperties):
* UserInterface/Models/DOMNode.js:
* UserInterface/Protocol/Connection.js:
(InspectorBackend.Connection):
(InspectorBackend.MainConnection):
(InspectorBackend.WorkerConnection):
* UserInterface/Protocol/MainTarget.js:
(WebInspector.MainTarget):
* UserInterface/Protocol/WorkerTarget.js:
(WebInspector.WorkerTarget):
* UserInterface/Test/Test.js:
* UserInterface/Views/CSSStyleDeclarationTextEditor.js:
* UserInterface/Views/ConsoleSession.js:
(WebInspector.ConsoleSession):
* UserInterface/Views/DOMNodeDetailsSidebarPanel.js:
(WebInspector.DOMNodeDetailsSidebarPanel.prototype._refreshAccessibility.accessibilityPropertiesCallback):
(WebInspector.DOMNodeDetailsSidebarPanel.prototype._refreshAccessibility):
* UserInterface/Views/ResourceSidebarPanel.js:
(WebInspector.ResourceSidebarPanel.prototype._scriptWasAdded):
* UserInterface/Views/ScopeChainDetailsSidebarPanel.js:
(WebInspector.ScopeChainDetailsSidebarPanel):
* UserInterface/Views/ScriptContentView.js:
(WebInspector.ScriptContentView.prototype._toggleTypeAnnotations):
* UserInterface/Views/SourceCodeTextEditor.js:
(WebInspector.SourceCodeTextEditor.prototype._createControlFlowScrollEventHandler):
* UserInterface/Views/TextResourceContentView.js:
(WebInspector.TextResourceContentView.prototype._toggleTypeAnnotations):
* UserInterface/Workers/Formatter/EsprimaFormatter.js:
(EsprimaFormatter.prototype._handleTokenAtNode):
Address pedantic warnings for consistent style.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceBaseDOMUtilitiesjs">trunk/Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceBaseMainjs">trunk/Source/WebInspectorUI/UserInterface/Base/Main.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsCSSPropertyjs">trunk/Source/WebInspectorUI/UserInterface/Models/CSSProperty.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsDOMNodejs">trunk/Source/WebInspectorUI/UserInterface/Models/DOMNode.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceProtocolConnectionjs">trunk/Source/WebInspectorUI/UserInterface/Protocol/Connection.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceProtocolMainTargetjs">trunk/Source/WebInspectorUI/UserInterface/Protocol/MainTarget.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceProtocolWorkerTargetjs">trunk/Source/WebInspectorUI/UserInterface/Protocol/WorkerTarget.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceTestTestjs">trunk/Source/WebInspectorUI/UserInterface/Test/Test.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationTextEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsConsoleSessionjs">trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleSession.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsDOMNodeDetailsSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/DOMNodeDetailsSidebarPanel.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsResourceSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeChainDetailsSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.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="#trunkSourceWebInspectorUIUserInterfaceViewsTextResourceContentViewjs">trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceWorkersFormatterEsprimaFormatterjs">trunk/Source/WebInspectorUI/UserInterface/Workers/Formatter/EsprimaFormatter.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/ChangeLog        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -1,3 +1,49 @@
</span><ins>+2017-01-31  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
+
+        Web Inspector: Address some ESLint warnings
+        https://bugs.webkit.org/show_bug.cgi?id=167634
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Base/DOMUtilities.js:
+        (WebInspector.linkifyNodeReference):
+        (isSimiliarNode):
+        (WebInspector.xpathIndex):
+        These empty statements were supposed to be returns!
+
+        * UserInterface/Base/Main.js:
+        * UserInterface/Models/CSSProperty.js:
+        (WebInspector.CSSProperty.prototype.get relatedLonghandProperties):
+        * UserInterface/Models/DOMNode.js:
+        * UserInterface/Protocol/Connection.js:
+        (InspectorBackend.Connection):
+        (InspectorBackend.MainConnection):
+        (InspectorBackend.WorkerConnection):
+        * UserInterface/Protocol/MainTarget.js:
+        (WebInspector.MainTarget):
+        * UserInterface/Protocol/WorkerTarget.js:
+        (WebInspector.WorkerTarget):
+        * UserInterface/Test/Test.js:
+        * UserInterface/Views/CSSStyleDeclarationTextEditor.js:
+        * UserInterface/Views/ConsoleSession.js:
+        (WebInspector.ConsoleSession):
+        * UserInterface/Views/DOMNodeDetailsSidebarPanel.js:
+        (WebInspector.DOMNodeDetailsSidebarPanel.prototype._refreshAccessibility.accessibilityPropertiesCallback):
+        (WebInspector.DOMNodeDetailsSidebarPanel.prototype._refreshAccessibility):
+        * UserInterface/Views/ResourceSidebarPanel.js:
+        (WebInspector.ResourceSidebarPanel.prototype._scriptWasAdded):
+        * UserInterface/Views/ScopeChainDetailsSidebarPanel.js:
+        (WebInspector.ScopeChainDetailsSidebarPanel):
+        * UserInterface/Views/ScriptContentView.js:
+        (WebInspector.ScriptContentView.prototype._toggleTypeAnnotations):
+        * UserInterface/Views/SourceCodeTextEditor.js:
+        (WebInspector.SourceCodeTextEditor.prototype._createControlFlowScrollEventHandler):
+        * UserInterface/Views/TextResourceContentView.js:
+        (WebInspector.TextResourceContentView.prototype._toggleTypeAnnotations):
+        * UserInterface/Workers/Formatter/EsprimaFormatter.js:
+        (EsprimaFormatter.prototype._handleTokenAtNode):
+        Address pedantic warnings for consistent style.
+
</ins><span class="cx"> 2017-01-30  Devin Rousso  &lt;dcrousso+webkit@gmail.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: &quot;bouncy highlight&quot; element in TextEditor/DOMTreeOutline should update or dismiss when user scrolls
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceBaseDOMUtilitiesjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -66,9 +66,9 @@
</span><span class="cx">     let link = document.createElement(&quot;span&quot;);
</span><span class="cx">     link.append(displayName);
</span><span class="cx">     link.setAttribute(&quot;role&quot;, &quot;link&quot;);
</span><del>-    
</del><ins>+
</ins><span class="cx">     link.title = displayName;
</span><del>-    
</del><ins>+
</ins><span class="cx">     let nodeType = node.nodeType();
</span><span class="cx">     if ((nodeType !== Node.DOCUMENT_NODE || node.parentNode) &amp;&amp; nodeType !== Node.TEXT_NODE)
</span><span class="cx">         link.className = &quot;node-link&quot;;
</span><span class="lines">@@ -239,7 +239,7 @@
</span><span class="cx">         break;
</span><span class="cx">     case Node.PROCESSING_INSTRUCTION_NODE:
</span><span class="cx">         value = &quot;processing-instruction()&quot;;
</span><del>-        break
</del><ins>+        break;
</ins><span class="cx">     default:
</span><span class="cx">         value = &quot;&quot;;
</span><span class="cx">         break;
</span><span class="lines">@@ -278,9 +278,9 @@
</span><span class="cx"> 
</span><span class="cx">         // XPath CDATA and text() are the same.
</span><span class="cx">         if (aType === Node.CDATA_SECTION_NODE)
</span><del>-            aType === Node.TEXT_NODE;
</del><ins>+            return aType === Node.TEXT_NODE;
</ins><span class="cx">         if (bType === Node.CDATA_SECTION_NODE)
</span><del>-            bType === Node.TEXT_NODE;
</del><ins>+            return bType === Node.TEXT_NODE;
</ins><span class="cx"> 
</span><span class="cx">         return aType === bType;
</span><span class="cx">     }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceBaseMainjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Main.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Base/Main.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Main.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -2588,7 +2588,7 @@
</span><span class="cx"> WebInspector.assumingMainTarget = function()
</span><span class="cx"> {
</span><span class="cx">     return WebInspector.mainTarget;
</span><del>-}
</del><ins>+};
</ins><span class="cx"> 
</span><span class="cx"> // OpenResourceDialog delegate
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsCSSPropertyjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSProperty.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSProperty.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSProperty.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -230,7 +230,7 @@
</span><span class="cx">         this._relatedShorthandProperty = property || null;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    get relatedLonghandProperties() { return this._relatedLonghandProperties;}
</del><ins>+    get relatedLonghandProperties() { return this._relatedLonghandProperties; }
</ins><span class="cx"> 
</span><span class="cx">     addRelatedLonghandProperty(property)
</span><span class="cx">     {
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsDOMNodejs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/DOMNode.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/DOMNode.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/DOMNode.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -824,7 +824,7 @@
</span><span class="cx">     Closed: &quot;closed&quot;,
</span><span class="cx">     Open: &quot;open&quot;,
</span><span class="cx"> };
</span><del>-                     
</del><ins>+
</ins><span class="cx"> WebInspector.DOMNode.CustomElementState = {
</span><span class="cx">     Builtin: &quot;builtin&quot;,
</span><span class="cx">     Custom: &quot;custom&quot;,
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceProtocolConnectionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/Connection.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Protocol/Connection.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/Connection.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -270,7 +270,7 @@
</span><span class="cx">         for (let script of scriptsToRun)
</span><span class="cx">             script.call(this);
</span><span class="cx">     }
</span><del>-}
</del><ins>+};
</ins><span class="cx"> 
</span><span class="cx"> InspectorBackend.MainConnection = class InspectorBackendPageConnection extends InspectorBackend.Connection
</span><span class="cx"> {
</span><span class="lines">@@ -285,7 +285,7 @@
</span><span class="cx">     {
</span><span class="cx">         InspectorFrontendHost.sendMessageToBackend(message);
</span><span class="cx">     }
</span><del>-}
</del><ins>+};
</ins><span class="cx"> 
</span><span class="cx"> InspectorBackend.WorkerConnection = class InspectorBackendWorkerConnection extends InspectorBackend.Connection
</span><span class="cx"> {
</span><span class="lines">@@ -310,6 +310,6 @@
</span><span class="cx">     {
</span><span class="cx">         WorkerAgent.sendMessageToWorker(this._workerId, message);
</span><span class="cx">     }
</span><del>-}
</del><ins>+};
</ins><span class="cx"> 
</span><span class="cx"> InspectorBackend.mainConnection = new InspectorBackend.MainConnection;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceProtocolMainTargetjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/MainTarget.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Protocol/MainTarget.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/MainTarget.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -53,4 +53,4 @@
</span><span class="cx">         let mainFrame = WebInspector.frameResourceManager.mainFrame;
</span><span class="cx">         return mainFrame ? mainFrame.mainResource : null;
</span><span class="cx">     }
</span><del>-}
</del><ins>+};
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceProtocolWorkerTargetjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/WorkerTarget.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Protocol/WorkerTarget.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/WorkerTarget.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -56,4 +56,4 @@
</span><span class="cx">     {
</span><span class="cx">         return WebInspector.displayNameForURL(this._name);
</span><span class="cx">     }
</span><del>-}
</del><ins>+};
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceTestTestjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Test/Test.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Test/Test.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Test/Test.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -114,7 +114,7 @@
</span><span class="cx"> 
</span><span class="cx"> InspectorTest.redirectConsoleToTestOutput();
</span><span class="cx"> 
</span><del>-WebInspector.reportInternalError = (e) =&gt; { console.error(e); }
</del><ins>+WebInspector.reportInternalError = (e) =&gt; { console.error(e); };
</ins><span class="cx"> 
</span><span class="cx"> window.reportUnhandledRejection = InspectorTest.reportUnhandledRejection.bind(InspectorTest);
</span><span class="cx"> window.onerror = InspectorTest.reportUncaughtExceptionFromEvent.bind(InspectorTest);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationTextEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -1377,7 +1377,7 @@
</span><span class="cx">     _inlineSwatchDeactivated()
</span><span class="cx">     {
</span><span class="cx">         this._hasActiveInlineSwatchEditor = false;
</span><del>-    }    
</del><ins>+    }
</ins><span class="cx"> 
</span><span class="cx">     _propertyOverriddenStatusChanged(event)
</span><span class="cx">     {
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsConsoleSessionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleSession.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleSession.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleSession.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -43,7 +43,7 @@
</span><span class="cx">         let headerText = &quot;&quot;;
</span><span class="cx">         switch (data.newSessionReason) {
</span><span class="cx">         case WebInspector.ConsoleSession.NewSessionReason.PageReloaded:
</span><del>-            headerText =  WebInspector.UIString(&quot;Page reloaded at %s&quot;);
</del><ins>+            headerText = WebInspector.UIString(&quot;Page reloaded at %s&quot;);
</ins><span class="cx">             break;
</span><span class="cx">         case WebInspector.ConsoleSession.NewSessionReason.PageNavigated:
</span><span class="cx">             headerText = WebInspector.UIString(&quot;Page navigated at %s&quot;);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsDOMNodeDetailsSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DOMNodeDetailsSidebarPanel.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/DOMNodeDetailsSidebarPanel.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DOMNodeDetailsSidebarPanel.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -500,8 +500,8 @@
</span><span class="cx">                 let roleType = null;
</span><span class="cx">                 let buttonType = null;
</span><span class="cx">                 let buttonTypePopupString = WebInspector.UIString(&quot;popup&quot;);
</span><del>-                let buttonTypeToggleString = WebInspector.UIString(&quot;toggle&quot;)
-                let buttonTypePopupToggleString = WebInspector.UIString(&quot;popup, toggle&quot;)
</del><ins>+                let buttonTypeToggleString = WebInspector.UIString(&quot;toggle&quot;);
+                let buttonTypePopupToggleString = WebInspector.UIString(&quot;popup, toggle&quot;);
</ins><span class="cx"> 
</span><span class="cx">                 if (role === &quot;&quot; || role === &quot;unknown&quot;)
</span><span class="cx">                     role = WebInspector.UIString(&quot;No exact ARIA role match.&quot;);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsResourceSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -289,7 +289,7 @@
</span><span class="cx">         // Worker script.
</span><span class="cx">         if (script.target !== WebInspector.mainTarget) {
</span><span class="cx">             if (script.isMainResource())
</span><del>-                this._addTargetWithMainResource(script.target)
</del><ins>+                this._addTargetWithMainResource(script.target);
</ins><span class="cx">             return;
</span><span class="cx">         }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeChainDetailsSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -64,7 +64,7 @@
</span><span class="cx">         WebInspector.runtimeManager.addEventListener(WebInspector.RuntimeManager.Event.DidEvaluate, this._didEvaluateExpression, this);
</span><span class="cx"> 
</span><span class="cx">         // Update watch expressions when console execution context changes.
</span><del>-        WebInspector.runtimeManager.addEventListener(WebInspector.RuntimeManager.Event.ActiveExecutionContextChanged, this._activeExecutionContextChanged, this)
</del><ins>+        WebInspector.runtimeManager.addEventListener(WebInspector.RuntimeManager.Event.ActiveExecutionContextChanged, this._activeExecutionContextChanged, this);
</ins><span class="cx"> 
</span><span class="cx">         // Update watch expressions on navigations.
</span><span class="cx">         WebInspector.Frame.addEventListener(WebInspector.Frame.Event.MainResourceDidChange, this._mainResourceDidChange, this);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScriptContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScriptContentView.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -234,7 +234,7 @@
</span><span class="cx">         this._showTypesButtonNavigationItem.enabled = false;
</span><span class="cx">         this._textEditor.toggleTypeAnnotations().then(() =&gt; {
</span><span class="cx">             this._showTypesButtonNavigationItem.enabled = true;
</span><del>-        })
</del><ins>+        });
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     _toggleUnexecutedCodeHighlights(event)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsSourceCodeTextEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -2213,7 +2213,7 @@
</span><span class="cx">             else if (this._basicBlockAnnotator)
</span><span class="cx">                 this._basicBlockAnnotator.pause();
</span><span class="cx"> 
</span><del>-            timeoutIdentifier = setTimeout(()  =&gt; {
</del><ins>+            timeoutIdentifier = setTimeout(() =&gt; {
</ins><span class="cx">                 timeoutIdentifier = null;
</span><span class="cx">                 if (this._basicBlockAnnotator)
</span><span class="cx">                     this._basicBlockAnnotator.resume();
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTextResourceContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TextResourceContentView.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -222,7 +222,7 @@
</span><span class="cx">         this._showTypesButtonNavigationItem.enabled = false;
</span><span class="cx">         this._textEditor.toggleTypeAnnotations().then(() =&gt; {
</span><span class="cx">             this._showTypesButtonNavigationItem.enabled = true;
</span><del>-        })
</del><ins>+        });
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     _toggleUnexecutedCodeHighlights(event)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceWorkersFormatterEsprimaFormatterjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Workers/Formatter/EsprimaFormatter.js (211431 => 211432)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Workers/Formatter/EsprimaFormatter.js        2017-01-31 15:49:54 UTC (rev 211431)
+++ trunk/Source/WebInspectorUI/UserInterface/Workers/Formatter/EsprimaFormatter.js        2017-01-31 15:59:52 UTC (rev 211432)
</span><span class="lines">@@ -815,7 +815,7 @@
</span><span class="cx">                 builder.appendSpace();
</span><span class="cx">             builder.appendToken(tokenValue, tokenOffset);
</span><span class="cx">             builder.appendSpace();
</span><del>-            return;            
</del><ins>+            return;
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         if (nodeType === &quot;ExportAllDeclaration&quot; || nodeType === &quot;ExportDefaultDeclaration&quot; || nodeType === &quot;ImportDefaultSpecifier&quot; || nodeType === &quot;ImportNamespaceSpecifier&quot;) {
</span></span></pre>
</div>
</div>

</body>
</html>