| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 importScript("Spectrum.js"); | 31 importScript("Spectrum.js"); |
| 32 importScript("DOMSyntaxHighlighter.js"); | 32 importScript("DOMSyntaxHighlighter.js"); |
| 33 importScript("ElementsTreeOutline.js"); | 33 importScript("ElementsTreeOutline.js"); |
| 34 importScript("EventListenersSidebarPane.js"); | 34 importScript("EventListenersSidebarPane.js"); |
| 35 importScript("MetricsSidebarPane.js"); | 35 importScript("MetricsSidebarPane.js"); |
| 36 importScript("PlatformFontsSidebarPane.js"); | 36 importScript("PlatformFontsSidebarPane.js"); |
| 37 importScript("PropertiesSidebarPane.js"); | 37 importScript("PropertiesSidebarPane.js"); |
| 38 importScript("RenderingOptionsView.js"); | |
| 39 importScript("StylesSidebarPane.js"); | 38 importScript("StylesSidebarPane.js"); |
| 40 | 39 |
| 41 /** | 40 /** |
| 42 * @constructor | 41 * @constructor |
| 43 * @implements {WebInspector.Searchable} | 42 * @implements {WebInspector.Searchable} |
| 44 * @implements {WebInspector.TargetManager.Observer} | 43 * @implements {WebInspector.TargetManager.Observer} |
| 45 * @extends {WebInspector.Panel} | 44 * @extends {WebInspector.Panel} |
| 46 */ | 45 */ |
| 47 WebInspector.ElementsPanel = function() | 46 WebInspector.ElementsPanel = function() |
| 48 { | 47 { |
| (...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 /** | 1471 /** |
| 1473 * @suppressReceiverCheck | 1472 * @suppressReceiverCheck |
| 1474 * @this {Element} | 1473 * @this {Element} |
| 1475 */ | 1474 */ |
| 1476 function parentElement() | 1475 function parentElement() |
| 1477 { | 1476 { |
| 1478 return this.parentElement; | 1477 return this.parentElement; |
| 1479 } | 1478 } |
| 1480 } | 1479 } |
| 1481 } | 1480 } |
| OLD | NEW |