| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
| 4 * rights reserved. | 4 * rights reserved. |
| 5 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. | 5 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "core/css/CSSKeyframesRule.h" | 29 #include "core/css/CSSKeyframesRule.h" |
| 30 #include "core/css/CSSStyleSheet.h" | 30 #include "core/css/CSSStyleSheet.h" |
| 31 #include "core/css/StylePropertySet.h" | 31 #include "core/css/StylePropertySet.h" |
| 32 #include "core/dom/Element.h" | 32 #include "core/dom/Element.h" |
| 33 #include "core/dom/MutationObserverInterestGroup.h" | 33 #include "core/dom/MutationObserverInterestGroup.h" |
| 34 #include "core/dom/MutationRecord.h" | 34 #include "core/dom/MutationRecord.h" |
| 35 #include "core/dom/StyleChangeReason.h" | 35 #include "core/dom/StyleChangeReason.h" |
| 36 #include "core/dom/StyleEngine.h" | 36 #include "core/dom/StyleEngine.h" |
| 37 #include "core/dom/custom/CustomElement.h" | 37 #include "core/dom/custom/CustomElement.h" |
| 38 #include "core/dom/custom/CustomElementDefinition.h" | 38 #include "core/dom/custom/CustomElementDefinition.h" |
| 39 #include "core/inspector/InspectorInstrumentation.h" | 39 #include "core/probe/CoreProbes.h" |
| 40 #include "platform/RuntimeEnabledFeatures.h" | 40 #include "platform/RuntimeEnabledFeatures.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 namespace { | 44 namespace { |
| 45 | 45 |
| 46 static CustomElementDefinition* definitionIfStyleChangedCallback( | 46 static CustomElementDefinition* definitionIfStyleChangedCallback( |
| 47 Element* element) { | 47 Element* element) { |
| 48 CustomElementDefinition* definition = | 48 CustomElementDefinition* definition = |
| 49 CustomElement::definitionForElement(element); | 49 CustomElement::definitionForElement(element); |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 return m_parentElement ? m_parentElement->document().propertyRegistry() | 419 return m_parentElement ? m_parentElement->document().propertyRegistry() |
| 420 : nullptr; | 420 : nullptr; |
| 421 } | 421 } |
| 422 | 422 |
| 423 DEFINE_TRACE(InlineCSSStyleDeclaration) { | 423 DEFINE_TRACE(InlineCSSStyleDeclaration) { |
| 424 visitor->trace(m_parentElement); | 424 visitor->trace(m_parentElement); |
| 425 AbstractPropertySetCSSStyleDeclaration::trace(visitor); | 425 AbstractPropertySetCSSStyleDeclaration::trace(visitor); |
| 426 } | 426 } |
| 427 | 427 |
| 428 } // namespace blink | 428 } // namespace blink |
| OLD | NEW |