Bug Tracker

Opened 12 years ago

Closed 12 years ago

#9598 closed enhancement (fixed)

width() does offsetWidth fallback unnecessarily if width=0 but padding or border > 0

Reported by: mikesherov Owned by:
Priority: undecided Milestone: 1.next
Component: unfiled Version: git
Keywords: Cc:
Blocked by: Blocking:

Description

In the latest updates, significant changes were made to cssHooks for width and height to address #9300 . However, it unnecessarily falls back from offsetWidth calculations when the width of the element is 0 and the padding or border is greater than 0.

The check if offsetWidth > 0 should happen before padding and border are stripped out.

Change History (2)

comment:2 Changed 12 years ago by Mike Sherov

Resolution: fixed
Status: newclosed

Landing pull request 413. Move border/padding checks to after width validation to avoid unnecessary fallbacks. Fixes #9598.

More Details:

Note: See TracTickets for help on using tickets.