зеркало из https://github.com/mozilla/gecko-dev.git
Bug 756003 - Check both overflow-x and overflow-y properties to see if an element is scrollable. r=mfinkle
This commit is contained in:
Родитель
216d5725af
Коммит
5bfcdef676
|
@ -2850,7 +2850,8 @@ var BrowserEventHandler = {
|
|||
var computedStyle = win.getComputedStyle(elem);
|
||||
if (!computedStyle)
|
||||
return false;
|
||||
return computedStyle.overflow == 'auto' || computedStyle.overflow == 'scroll';
|
||||
return computedStyle.overflowX == 'auto' || computedStyle.overflowX == 'scroll'
|
||||
|| computedStyle.overflowY == 'auto' || computedStyle.overflowY == 'scroll';
|
||||
},
|
||||
|
||||
_findScrollableElement: function(elem, checkElem) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче