Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js
index 2fed09bc91463307c6006a0c8fe2f17153e1e32c..9b78417fe0b6dd75761fe0da157f56736f0fcf74 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeElement.js
@@ -50,7 +50,7 @@ WebInspector.ElementsTreeElement = function(node, elementCloseTag)
this._canAddAttributes = true;
this._searchQuery = null;
this._expandedChildrenLimit = WebInspector.ElementsTreeElement.InitialChildrenLimit;
-}
+};
WebInspector.ElementsTreeElement.InitialChildrenLimit = 500;
@@ -73,7 +73,7 @@ WebInspector.ElementsTreeElement.animateOnDOMUpdate = function(treeElement)
{
var tagName = treeElement.listItemElement.querySelector(".webkit-html-tag-name");
WebInspector.runCSSAnimationOnce(tagName || treeElement.listItemElement, "dom-update-highlight");
-}
+};
/**
* @param {!WebInspector.DOMNode} node
@@ -93,7 +93,7 @@ WebInspector.ElementsTreeElement.visibleShadowRoots = function(node)
return root.shadowRootType() !== WebInspector.DOMNode.ShadowRootTypes.UserAgent;
}
return roots;
-}
+};
/**
* @param {!WebInspector.DOMNode} node
@@ -112,7 +112,7 @@ WebInspector.ElementsTreeElement.canShowInlineText = function(node)
if (textChild.nodeValue().length < maxInlineTextChildLength)
return true;
return false;
-}
+};
/**
* @param {!WebInspector.ContextSubMenuItem} subMenu
@@ -135,7 +135,7 @@ WebInspector.ElementsTreeElement.populateForcedPseudoStateItems = function(subMe
{
WebInspector.CSSModel.fromNode(node).forcePseudoState(node, pseudoState, enabled);
}
-}
+};
WebInspector.ElementsTreeElement.prototype = {
/**
@@ -1641,4 +1641,4 @@ WebInspector.ElementsTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698