]
Vlado Pakan closed JBIDE-17580.
-------------------------------
Verified with JBDS 8.0.0.Beta3-v20140706-0939-B172
Unable to scroll in CordovaSim (SWT.WEBKIT only) on Mac OS X
-------------------------------------------------------------
Key: JBIDE-17580
URL:
https://issues.jboss.org/browse/JBIDE-17580
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: browsersim
Affects Versions: 4.2.0.Beta2
Reporter: Vineet Reynolds
Assignee: Konstantin Marmalyukov
Fix For: 4.2.0.Beta3
Attachments: BrowserSimVsCordovaSim.png
When text overflows the screen, CordovaSim does not display a vertical scrollbar on the
Mac. This requires adding some CSS rest rules explicitly, namely this:
{noformat}
html, body {
overflow-x: hidden;
overflow-y: auto;
}
{noformat}
Then and only then does the vertical scrollbar appear. This CSS reset should not be
necessary only for the Mac. It is not required in other OSes and also not even on
BrowserSim (on Mac).