Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: Source/core/dom/Element.h

Issue 15027005: [CSS Regions] Elements in a region should be assignable to a named flow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 bool isInTopLayer() const; 580 bool isInTopLayer() const;
581 void setIsInTopLayer(bool); 581 void setIsInTopLayer(bool);
582 582
583 void webkitRequestPointerLock(); 583 void webkitRequestPointerLock();
584 584
585 bool isSpellCheckingEnabled() const; 585 bool isSpellCheckingEnabled() const;
586 586
587 PassRefPtr<RenderStyle> styleForRenderer(); 587 PassRefPtr<RenderStyle> styleForRenderer();
588 588
589 RenderRegion* renderRegion() const; 589 RenderRegion* renderRegion() const;
590 virtual bool moveToFlowThreadIsNeeded(RefPtr<RenderStyle>& cachedStyle);
590 const AtomicString& webkitRegionOverset() const; 591 const AtomicString& webkitRegionOverset() const;
591 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const; 592 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const;
592 593
593 bool hasID() const; 594 bool hasID() const;
594 bool hasClass() const; 595 bool hasClass() const;
595 const SpaceSplitString& classNames() const; 596 const SpaceSplitString& classNames() const;
596 597
597 IntSize savedLayerScrollOffset() const; 598 IntSize savedLayerScrollOffset() const;
598 void setSavedLayerScrollOffset(const IntSize&); 599 void setSavedLayerScrollOffset(const IntSize&);
599 600
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 1009
1009 inline const Attribute* ElementData::attributeItem(unsigned index) const 1010 inline const Attribute* ElementData::attributeItem(unsigned index) const
1010 { 1011 {
1011 RELEASE_ASSERT(index < length()); 1012 RELEASE_ASSERT(index < length());
1012 return attributeBase() + index; 1013 return attributeBase() + index;
1013 } 1014 }
1014 1015
1015 } // namespace 1016 } // namespace
1016 1017
1017 #endif 1018 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698