| Index: LayoutTests/fast/scrolling/absolute-position-behind-scrollbar.html
|
| diff --git a/LayoutTests/fast/scrolling/absolute-position-behind-scrollbar.html b/LayoutTests/fast/scrolling/absolute-position-behind-scrollbar.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9f1679037db9d90d64fee3f8f1811d7643a7712b
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/scrolling/absolute-position-behind-scrollbar.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/js-test.js"></script>
|
| +<style>
|
| +#a {
|
| + position: absolute;
|
| + background-color: #def;
|
| + left: 100px;
|
| + top: 100px;
|
| + width: 1000px;
|
| + height: 1000px;
|
| +}
|
| +</style>
|
| +Tests that the scrollbar can be clicked even when it clips absolute-positioned content.
|
| +<div id="a"></div>
|
| +<script>
|
| +
|
| +eventSender.mouseMoveTo(790, 500);
|
| +eventSender.mouseDown();
|
| +eventSender.mouseUp();
|
| +
|
| +shouldBeTrue(String(scrollY > 0));
|
| +
|
| +</script>
|
|
|