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

Unified Diff: Source/core/dom/Document.cpp

Issue 1075393002: Implement Document.scrollingElement API behind experimental feature flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index 2db28fbdbfe5ed72ccc9c380b25e3289229df80d..0cd9bba9987c6553f1234dfef5184fbd22a1bde4 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -1266,6 +1266,23 @@ PassRefPtrWillBeRawPtr<Range> Document::caretRangeFromPoint(int x, int y)
return Range::createAdjustedToTreeScope(*this, rangeCompliantPosition);
}
+Element* Document::scrollingElement() const
+{
+ if (RuntimeEnabledFeatures::scrollTopLeftInteropEnabled()) {
+ if (inQuirksMode()) {
+ // TODO: Do we want this?
+ if (body()->layoutBox() && body()->layoutBox()->hasOverflowClip())
+ return nullptr;
+
+ return body();
+ }
+
+ return documentElement();
+ }
+
+ return body();
+}
+
/*
* Performs three operations:
* 1. Convert control characters to spaces

Powered by Google App Engine
This is Rietveld 408576698