Side navigation
#3377 closed bug (invalid)
Opened September 18, 2008 01:56PM UTC
Closed February 28, 2009 08:30PM UTC
Selector of ancestor/descendant is broken in IE 5.5
Reported by: | vdboor | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | 1.3 |
Component: | selector | Version: | 1.2.6 |
Keywords: | Cc: | vdboor, flesler | |
Blocked by: | Blocking: |
Description
In IE 5.5 the following returns 0 results:
alert( $("#filterSelectionbar li.drop").length )
On the other hand, the following statement does return results:
alert( $("#filterSelectionbar").find("li.drop").length )
While I know IE 5.5 isn't officially supported, I hope this can still be fixed because it seams like a small bug.
Attachments (1)
Change History (5)
Changed September 19, 2008 03:41PM UTC by comment:1
cc: | → vdboor, flesler |
---|---|
need: | Review → Test Case |
priority: | minor → trivial |
Changed October 27, 2008 12:37PM UTC by comment:2
I just noticed the ">" token is not visible in the ticket description. The first code line should have been:
alert( $("#filterSelectionbar > li.drop").length )
Changed October 29, 2008 11:27PM UTC by comment:3
Sadly I don't have IE 5.5 to test. I'll see what I can do.
Changed February 07, 2009 03:51AM UTC by comment:4
vdboor, can you see if this problem still exists in IE 5.5 under jQuery 1.3? Since the selector engine changed completely it may have gone away. Hopfully not replaced by dozens of other bugs.
Changed February 28, 2009 08:30PM UTC by comment:5
resolution: | → invalid |
---|---|
status: | new → closed |
I'll close this since the selector engine has been significantly changed.
Any space separated selector fails ?
Can you provide a test case that shows the 'pattern' of failure ?