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

Unified Diff: third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.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/accessibility/AccessibilityNodeView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js
index 704ccc8955321eee6683763af15cc557995a5396..12d78806a7477bb2571b1a10e039a19c21e89dd0 100644
--- a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js
+++ b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js
@@ -301,7 +301,7 @@ WebInspector.AXNodePropertyTreePropertyElement = function(property, axNode)
WebInspector.AXNodePropertyTreeElement.call(this, axNode);
this.listItemElement.classList.add("property");
-}
+};
WebInspector.AXNodePropertyTreePropertyElement.prototype = {
/**
@@ -339,7 +339,7 @@ WebInspector.AXValueSourceTreeElement = function(source, axNode)
this._source = source;
WebInspector.AXNodePropertyTreeElement.call(this, axNode);
this.selectable = false;
-}
+};
WebInspector.AXValueSourceTreeElement.prototype = {
/**
@@ -600,7 +600,7 @@ WebInspector.AXNodeIgnoredReasonTreeElement = function(property, axNode)
WebInspector.AXNodePropertyTreeElement.call(this, axNode);
this.toggleOnClick = true;
this.selectable = false;
-}
+};
WebInspector.AXNodeIgnoredReasonTreeElement.prototype = {
/**

Powered by Google App Engine
This is Rietveld 408576698