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 |