Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/scrollbar-and-element-hover.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/scrollbar-and-element-hover.html b/third_party/WebKit/Source/web/tests/data/scrollbar-and-element-hover.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e1ea02087c28c94c022a1014ea128509db7e76c8 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/tests/data/scrollbar-and-element-hover.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| + |
| +<style> |
| +#parent { |
| + position: absolute; |
| + top: 0; |
| + left: 0; |
| + height: 180px; |
| + width: 180px; |
| + overflow-y: scroll; |
| +} |
| +</style> |
| + |
| +<div id="parent"> |
| + <div id="child" style="position: absolute; top: 1000px;"> |
| + make scrollbar enabled |
| + </div> |
| +</div> |