OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Joseph Pecoraro | 3 * Copyright (C) 2009 Joseph Pecoraro |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 * @override | 252 * @override |
253 */ | 253 */ |
254 onCSSModelChanged: function() | 254 onCSSModelChanged: function() |
255 { | 255 { |
256 this._resetCache(); | 256 this._resetCache(); |
257 this.update(); | 257 this.update(); |
258 }, | 258 }, |
259 | 259 |
260 /** | 260 /** |
261 * @override | 261 * @override |
262 * @param {!WebInspector.DOMNode} changedNode | |
263 */ | 262 */ |
264 onDOMNodeChanged: function(changedNode) | 263 onDOMModelChanged: function() |
265 { | 264 { |
266 this._resetCache(); | 265 this._resetCache(); |
267 this.update(); | 266 this.update(); |
268 }, | 267 }, |
269 | 268 |
270 __proto__: WebInspector.ElementsSidebarPane.prototype | 269 __proto__: WebInspector.ElementsSidebarPane.prototype |
271 } | 270 } |
OLD | NEW |