Skip to main content

Bug Tracker

Side navigation

#6789 closed bug ()

Opened July 14, 2010 10:20AM UTC

Closed November 11, 2010 11:09PM UTC

Check on nodeName results in an error

Reported by: Matthijs Steen Owned by:
Priority: Milestone: 1.4.3
Component: selector Version: 1.4.2
Keywords: Cc:
Blocked by: Blocking:
Description

The following line:

return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match;

at Sizzle.selectors.filter.TAG is causing errors when using the jQuery.is('tag'); method.

The line should be rewritten to:

return (match === "*" && elem.nodeType === 1) || elem.nodeName && elem.nodeName.toLowerCase() === match;

Attachments (0)
Change History (4)

Changed July 21, 2010 01:21AM UTC by dmethvin comment:1

Do you have a test case that will cause the error you are seeing? What is the error?

Changed August 21, 2010 01:10PM UTC by dmethvin comment:2

need: CommitTest Case

Changed October 14, 2010 03:14AM UTC by snover comment:3

status: newpending

This ticket has been marked as missing a test case. In an effort to reduce the number of outstanding tickets in the bug tracker, it will be closed automatically in 30 days. In order to prevent this from happening, please provide a working test case. If a test case has already been provided and our records are wrong, please respond to the ticket so that it can be fixed. Thank you!

Changed November 11, 2010 11:09PM UTC by trac-o-bot comment:4

status: pendingclosed

Automatically closed due to 14 days of inactivity.