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

Side by Side Diff: Source/devtools/front_end/elements/ElementsSidebarPane.js

Issue 1076453004: Show reasons why nodes are ignored in accessibility sidebar (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add a catch-all return to ignoredReasonName Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @constructor 6 * @constructor
7 * @extends {WebInspector.SidebarPane} 7 * @extends {WebInspector.SidebarPane}
8 * @param {string} title 8 * @param {string} title
9 */ 9 */
10 WebInspector.ElementsSidebarPane = function(title) 10 WebInspector.ElementsSidebarPane = function(title)
(...skipping 28 matching lines...) Expand all
39 doUpdate: function(finishedCallback) 39 doUpdate: function(finishedCallback)
40 { 40 {
41 finishedCallback(); 41 finishedCallback();
42 }, 42 },
43 43
44 update: function() 44 update: function()
45 { 45 {
46 this._updateController.update(); 46 this._updateController.update();
47 }, 47 },
48 48
49 wasShown: function() 49 wasShown: function()
50 { 50 {
51 WebInspector.SidebarPane.prototype.wasShown.call(this); 51 WebInspector.SidebarPane.prototype.wasShown.call(this);
52 this._updateController.viewWasShown(); 52 this._updateController.viewWasShown();
53 }, 53 },
54 54
55 __proto__: WebInspector.SidebarPane.prototype 55 __proto__: WebInspector.SidebarPane.prototype
56 } 56 }
57 57
58 /** 58 /**
59 * @constructor 59 * @constructor
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 * @override 151 * @override
152 * @return {!WebInspector.Widget} 152 * @return {!WebInspector.Widget}
153 */ 153 */
154 view: function() 154 view: function()
155 { 155 {
156 return this; 156 return this;
157 }, 157 },
158 158
159 __proto__: WebInspector.Widget.prototype 159 __proto__: WebInspector.Widget.prototype
160 } 160 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js ('k') | Source/devtools/front_end/ui/UIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698