Opened 15 years ago
Closed 12 years ago
#2278 closed bug
animate calculates the wrong height of element with implicit width
Reported by: | andreasc | Owned by: | andreasc |
---|---|---|---|
Priority: | low | Milestone: | 1.5 |
Component: | effects | Version: | 1.2.2 |
Keywords: | animate height | Cc: | |
Blocked by: | Blocking: |
Description
Full description: http://groups.google.com/group/jquery-dev/browse_thread/thread/f46d8dddfdf5eefc
Short description: When animating, for example sliding down an element (foo) inside an container (bar) with an explicit width, jquery doesnt take the width in to account when calculating the height of foo when its hidden. This could lead to jquery calculating the wrong height of foo if the width of bar makes text in foo linebreak like in the example in the full description url. It might sound vague but looking at the url above and the screenshots makes it a little more clear.
Suggested solution: When the position:absolute and visibillity: hidden is applied to the hidden element to determine its height an explicit width should be added calculated from its implicit width, once the correct height is determined, the explicit width can be removed.
As mentioned on the dev mailinglist Im not aware or sure about what kind of sideeffects a change like this could lead to, so i guess someone with good insight should say something about this first.
Change History (4)
comment:1 Changed 15 years ago by
Component: | core → fx |
---|
comment:2 Changed 13 years ago by
comment:3 Changed 12 years ago by
Milestone: | 1.2.3 → 1.5 |
---|---|
Owner: | set to andreasc |
Priority: | major → low |
Status: | new → pending |
Can we get any confirmation that this still exists as a bug, and perhaps a reduced test case? Thanks!
comment:4 Changed 12 years ago by
Status: | pending → closed |
---|
Automatically closed due to 14 days of inactivity.
Hmmm, I think I have encountered this and didn't realize what caused it. From the linked post:
...
Right, but the implicit width would be based on the width of the parent. If the parent is also hidden, then this same process would need to be repeated up the tree until we reach an element that isn't hidden. This seems like it's going to be a mess...