Side navigation
#8635 closed bug (fixed)
Opened March 25, 2011 05:45AM UTC
Closed March 28, 2011 04:54PM UTC
Last modified March 17, 2012 08:42PM UTC
Firefox: uncaught exception at line 1285
Reported by: | ruiz | Owned by: | rwaldron |
---|---|---|---|
Priority: | blocker | Milestone: | 1.5.2 |
Component: | support | Version: | 1.5.2rc1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I'm getting this error in Firefox 3.6:
uncaught exception: [Exception... "Not enough arguments" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" location: "JS frame :: http://domain.com/jquery-1.5.2rc1.js :: anonymous :: line 1285" data: no]
Adding null as a second argument for getComputedStyle() in line 1285 corrects it:
jQuery.support.reliableMarginRight = ( parseInt(document.defaultView.getComputedStyle(div,null).marginRight, 10) || 0 ) === 0;
Attachments (0)
Change History (5)
Changed March 25, 2011 03:50PM UTC by comment:1
component: | unfiled → support |
---|---|
milestone: | 1.next → 1.5.2 |
priority: | undecided → blocker |
Changed March 28, 2011 04:37PM UTC by comment:2
owner: | → rwaldron |
---|---|
status: | new → assigned |
https://github.com/jquery/jquery/pull/289
Adds null
arg per recommendation
Changed March 28, 2011 04:54PM UTC by comment:3
resolution: | → fixed |
---|---|
status: | assigned → closed |
Landed.