summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/inspector/front-end/treeoutline.js
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/front-end/treeoutline.js')
-rw-r--r--Source/WebCore/inspector/front-end/treeoutline.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/WebCore/inspector/front-end/treeoutline.js b/Source/WebCore/inspector/front-end/treeoutline.js
index fd02f4e02..814d33160 100644
--- a/Source/WebCore/inspector/front-end/treeoutline.js
+++ b/Source/WebCore/inspector/front-end/treeoutline.js
@@ -623,7 +623,6 @@ TreeElement.prototype = {
set title(x) {
this._title = x;
this._setListItemNodeContent();
- this.didChange();
},
get tooltip() {
@@ -634,7 +633,6 @@ TreeElement.prototype = {
this._tooltip = x;
if (this._listItemNode)
this._listItemNode.title = x ? x : "";
- this.didChange();
},
get hasChildren() {
@@ -656,8 +654,6 @@ TreeElement.prototype = {
this._listItemNode.classList.remove("parent");
this.collapse();
}
-
- this.didChange();
},
get hidden() {
@@ -693,21 +689,6 @@ TreeElement.prototype = {
this.expand();
},
- _fireDidChange: function()
- {
- delete this._didChangeTimeoutIdentifier;
- },
-
- didChange: function()
- {
- if (!this.treeOutline)
- return;
-
- // Prevent telling the TreeOutline multiple times in a row by delaying it with a timeout.
- if (!this._didChangeTimeoutIdentifier)
- this._didChangeTimeoutIdentifier = setTimeout(this._fireDidChange.bind(this), 0);
- },
-
_setListItemNodeContent: function()
{
if (!this._listItemNode)