Changeset 143465 in webkit


Ignore:
Timestamp:
Feb 20, 2013 8:08:23 AM (11 years ago)
Author:
apavlov@chromium.org
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.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143464 r143465  
     12013-02-20  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: CSSProperty.status defaults to "style" not "active"
     4        https://bugs.webkit.org/show_bug.cgi?id=110348
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * inspector/Inspector.json: Fix the default property status to be "style" in the description.
     9
    1102013-02-20  Dan Carney  <dcarney@google.com>
    211
  • trunk/Source/WebCore/inspector/Inspector.json

    r143333 r143465  
    23342334                    { "name": "text", "type": "string", "optional": true, "description": "The full property text as specified in the style." },
    23352335                    { "name": "parsedOk", "type": "boolean", "optional": true, "description": "Whether the property is understood by the browser (implies <code>true</code> if absent)." },
    2336                     { "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." },
     2336                    { "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." },
    23372337                    { "name": "range", "$ref": "SourceRange", "optional": true, "description": "The entire property range in the enclosing style declaration (if available)." }
    23382338                ],
Note: See TracChangeset for help on using the changeset viewer.