Closed
Bug 886036
Opened 12 years ago
Closed 12 years ago
Port pseudoclass lock to the inspector actor
Categories
(DevTools :: Inspector, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 25
People
(Reporter: dcamp, Assigned: dcamp)
References
Details
Attachments
(1 file, 1 obsolete file)
10.84 KB,
patch
|
harth
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Assignee | ||
Comment 1•12 years ago
|
||
Attachment #766331 -
Attachment is obsolete: true
Attachment #767381 -
Flags: review?(fayearthur)
Comment 2•12 years ago
|
||
Comment on attachment 767381 [details] [diff] [review]
v1
Review of attachment 767381 [details] [diff] [review]:
-----------------------------------------------------------------
::: browser/devtools/inspector/selection.js
@@ +93,5 @@
>
> if (attributeChange)
> this.emit("attribute-changed");
> + if (pseudoChange)
> + this.emit("pseudoclass");
If you add any more mutations here, you might want to consider a hash or something:
let changes = {};
for (let m of mutations) {
changes[m.type] = true;
}
for (let type in changes) {
this.emit(type);
}
I guess the detached case is a little more complicated. Looks alright right now.
Attachment #767381 -
Flags: review?(fayearthur) → review+
Assignee | ||
Comment 3•12 years ago
|
||
Assignee: nobody → dcamp
Whiteboard: [fixed-in-fx-team]
Comment 4•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 25
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•