| 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 24 matching lines...) Expand all Loading... |
| 35 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
| 36 #include "InspectorFrontend.h" | 36 #include "InspectorFrontend.h" |
| 37 #include "bindings/v8/ScriptEventListener.h" | 37 #include "bindings/v8/ScriptEventListener.h" |
| 38 #include "core/css/CSSComputedStyleDeclaration.h" | 38 #include "core/css/CSSComputedStyleDeclaration.h" |
| 39 #include "core/css/CSSPropertySourceData.h" | 39 #include "core/css/CSSPropertySourceData.h" |
| 40 #include "core/css/CSSRule.h" | 40 #include "core/css/CSSRule.h" |
| 41 #include "core/css/CSSRuleList.h" | 41 #include "core/css/CSSRuleList.h" |
| 42 #include "core/css/CSSStyleRule.h" | 42 #include "core/css/CSSStyleRule.h" |
| 43 #include "core/css/CSSStyleSheet.h" | 43 #include "core/css/CSSStyleSheet.h" |
| 44 #include "core/css/StylePropertySet.h" | 44 #include "core/css/StylePropertySet.h" |
| 45 #include "core/css/StyleResolver.h" | |
| 46 #include "core/css/StyleSheetList.h" | 45 #include "core/css/StyleSheetList.h" |
| 46 #include "core/css/resolver/StyleResolver.h" |
| 47 #include "core/dom/Attr.h" | 47 #include "core/dom/Attr.h" |
| 48 #include "core/dom/CharacterData.h" | 48 #include "core/dom/CharacterData.h" |
| 49 #include "core/dom/ContainerNode.h" | 49 #include "core/dom/ContainerNode.h" |
| 50 #include "core/dom/Document.h" | 50 #include "core/dom/Document.h" |
| 51 #include "core/dom/DocumentFragment.h" | 51 #include "core/dom/DocumentFragment.h" |
| 52 #include "core/dom/DocumentType.h" | 52 #include "core/dom/DocumentType.h" |
| 53 #include "core/dom/Element.h" | 53 #include "core/dom/Element.h" |
| 54 #include "core/dom/ElementShadow.h" | 54 #include "core/dom/ElementShadow.h" |
| 55 #include "core/dom/Event.h" | 55 #include "core/dom/Event.h" |
| 56 #include "core/dom/EventContext.h" | 56 #include "core/dom/EventContext.h" |
| (...skipping 1773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1830 | 1830 |
| 1831 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m
ainWorldScriptState(frame)); | 1831 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m
ainWorldScriptState(frame)); |
| 1832 if (injectedScript.hasNoValue()) | 1832 if (injectedScript.hasNoValue()) |
| 1833 return 0; | 1833 return 0; |
| 1834 | 1834 |
| 1835 return injectedScript.wrapNode(node, objectGroup); | 1835 return injectedScript.wrapNode(node, objectGroup); |
| 1836 } | 1836 } |
| 1837 | 1837 |
| 1838 } // namespace WebCore | 1838 } // namespace WebCore |
| 1839 | 1839 |
| OLD | NEW |