Opened 13 years ago
Closed 12 years ago
#5052 closed defect (fixed)
tests._base.query code throws exception
Reported by: | Adam Peller | Owned by: | alex |
---|---|---|---|
Priority: | low | Milestone: | 1.3 |
Component: | General | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
an exception is thrown
function xml(){ 93 try{ 94 dojo.require("dojox.data.dom"); 95 var doc = dojox.data.dom.createDocument("<ResultSet><Result>One</Result><Result>Two</Result></ResultSet>"); 96 console.debug(doc); 97 console.debug(doc.documentElement); 98 console.debug(dojo.query("Result", doc.documentElement)); 99 }catch(e){ console.debug(e); } 100 }
the method dojox.data.dom.createDocument is not found
Change History (5)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Milestone: | 1.0.1 → 1.1 |
---|---|
Priority: | normal → low |
severity: | normal → minor |
Summary: | tests._base.query fails → tests._base.query code throws exception |
comment:3 Changed 13 years ago by
Milestone: | 1.1 → 1.2 |
---|
comment:4 Changed 12 years ago by
Milestone: | 1.2 → 1.3 |
---|
as per today's meeting, punting these core bugs
comment:5 Changed 12 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | new → closed |
fixed in [15517]
Note: See
TracTickets for help on using
tickets.
ok, fails was too strong a word. it's a caught exception. but it seems odd that we're referencing dojox code at all, and that it is unable to load the method.