| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 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 20 matching lines...) Expand all Loading... |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "core/inspector/InspectorDOMAgent.h" | 32 #include "core/inspector/InspectorDOMAgent.h" |
| 33 | 33 |
| 34 #include "CSSPropertyNames.h" | 34 #include "CSSPropertyNames.h" |
| 35 #include "HTMLElement.h" | 35 #include "HTMLElement.h" |
| 36 #include "HTMLFrameOwnerElement.h" | 36 #include "HTMLFrameOwnerElement.h" |
| 37 #include "HTMLInputElement.h" | 37 #include "HTMLInputElement.h" |
| 38 #include "HTMLNames.h" | 38 #include "HTMLNames.h" |
| 39 #include "HTMLTemplateElement.h" | 39 #include "HTMLTemplateElement.h" |
| 40 #include "InspectorFrontend.h" | 40 #include "InspectorFrontend.h" |
| 41 #include "ScriptEventListener.h" | 41 #include "bindings/v8/ScriptEventListener.h" |
| 42 #include "core/css/CSSComputedStyleDeclaration.h" | 42 #include "core/css/CSSComputedStyleDeclaration.h" |
| 43 #include "core/css/CSSPropertySourceData.h" | 43 #include "core/css/CSSPropertySourceData.h" |
| 44 #include "core/css/CSSRule.h" | 44 #include "core/css/CSSRule.h" |
| 45 #include "core/css/CSSRuleList.h" | 45 #include "core/css/CSSRuleList.h" |
| 46 #include "core/css/CSSStyleRule.h" | 46 #include "core/css/CSSStyleRule.h" |
| 47 #include "core/css/CSSStyleSheet.h" | 47 #include "core/css/CSSStyleSheet.h" |
| 48 #include "core/css/StylePropertySet.h" | 48 #include "core/css/StylePropertySet.h" |
| 49 #include "core/css/StyleResolver.h" | 49 #include "core/css/StyleResolver.h" |
| 50 #include "core/css/StyleSheetList.h" | 50 #include "core/css/StyleSheetList.h" |
| 51 #include "core/dom/Attr.h" | 51 #include "core/dom/Attr.h" |
| (...skipping 1763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 | 1815 |
| 1816 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m
ainWorldScriptState(frame)); | 1816 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m
ainWorldScriptState(frame)); |
| 1817 if (injectedScript.hasNoValue()) | 1817 if (injectedScript.hasNoValue()) |
| 1818 return 0; | 1818 return 0; |
| 1819 | 1819 |
| 1820 return injectedScript.wrapNode(node, objectGroup); | 1820 return injectedScript.wrapNode(node, objectGroup); |
| 1821 } | 1821 } |
| 1822 | 1822 |
| 1823 } // namespace WebCore | 1823 } // namespace WebCore |
| 1824 | 1824 |
| OLD | NEW |