Opened 7 years ago
Closed 6 years ago
#18070 closed defect (duplicate)
IE11: Richtext has same min-height problem like former IE versions but fix still uses has("ie") as only condition
Reported by: | towby | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | Editor | Version: | 1.9.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
In Richtext.js:658
The min-height (move/resize handles on LI) IE bugfix uses has("ie") as condition. IE 11 has the same bug so it would be nice if the condition could be extended to:
(!has("ie") && !has("trident") ? "\tli{ min-height:1.2em; }\n" : "")
Attachments (1)
Change History (4)
Changed 7 years ago by
Attachment: | 18070.patch added |
---|
comment:1 Changed 7 years ago by
The attached patch fixes the condition.
I added a test case in Editor_misc.html named "min-height on LI" and also refactored the test script to AMD loader structure. (some function calls within the test cases still use global dojo object)
comment:2 Changed 6 years ago by
Component: | Dijit → Editor |
---|
comment:3 Changed 6 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
18070.patch