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, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 virtual KURL baseURI() const OVERRIDE FINAL; | 238 virtual KURL baseURI() const OVERRIDE FINAL; |
239 | 239 |
240 virtual String nodeName() const OVERRIDE; | 240 virtual String nodeName() const OVERRIDE; |
241 | 241 |
242 PassRefPtr<Element> cloneElementWithChildren(); | 242 PassRefPtr<Element> cloneElementWithChildren(); |
243 PassRefPtr<Element> cloneElementWithoutChildren(); | 243 PassRefPtr<Element> cloneElementWithoutChildren(); |
244 | 244 |
245 void scheduleLayerUpdate(); | 245 void scheduleLayerUpdate(); |
246 | 246 |
247 void normalizeAttributes(); | 247 void normalizeAttributes(); |
248 String nodeNamePreservingCase() const; | |
249 | 248 |
250 void setBooleanAttribute(const QualifiedName& name, bool); | 249 void setBooleanAttribute(const QualifiedName& name, bool); |
251 | 250 |
252 virtual const StylePropertySet* additionalPresentationAttributeStyle() { ret
urn 0; } | 251 virtual const StylePropertySet* additionalPresentationAttributeStyle() { ret
urn 0; } |
253 void invalidateStyleAttribute(); | 252 void invalidateStyleAttribute(); |
254 | 253 |
255 const StylePropertySet* inlineStyle() const { return elementData() ? element
Data()->m_inlineStyle.get() : 0; } | 254 const StylePropertySet* inlineStyle() const { return elementData() ? element
Data()->m_inlineStyle.get() : 0; } |
256 | 255 |
257 bool setInlineStyleProperty(CSSPropertyID, CSSValueID identifier, bool impor
tant = false); | 256 bool setInlineStyleProperty(CSSPropertyID, CSSValueID identifier, bool impor
tant = false); |
258 bool setInlineStyleProperty(CSSPropertyID, CSSPropertyID identifier, bool im
portant = false); | 257 bool setInlineStyleProperty(CSSPropertyID, CSSPropertyID identifier, bool im
portant = false); |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 } | 889 } |
891 | 890 |
892 inline bool isShadowHost(const Element* element) | 891 inline bool isShadowHost(const Element* element) |
893 { | 892 { |
894 return element && element->shadow(); | 893 return element && element->shadow(); |
895 } | 894 } |
896 | 895 |
897 } // namespace | 896 } // namespace |
898 | 897 |
899 #endif | 898 #endif |
OLD | NEW |