Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. | 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 642 bool isDocumentNode() const = delete; // This will catch anyone doing an unn ecessary check. | 642 bool isDocumentNode() const = delete; // This will catch anyone doing an unn ecessary check. |
| 643 | 643 |
| 644 void styleAttributeChanged(const AtomicString& newStyleString, AttributeModi ficationReason); | 644 void styleAttributeChanged(const AtomicString& newStyleString, AttributeModi ficationReason); |
| 645 | 645 |
| 646 void updatePresentationAttributeStyle(); | 646 void updatePresentationAttributeStyle(); |
| 647 | 647 |
| 648 void inlineStyleChanged(); | 648 void inlineStyleChanged(); |
| 649 PropertySetCSSStyleDeclaration* inlineStyleCSSOMWrapper(); | 649 PropertySetCSSStyleDeclaration* inlineStyleCSSOMWrapper(); |
| 650 void setInlineStyleFromString(const AtomicString&); | 650 void setInlineStyleFromString(const AtomicString&); |
| 651 | 651 |
| 652 // Returns whether the parent contains independent-only inherited changes | |
| 653 // that can be directly propagated to the child. | |
|
meade_UTC10
2016/07/13 07:29:13
I found this a little hard to understand - "the ch
sashab
2016/07/14 05:08:41
Yup :) clarified the comment.
| |
| 654 bool canPropagateInheritedProperties(StyleRecalcChange); | |
| 655 | |
| 652 StyleRecalcChange recalcOwnStyle(StyleRecalcChange); | 656 StyleRecalcChange recalcOwnStyle(StyleRecalcChange); |
| 653 // TODO(nainar): Make this const ComputedStyle&. | 657 // TODO(nainar): Make this const ComputedStyle&. |
| 654 StyleRecalcChange buildOwnLayout(ComputedStyle&); | 658 StyleRecalcChange buildOwnLayout(ComputedStyle&); |
| 655 | 659 |
| 656 inline void checkForEmptyStyleChange(); | 660 inline void checkForEmptyStyleChange(); |
| 657 | 661 |
| 658 void updatePseudoElement(PseudoId, StyleRecalcChange); | 662 void updatePseudoElement(PseudoId, StyleRecalcChange); |
| 659 bool updateFirstLetter(Element*); | 663 bool updateFirstLetter(Element*); |
| 660 | 664 |
| 661 inline void createPseudoElementIfNeeded(PseudoId); | 665 inline void createPseudoElementIfNeeded(PseudoId); |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 968 static T* create(const QualifiedName&, Document&) | 972 static T* create(const QualifiedName&, Document&) |
| 969 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 973 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 970 T* T::create(const QualifiedName& tagName, Document& document) \ | 974 T* T::create(const QualifiedName& tagName, Document& document) \ |
| 971 { \ | 975 { \ |
| 972 return new T(tagName, document); \ | 976 return new T(tagName, document); \ |
| 973 } | 977 } |
| 974 | 978 |
| 975 } // namespace blink | 979 } // namespace blink |
| 976 | 980 |
| 977 #endif // Element_h | 981 #endif // Element_h |
| OLD | NEW |