Index: third_party/WebKit/LayoutTests/fast/events/resources/page-with-scrollable-div.html |
diff --git a/third_party/WebKit/LayoutTests/fast/events/resources/page-with-scrollable-div.html b/third_party/WebKit/LayoutTests/fast/events/resources/page-with-scrollable-div.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5184878db6d2cf5f02046eb347e174bc5115b942 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/events/resources/page-with-scrollable-div.html |
@@ -0,0 +1,21 @@ |
+<style> |
+ body { |
+ width: 800px; |
+ height: 800px; |
+ } |
+ |
+ #text-wrapper { |
+ padding: 20px; |
+ overflow-y: scroll; |
+ background-color:#ccc; |
+ height: 40px; |
+ width: 100px; |
+ } |
+</style> |
+<html> |
+ <body> |
+ <div id="text-wrapper"> |
+ <span id="select">This text could be anything but should be long enough to be scrollable.</span> |
+ </div> |
+ </body> |
+</html> |