<!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>[196184] 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/196184">196184</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2016-02-05 13:20:52 -0800 (Fri, 05 Feb 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Replace all instances of '%s' with “%s“
https://bugs.webkit.org/show_bug.cgi?id=153891
&lt;rdar://problem/24510236&gt;

Patch by Devin Rousso &lt;dcrousso+webkit@gmail.com&gt; on 2016-02-05
Reviewed by Timothy Hatcher.

Switched all WebInspector.UIString() from using '' to ““.

* Localizations/en.lproj/localizedStrings.js:
* UserInterface/Views/CSSStyleDeclarationSection.js:
(WebInspector.CSSStyleDeclarationSection.prototype._handleSelectorPaste):
* UserInterface/Views/CSSStyleDeclarationTextEditor.js:
(WebInspector.CSSStyleDeclarationTextEditor.prototype._createTextMarkerForPropertyIfNeeded):
* UserInterface/Views/VisualStylePropertyEditor.js:
(WebInspector.VisualStylePropertyEditor.prototype.update):
* UserInterface/Views/VisualStyleSelectorTreeItem.js:
(WebInspector.VisualStyleSelectorTreeItem.prototype._updateSelectorIcon):</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="#trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationSectionjs">trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationTextEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorTreeItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorTreeItem.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/ChangeLog        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -1,3 +1,23 @@
</span><ins>+2016-02-05  Devin Rousso  &lt;dcrousso+webkit@gmail.com&gt;
+
+        Web Inspector: Replace all instances of '%s' with “%s“
+        https://bugs.webkit.org/show_bug.cgi?id=153891
+        &lt;rdar://problem/24510236&gt;
+
+        Reviewed by Timothy Hatcher.
+
+        Switched all WebInspector.UIString() from using '' to ““.
+
+        * Localizations/en.lproj/localizedStrings.js:
+        * UserInterface/Views/CSSStyleDeclarationSection.js:
+        (WebInspector.CSSStyleDeclarationSection.prototype._handleSelectorPaste):
+        * UserInterface/Views/CSSStyleDeclarationTextEditor.js:
+        (WebInspector.CSSStyleDeclarationTextEditor.prototype._createTextMarkerForPropertyIfNeeded):
+        * UserInterface/Views/VisualStylePropertyEditor.js:
+        (WebInspector.VisualStylePropertyEditor.prototype.update):
+        * UserInterface/Views/VisualStyleSelectorTreeItem.js:
+        (WebInspector.VisualStyleSelectorTreeItem.prototype._updateSelectorIcon):
+
</ins><span class="cx"> 2016-02-05  Nikita Vasilyev  &lt;nvasilyev@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         REGRESSION (r193913): Web Inspector: Wrong z-index of inner sections
</span></span></pre></div>
<a id="trunkSourceWebInspectorUILocalizationsenlprojlocalizedStringsjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -208,7 +208,7 @@
</span><span class="cx"> localizedStrings[&quot;Delete Node&quot;] = &quot;Delete Node&quot;;
</span><span class="cx"> localizedStrings[&quot;Detach into separate window&quot;] = &quot;Detach into separate window&quot;;
</span><span class="cx"> localizedStrings[&quot;Details&quot;] = &quot;Details&quot;;
</span><del>-localizedStrings[&quot;Did you mean '%s'?\nClick to replace.&quot;] = &quot;Did you mean '%s'?\nClick to replace.&quot;;
</del><ins>+localizedStrings[&quot;Did you mean  %s ?\nClick to replace.&quot;] = &quot;Did you mean  %s ?\nClick to replace.&quot;;
</ins><span class="cx"> localizedStrings[&quot;Dimensions&quot;] = &quot;Dimensions&quot;;
</span><span class="cx"> localizedStrings[&quot;Direction&quot;] = &quot;Direction&quot;;
</span><span class="cx"> localizedStrings[&quot;Disable Breakpoint&quot;] = &quot;Disable Breakpoint&quot;;
</span><span class="lines">@@ -228,7 +228,7 @@
</span><span class="cx"> localizedStrings[&quot;Done&quot;] = &quot;Done&quot;;
</span><span class="cx"> localizedStrings[&quot;Download Web Archive&quot;] = &quot;Download Web Archive&quot;;
</span><span class="cx"> localizedStrings[&quot;Duplicate Selector&quot;] = &quot;Duplicate Selector&quot;;
</span><del>-localizedStrings[&quot;Duplicate property '%s'.\nClick to delete this property.&quot;] = &quot;Duplicate property '%s'.\nClick to delete this property.&quot;;
</del><ins>+localizedStrings[&quot;Duplicate property  %s .\nClick to delete this property.&quot;] = &quot;Duplicate property  %s .\nClick to delete this property.&quot;;
</ins><span class="cx"> localizedStrings[&quot;Duration&quot;] = &quot;Duration&quot;;
</span><span class="cx"> localizedStrings[&quot;Dynamically calculated for the parent element&quot;] = &quot;Dynamically calculated for the parent element&quot;;
</span><span class="cx"> localizedStrings[&quot;Dynamically calculated for the selected element&quot;] = &quot;Dynamically calculated for the selected element&quot;;
</span><span class="lines">@@ -648,14 +648,14 @@
</span><span class="cx"> localizedStrings[&quot;Text&quot;] = &quot;Text&quot;;
</span><span class="cx"> localizedStrings[&quot;Text Node&quot;] = &quot;Text Node&quot;;
</span><span class="cx"> localizedStrings[&quot;Text Only&quot;] = &quot;Text Only&quot;;
</span><del>-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;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;;
</del><ins>+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;;
</ins><span class="cx"> localizedStrings[&quot;The  %s \ntable is empty.&quot;] = &quot;The  %s \ntable is empty.&quot;;
</span><ins>+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;;
</ins><span class="cx"> localizedStrings[&quot;This Element&quot;] = &quot;This Element&quot;;
</span><span class="cx"> localizedStrings[&quot;This property needs a value.\nClick to open autocomplete.&quot;] = &quot;This property needs a value.\nClick to open autocomplete.&quot;;
</span><span class="cx"> localizedStrings[&quot;Time&quot;] = &quot;Time&quot;;
</span><span class="lines">@@ -695,7 +695,7 @@
</span><span class="cx"> localizedStrings[&quot;User Agent Stylesheet&quot;] = &quot;User Agent Stylesheet&quot;;
</span><span class="cx"> localizedStrings[&quot;User Stylesheet&quot;] = &quot;User Stylesheet&quot;;
</span><span class="cx"> localizedStrings[&quot;Using Keyword Value&quot;] = &quot;Using Keyword Value&quot;;
</span><del>-localizedStrings[&quot;Using the previous selector '%s'.&quot;] = &quot;Using the previous selector '%s'.&quot;;
</del><ins>+localizedStrings[&quot;Using the previous selector  %s .&quot;] = &quot;Using the previous selector  %s .&quot;;
</ins><span class="cx"> localizedStrings[&quot;Value&quot;] = &quot;Value&quot;;
</span><span class="cx"> localizedStrings[&quot;Variants&quot;] = &quot;Variants&quot;;
</span><span class="cx"> localizedStrings[&quot;Vertical&quot;] = &quot;Vertical&quot;;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationSectionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -648,8 +648,8 @@
</span><span class="cx">             return;
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        this._iconElement.title = WebInspector.UIString(&quot;The selector '%s' is invalid.\nClick to revert to the previous selector.&quot;).format(this._selectorElement.textContent.trim());
-        this._selectorElement.title = WebInspector.UIString(&quot;Using the previous selector '%s'.&quot;).format(this._style.ownerRule.selectorText);
</del><ins>+        this._iconElement.title = WebInspector.UIString(&quot;The selector “%s” is invalid.\nClick to revert to the previous selector.&quot;).format(this._selectorElement.textContent.trim());
+        this._selectorElement.title = WebInspector.UIString(&quot;Using the previous selector “%s”.&quot;).format(this._style.ownerRule.selectorText);
</ins><span class="cx">         for (let i = 0; i &lt; this._selectorElement.children.length; ++i)
</span><span class="cx">             this._selectorElement.children[i].title = null;
</span><span class="cx">     }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsCSSStyleDeclarationTextEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -1073,14 +1073,14 @@
</span><span class="cx">             // This property has a prefix and is valid without the prefix and the rule containing this property does not have the unprefixed version of the property.
</span><span class="cx">             generateInvalidMarker.call(this, {
</span><span class="cx">                 position: from,
</span><del>-                title: WebInspector.UIString(&quot;The 'webkit' prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;),
</del><ins>+                title: WebInspector.UIString(&quot;The “webkit” prefix is not necessary.\nClick to insert a duplicate without the prefix.&quot;),
</ins><span class="cx">                 correction: property.text + &quot;\n&quot; + property.text.replace(&quot;-webkit-&quot;, &quot;&quot;),
</span><span class="cx">                 autocomplete: false
</span><span class="cx">             });
</span><span class="cx">         } else if (instances &gt; 1) {
</span><span class="cx">             invalidMarkerInfo = {
</span><span class="cx">                 position: from,
</span><del>-                title: WebInspector.UIString(&quot;Duplicate property '%s'.\nClick to delete this property.&quot;).format(property.name),
</del><ins>+                title: WebInspector.UIString(&quot;Duplicate property “%s”.\nClick to delete this property.&quot;).format(property.name),
</ins><span class="cx">                 correction: &quot;&quot;,
</span><span class="cx">                 autocomplete: false
</span><span class="cx">             };
</span><span class="lines">@@ -1104,12 +1104,12 @@
</span><span class="cx">             if (/^(?:\d+)$/.test(property.value)) {
</span><span class="cx">                 invalidMarkerInfo = {
</span><span class="cx">                     position: start,
</span><del>-                    title: WebInspector.UIString(&quot;The value '%s' needs units.\nClick to add 'px' to the value.&quot;).format(property.value),
</del><ins>+                    title: WebInspector.UIString(&quot;The value “%s” needs units.\nClick to add “px” to the value.&quot;).format(property.value),
</ins><span class="cx">                     correction: property.name + &quot;: &quot; + property.value + &quot;px;&quot;,
</span><span class="cx">                     autocomplete: false
</span><span class="cx">                 };
</span><span class="cx">             } else {
</span><del>-                var valueReplacement = property.value.length ? WebInspector.UIString(&quot;The value '%s' is not supported for this property.\nClick to delete and open autocomplete.&quot;).format(property.value) : WebInspector.UIString(&quot;This property needs a value.\nClick to open autocomplete.&quot;);
</del><ins>+                var valueReplacement = property.value.length ? WebInspector.UIString(&quot;The value “%s” is not supported for this property.\nClick to delete and open autocomplete.&quot;).format(property.value) : WebInspector.UIString(&quot;This property needs a value.\nClick to open autocomplete.&quot;);
</ins><span class="cx"> 
</span><span class="cx">                 invalidMarkerInfo = {
</span><span class="cx">                     position: start,
</span><span class="lines">@@ -1122,7 +1122,7 @@
</span><span class="cx">             // The property is valid and exists in the rule while its prefixed version does not.
</span><span class="cx">             invalidMarkerInfo = {
</span><span class="cx">                 position: from,
</span><del>-                title: WebInspector.UIString(&quot;The 'webkit' prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;),
</del><ins>+                title: WebInspector.UIString(&quot;The “webkit” prefix is needed for this property.\nClick to insert a duplicate with the prefix.&quot;),
</ins><span class="cx">                 correction: &quot;-webkit-&quot; + property.text + &quot;\n&quot; + property.text,
</span><span class="cx">                 autocomplete: false
</span><span class="cx">             };
</span><span class="lines">@@ -1134,7 +1134,7 @@
</span><span class="cx">                 // The property name has less than 3 other properties that have the same Levenshtein distance.
</span><span class="cx">                 invalidMarkerInfo = {
</span><span class="cx">                     position: from,
</span><del>-                    title: WebInspector.UIString(&quot;Did you mean '%s'?\nClick to replace.&quot;).format(closestPropertyName),
</del><ins>+                    title: WebInspector.UIString(&quot;Did you mean “%s”?\nClick to replace.&quot;).format(closestPropertyName),
</ins><span class="cx">                     correction: property.text.replace(property.name, closestPropertyName),
</span><span class="cx">                     autocomplete: true
</span><span class="cx">                 };
</span><span class="lines">@@ -1142,7 +1142,7 @@
</span><span class="cx">                 // The unprefixed property name has less than 3 other properties that have the same Levenshtein distance.
</span><span class="cx">                 invalidMarkerInfo = {
</span><span class="cx">                     position: from,
</span><del>-                    title: WebInspector.UIString(&quot;Did you mean '%s'?\nClick to replace.&quot;).format(&quot;-webkit-&quot; + closestPropertyName),
</del><ins>+                    title: WebInspector.UIString(&quot;Did you mean “%s”?\nClick to replace.&quot;).format(&quot;-webkit-&quot; + closestPropertyName),
</ins><span class="cx">                     correction: property.text.replace(property.canonicalName, closestPropertyName),
</span><span class="cx">                     autocomplete: true
</span><span class="cx">                 };
</span><span class="lines">@@ -1150,7 +1150,7 @@
</span><span class="cx">                 // The property name is so vague or nonsensical that there are more than 3 other properties that have the same Levenshtein value.
</span><span class="cx">                 invalidMarkerInfo = {
</span><span class="cx">                     position: from,
</span><del>-                    title: WebInspector.UIString(&quot;The property '%s' is not supported.&quot;).format(property.name),
</del><ins>+                    title: WebInspector.UIString(&quot;The property “%s” is not supported.&quot;).format(property.name),
</ins><span class="cx">                     correction: false,
</span><span class="cx">                     autocomplete: false
</span><span class="cx">                 };
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditor.js (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditor.js        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditor.js        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -291,7 +291,7 @@
</span><span class="cx"> 
</span><span class="cx">             if (!propertyMissing &amp;&amp; !property.valid) {
</span><span class="cx">                 this._warningElement.classList.add(&quot;invalid-value&quot;);
</span><del>-                this._warningElement.title = WebInspector.UIString(&quot;The value '%s' is not supported for this property.&quot;).format(propertyText);
</del><ins>+                this._warningElement.title = WebInspector.UIString(&quot;The value “%s” is not supported for this property.&quot;).format(propertyText);
</ins><span class="cx">                 this.specialPropertyPlaceholderElementText = propertyText;
</span><span class="cx">                 return;
</span><span class="cx">             }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorTreeItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorTreeItem.js (196183 => 196184)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorTreeItem.js        2016-02-05 21:19:04 UTC (rev 196183)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorTreeItem.js        2016-02-05 21:20:52 UTC (rev 196184)
</span><span class="lines">@@ -261,8 +261,8 @@
</span><span class="cx">         this._hasInvalidSelector = event &amp;&amp; event.data &amp;&amp; !event.data.valid;
</span><span class="cx">         this._listItemNode.classList.toggle(&quot;selector-invalid&quot;, !!this._hasInvalidSelector);
</span><span class="cx">         if (this._hasInvalidSelector) {
</span><del>-            this._iconElement.title = WebInspector.UIString(&quot;The selector '%s' is invalid.\nClick to revert to the previous selector.&quot;).format(this.selectorText);
-            this.mainTitleElement.title = WebInspector.UIString(&quot;Using the previous selector '%s'.&quot;).format(this.representedObject.ownerRule.selectorText);
</del><ins>+            this._iconElement.title = WebInspector.UIString(&quot;The selector “%s” is invalid.\nClick to revert to the previous selector.&quot;).format(this.selectorText);
+            this.mainTitleElement.title = WebInspector.UIString(&quot;Using the previous selector “%s”.&quot;).format(this.representedObject.ownerRule.selectorText);
</ins><span class="cx">             return;
</span><span class="cx">         }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>