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

Unified Diff: Source/core/dom/Element.h

Issue 18080016: [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, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index 521ff69970b4afc6536379ca8139f1a627f4ca24..0efe611f025884a132ddca817bd50eadfe1d1030 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -481,6 +481,9 @@ public:
bool isUnresolvedCustomElement();
+ void setIsDOMChildOfRegion(bool);
+ bool isDOMChildOfRegion() const;
esprehn 2013/06/28 20:29:36 Remove "DOM" from the name. This is an Element so
+
void setRegionOversetState(RegionOversetState);
RegionOversetState regionOversetState() const;
@@ -605,6 +608,7 @@ public:
PassRefPtr<RenderStyle> originalStyleForRenderer();
RenderRegion* renderRegion() const;
+ virtual bool shouldMoveToFlowThread(RenderStyle*) const;
const AtomicString& webkitRegionOverset() const;
Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const;

Powered by Google App Engine
This is Rietveld 408576698