Index: third_party/WebKit/Source/web/tests/data/root-scroller-div.html |
diff --git a/third_party/WebKit/Source/web/tests/data/root-scroller-div.html b/third_party/WebKit/Source/web/tests/data/root-scroller-div.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6154b8093745d3ef0e4dec6fa55b6b315937d5d0 |
--- /dev/null |
+++ b/third_party/WebKit/Source/web/tests/data/root-scroller-div.html |
@@ -0,0 +1,26 @@ |
+<!DOCTYPE html> |
+<meta name="viewport" content="width=device-width, minimum-scale=1"> |
+<style> |
+ body { |
+ width: 1600px; |
+ height: 1200px; |
+ margin: 0px; |
+ } |
+ #rootScroller { |
+ left: 0; |
+ top: 0; |
+ width: 100%; |
+ height: 100%; |
+ background-color: gray; |
+ position: absolute; |
+ overflow: auto; |
+ } |
+ #content { |
+ height: 1000px; |
+ width: 100px; |
+ background-color: red; |
+ } |
+</style> |
+<div id="rootScroller"> |
+ <div id="content"></div> |
+</div> |