author | Julian Descottes <jdescottes@mozilla.com> |
Fri, 23 Mar 2018 14:47:52 +0100 | |
changeset 411526 | 4e884e689aada1cfec78a41e8d89bf0229f0d8fc |
parent 411525 | 801d1d90b2ffcca423d9cee10509169318890b8c |
child 411527 | 8a98c1c77c43ab2b8461ac81235ca500b0ac3402 |
push id | 101686 |
push user | aciure@mozilla.com |
push date | Tue, 03 Apr 2018 21:59:31 +0000 |
treeherder | mozilla-inbound@8d846598d35d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | pbro |
bugs | 1448320 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/devtools/client/inspector/rules/rules.js +++ b/devtools/client/inspector/rules/rules.js @@ -1745,16 +1745,17 @@ function RuleViewTool(inspector, window) this.document = window.document; this.view = new CssRuleView(this.inspector, this.document); this.clearUserProperties = this.clearUserProperties.bind(this); this.refresh = this.refresh.bind(this); this.onDetachedFront = this.onDetachedFront.bind(this); this.onPanelSelected = this.onPanelSelected.bind(this); + this.onDetachedFront = this.onDetachedFront.bind(this); this.onSelected = this.onSelected.bind(this); this.onViewRefreshed = this.onViewRefreshed.bind(this); this.view.on("ruleview-refreshed", this.onViewRefreshed); this.inspector.selection.on("detached-front", this.onDetachedFront); this.inspector.selection.on("new-node-front", this.onSelected); this.inspector.selection.on("pseudoclass", this.refresh); this.inspector.target.on("navigate", this.clearUserProperties);