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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 bool isInTopLayer() const; | 575 bool isInTopLayer() const; |
576 void setIsInTopLayer(bool); | 576 void setIsInTopLayer(bool); |
577 | 577 |
578 void webkitRequestPointerLock(); | 578 void webkitRequestPointerLock(); |
579 | 579 |
580 bool isSpellCheckingEnabled() const; | 580 bool isSpellCheckingEnabled() const; |
581 | 581 |
582 PassRefPtr<RenderStyle> styleForRenderer(); | 582 PassRefPtr<RenderStyle> styleForRenderer(); |
583 | 583 |
584 RenderRegion* renderRegion() const; | 584 RenderRegion* renderRegion() const; |
585 #if ENABLE(CSS_REGIONS) | |
586 const AtomicString& webkitRegionOverset() const; | 585 const AtomicString& webkitRegionOverset() const; |
587 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const; | 586 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const; |
588 #endif | |
589 | 587 |
590 bool hasID() const; | 588 bool hasID() const; |
591 bool hasClass() const; | 589 bool hasClass() const; |
592 const SpaceSplitString& classNames() const; | 590 const SpaceSplitString& classNames() const; |
593 | 591 |
594 IntSize savedLayerScrollOffset() const; | 592 IntSize savedLayerScrollOffset() const; |
595 void setSavedLayerScrollOffset(const IntSize&); | 593 void setSavedLayerScrollOffset(const IntSize&); |
596 | 594 |
597 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | 595 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; |
598 | 596 |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 | 996 |
999 inline const Attribute* ElementData::attributeItem(unsigned index) const | 997 inline const Attribute* ElementData::attributeItem(unsigned index) const |
1000 { | 998 { |
1001 RELEASE_ASSERT(index < length()); | 999 RELEASE_ASSERT(index < length()); |
1002 return attributeBase() + index; | 1000 return attributeBase() + index; |
1003 } | 1001 } |
1004 | 1002 |
1005 } // namespace | 1003 } // namespace |
1006 | 1004 |
1007 #endif | 1005 #endif |
OLD | NEW |