1.3.2 child selector issue in Opera 9.27

1.3.2 child selector issue in Opera 9.27


In Opera 9.27 (Linux), jQuery 1.3.2 selects a ul in the document,
rather than the child ul of the #TestFieldset element.
Not sure how to write a formal unit test for this, but here's a small
code snippet that shows the issue:
<html>
<head>
<script type="text/javascript" src="http://geoscreen11/js/
jquery-1.3.2.js"></script>
</head>
<body>
<ul><li>Random List</li></ul>
<fieldset id="TestFieldset">
<ul></ul>
</fieldset>
</body>
<script type="text/javascript">
jQuery(document).ready(function() {
alert(jQuery('#TestFieldset>ul').html()); //
Fails in Opera 9.27 (selects a previous ul in doc)
alert(jQuery('#TestFieldset').find('>ul').html
()); //Workaround
});
</script>
</html>