1

Scrollbar in boxes with both overflow auto and pointer-events none are not responsive to clicks in firefox.

I have created a very basic jsfiddle reproducing the bug:

http://jsfiddle.net/PgaeC/2/

.out {
    overflow: auto;
    pointer-events: none;
    height: 100px;
}

.in {
    height: 200px;
}

this works in chrome and internet explorer (tested with ie9 and ie10) in firefox the scrollbar is unresponsive and cannot be clicked at all.

any idea how to give clicks back to the scrollbar in firefox ?

What i want is a box handling click, and another box sometimes going over it, grabbing clicks on its own, with a space on top where you can still interact with the bottom box, and the scrollbar spanning on the whole page like this : http://jsfiddle.net/NczQG/2/

EDIT: created bug in mozilla bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=880671

4

1 回答 1

1

(见https://bugzilla.mozilla.org/show_bug.cgi?id=880671

mozilla 团队修复了它: http ://hg.mozilla.org/mozilla-central/rev/f8bf18dceb1c

所以它固定在每晚。

于 2014-01-07T13:25:28.150 回答