Title: [143465] trunk/Source/WebCore
Revision
143465
Author
apav...@chromium.org
Date
2013-02-20 08:08:23 -0800 (Wed, 20 Feb 2013)

Log Message

Web Inspector: CSSProperty.status defaults to "style" not "active"
https://bugs.webkit.org/show_bug.cgi?id=110348

Reviewed by Timothy Hatcher.

* inspector/Inspector.json: Fix the default property status to be "style" in the description.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143464 => 143465)


--- trunk/Source/WebCore/ChangeLog	2013-02-20 15:38:57 UTC (rev 143464)
+++ trunk/Source/WebCore/ChangeLog	2013-02-20 16:08:23 UTC (rev 143465)
@@ -1,3 +1,12 @@
+2013-02-20  Alexander Pavlov  <apav...@chromium.org>
+
+        Web Inspector: CSSProperty.status defaults to "style" not "active"
+        https://bugs.webkit.org/show_bug.cgi?id=110348
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/Inspector.json: Fix the default property status to be "style" in the description.
+
 2013-02-20  Dan Carney  <dcar...@google.com>
 
         [v8] potentially disposed handle returned for npapi object

Modified: trunk/Source/WebCore/inspector/Inspector.json (143464 => 143465)


--- trunk/Source/WebCore/inspector/Inspector.json	2013-02-20 15:38:57 UTC (rev 143464)
+++ trunk/Source/WebCore/inspector/Inspector.json	2013-02-20 16:08:23 UTC (rev 143465)
@@ -2333,7 +2333,7 @@
                     { "name": "implicit", "type": "boolean", "optional": true, "description": "Whether the property is implicit (implies <code>false</code> if absent)." },
                     { "name": "text", "type": "string", "optional": true, "description": "The full property text as specified in the style." },
                     { "name": "parsedOk", "type": "boolean", "optional": true, "description": "Whether the property is understood by the browser (implies <code>true</code> if absent)." },
-                    { "name": "status", "type": "string", "enum": ["active", "inactive", "disabled", "style"], "optional": true, "description": "The property status: \"active\" (implied if absent) if the property is effective in the style, \"inactive\" if the property is overridden by a same-named property in this style later on, \"disabled\" if the property is disabled by the user, \"style\" if the property is reported by the browser rather than by the CSS source parser." },
+                    { "name": "status", "type": "string", "enum": ["active", "inactive", "disabled", "style"], "optional": true, "description": "The property status: \"active\" if the property is effective in the style, \"inactive\" if the property is overridden by a same-named property in this style later on, \"disabled\" if the property is disabled by the user, \"style\" (implied if absent) if the property is reported by the browser rather than by the CSS source parser." },
                     { "name": "range", "$ref": "SourceRange", "optional": true, "description": "The entire property range in the enclosing style declaration (if available)." }
                 ],
                 "description": "CSS style effective visual dimensions and source offsets."
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to