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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 | 528 |
529 virtual String title() const { return String(); } | 529 virtual String title() const { return String(); } |
530 | 530 |
531 const AtomicString& pseudo() const; | 531 const AtomicString& pseudo() const; |
532 virtual const AtomicString& part() const; | 532 virtual const AtomicString& part() const; |
533 void setPart(const AtomicString&); | 533 void setPart(const AtomicString&); |
534 | 534 |
535 LayoutSize minimumSizeForResizing() const; | 535 LayoutSize minimumSizeForResizing() const; |
536 void setMinimumSizeForResizing(const LayoutSize&); | 536 void setMinimumSizeForResizing(const LayoutSize&); |
537 | 537 |
538 virtual void didBecomeFullscreenElement() { } | 538 virtual void didBecomeFullscreenElement(); |
539 virtual void willStopBeingFullscreenElement() { } | 539 virtual void willStopBeingFullscreenElement(); |
540 | 540 |
541 bool isFinishedParsingChildren() const { return isParsingChildrenFinished();
} | 541 bool isFinishedParsingChildren() const { return isParsingChildrenFinished();
} |
542 virtual void finishParsingChildren(); | 542 virtual void finishParsingChildren(); |
543 virtual void beginParsingChildren() OVERRIDE FINAL; | 543 virtual void beginParsingChildren() OVERRIDE FINAL; |
544 | 544 |
545 PseudoElement* pseudoElement(PseudoId) const; | 545 PseudoElement* pseudoElement(PseudoId) const; |
546 RenderObject* pseudoElementRenderer(PseudoId) const; | 546 RenderObject* pseudoElementRenderer(PseudoId) const; |
547 | 547 |
548 virtual bool matchesReadOnlyPseudoClass() const { return false; } | 548 virtual bool matchesReadOnlyPseudoClass() const { return false; } |
549 virtual bool matchesReadWritePseudoClass() const { return false; } | 549 virtual bool matchesReadWritePseudoClass() const { return false; } |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 | 1091 |
1092 inline const Attribute* ElementData::attributeItem(unsigned index) const | 1092 inline const Attribute* ElementData::attributeItem(unsigned index) const |
1093 { | 1093 { |
1094 RELEASE_ASSERT(index < length()); | 1094 RELEASE_ASSERT(index < length()); |
1095 return attributeBase() + index; | 1095 return attributeBase() + index; |
1096 } | 1096 } |
1097 | 1097 |
1098 } // namespace | 1098 } // namespace |
1099 | 1099 |
1100 #endif | 1100 #endif |
OLD | NEW |