#11801 closed defect (fixed)
Editor: scrollbar too short, doesn't use full height
Reported by: | bill | Owned by: | Jared Jurkiewicz |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | Editor | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
See test_FontChoice.html on FF (mac or windows). After fixing the missing semicolon in:
style="background-color: white; width: 100% height: 400px;"
becoming:
style="background-color: white; width: 100%; height: 400px;"
Then the scrollbar does not extend to the bottom of the Editor window. See attached screenshot.
Happens in 1.5 and trunk.
Attachments (1)
Change History (5)
Changed 10 years ago by
Attachment: | tooShort.gif added |
---|
comment:1 Changed 10 years ago by
Editor doesn't take the height from the style line, it takes it from the height attribute. Setting height via style is problematic because of that old height attribute, which cannot be removed until 2.0, as it is a breaking change.
The testcase needs to be updated to remove that style and set it via the param
comment:2 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 10 years ago by
Note there is a bug to remove that and just use the style height: http://bugs.dojotoolkit.org/ticket/6391
Fixed the testcase(s)
comment:4 Changed 10 years ago by
Milestone: | tbd → 1.6 |
---|
screenshot