#4640 closed defect (fixed)
Dojo.Query for direct children fails with >*
Reported by: | guest | Owned by: | alex |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Query | Version: | 0.9 |
Keywords: | Cc: | [email protected]… | |
Blocked By: | Blocking: |
Description
I am replacing prototype.js code with dojo. They had an immideateDescendants method, which returned all of the childNodes (all non whitespace nodes). I tried to do
dojo.query("> *", srcNode) and got an eval error in dojo. Doing > worked as expected.
Change History (4)
comment:1 Changed 14 years ago by
Owner: | changed from anonymous to alex |
---|
comment:2 Changed 13 years ago by
Cc: | [email protected]… added |
---|
comment:3 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 Changed 12 years ago by
Component: | Core → Query |
---|
Note: See
TracTickets for help on using
tickets.
(In [11174]) complete replacement for the tokenization strategy of the query engine. Moved from ad-hoc substring searching to an AST generation/consumption system. The query engine should be significantly more robust in the face of whitespace and funky formatting than before. Code size change should be minimal despite the large-scale change. Expanded tests and a first stab at inline docs for dojo.query. All unit tests pass on FF2, Safari3, and IE 6 and 7. Fixes #4365. Fixes #4640. Fixes #2423.