Ticket #8102 (closed defect: fixed)
dojo.query broken in Safari3.2
| Reported by: | virsir | Owned by: | alex |
|---|---|---|---|
| Priority: | high | Milestone: | 1.2.3 |
| Component: | Core | Version: | 1.2.1 |
| Severity: | critical | Keywords: | |
| Cc: | phiggins, peller, jburke, alex |
Description
It looks like it can not handle upperclass className properly. I am not sure whether there is other issues in safari 3.2 when querying dom nodes.
try below simple html in Safari3.2:
<script type="text/javascript" src="dojo/dojo.js">
</script>
<body>
<div class="hahaA"></div>
</body>
<script type="text/javascript">
dojo.addOnLoad(function(){
var a = dojo.query(".hahaA")[0];
alert(a)
})
</script>
Change History
Note: See
TracTickets for help on using
tickets.