| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 | 531 |
| 532 // FIXME: pseudo should be deprecated after all pseudo is replaced with ::pa
rt. | 532 // FIXME: pseudo should be deprecated after all pseudo is replaced with ::pa
rt. |
| 533 const AtomicString& pseudo() const; | 533 const AtomicString& pseudo() const; |
| 534 void setPseudo(const AtomicString&); | 534 void setPseudo(const AtomicString&); |
| 535 const AtomicString& part() const; | 535 const AtomicString& part() const; |
| 536 void setPart(const AtomicString&); | 536 void setPart(const AtomicString&); |
| 537 | 537 |
| 538 LayoutSize minimumSizeForResizing() const; | 538 LayoutSize minimumSizeForResizing() const; |
| 539 void setMinimumSizeForResizing(const LayoutSize&); | 539 void setMinimumSizeForResizing(const LayoutSize&); |
| 540 | 540 |
| 541 virtual void didBecomeFullscreenElement() { } | 541 virtual void didBecomeFullscreenElement(); |
| 542 virtual void willStopBeingFullscreenElement() { } | 542 virtual void willStopBeingFullscreenElement(); |
| 543 | 543 |
| 544 bool isFinishedParsingChildren() const { return isParsingChildrenFinished();
} | 544 bool isFinishedParsingChildren() const { return isParsingChildrenFinished();
} |
| 545 virtual void finishParsingChildren(); | 545 virtual void finishParsingChildren(); |
| 546 virtual void beginParsingChildren() OVERRIDE FINAL; | 546 virtual void beginParsingChildren() OVERRIDE FINAL; |
| 547 | 547 |
| 548 PseudoElement* pseudoElement(PseudoId) const; | 548 PseudoElement* pseudoElement(PseudoId) const; |
| 549 RenderObject* pseudoElementRenderer(PseudoId) const; | 549 RenderObject* pseudoElementRenderer(PseudoId) const; |
| 550 | 550 |
| 551 virtual bool matchesReadOnlyPseudoClass() const { return false; } | 551 virtual bool matchesReadOnlyPseudoClass() const { return false; } |
| 552 virtual bool matchesReadWritePseudoClass() const { return false; } | 552 virtual bool matchesReadWritePseudoClass() const { return false; } |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 | 1088 |
| 1089 inline const Attribute* ElementData::attributeItem(unsigned index) const | 1089 inline const Attribute* ElementData::attributeItem(unsigned index) const |
| 1090 { | 1090 { |
| 1091 RELEASE_ASSERT(index < length()); | 1091 RELEASE_ASSERT(index < length()); |
| 1092 return attributeBase() + index; | 1092 return attributeBase() + index; |
| 1093 } | 1093 } |
| 1094 | 1094 |
| 1095 } // namespace | 1095 } // namespace |
| 1096 | 1096 |
| 1097 #endif | 1097 #endif |
| OLD | NEW |