Bug 88706 - Web Inspector: Support user attributes in DOMNode
Summary: Web Inspector: Support user attributes in DOMNode
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Alexander Pavlov (apavlov)
URL:
Keywords:
Depends on:
Blocks: 86630
  Show dependency treegraph
 
Reported: 2012-06-09 04:25 PDT by Alexander Pavlov (apavlov)
Modified: 2012-06-13 08:04 PDT (History)
10 users (show)

See Also:


Attachments
Patch (15.83 KB, patch)
2012-06-13 06:40 PDT, Alexander Pavlov (apavlov)
pfeldman: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Pavlov (apavlov) 2012-06-09 04:25:21 PDT
This is needed for decorating DOM elements in the tree outline. It should be possible to determine if an element's children have a given user attribute defined, too.
Comment 1 Alexander Pavlov (apavlov) 2012-06-13 06:40:30 PDT
Created attachment 147307 [details]
Patch
Comment 2 Pavel Feldman 2012-06-13 07:27:22 PDT
Comment on attachment 147307 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=147307&action=review

> Source/WebCore/inspector/front-end/DOMAgent.js:707
> +    setUserAttribute: function(name, value)

setUserProperty ?

> Source/WebCore/inspector/front-end/DOMAgent.js:712
> +            var didHaveAttribute = this._userAttributes[name] !== null && this._userAttributes[name] !== undefined && this._userAttributes[name] !== false;

Lets clear on "null" only

> Source/WebCore/inspector/front-end/DOMAgent.js:718
> +        if (nowHaveAttribute)

This looks weird, I would extract "remove" method

> Source/WebCore/inspector/front-end/DOMAgent.js:731
> +        return this._descendantUserAttributeCounters && this._descendantUserAttributeCounters[name] ? this._descendantUserAttributeCounters[name] : 0;

I think this._descendantUserAttributeCounters can exist at all times.
Comment 3 Alexander Pavlov (apavlov) 2012-06-13 08:04:16 PDT
Committed r120208: <http://trac.webkit.org/changeset/120208>