
| Key: |
SEL-398
|
| Type: |
Improvement
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Colin Young
|
| Votes: |
0
|
| Watchers: |
1
|
|
If you were logged in you would be able to see more operations.
|
|
|
Certain XPaths (those using ancestor-or-self, ancestor, following-sibling, preceding-sibling) cause an infinite loop in IE. The bug exists in the xpath.js file. The author of that file has been notified and fixed the issue; you can get the update from http://code.google.com/p/ajaxslt/
|
|
Description
|
Certain XPaths (those using ancestor-or-self, ancestor, following-sibling, preceding-sibling) cause an infinite loop in IE. The bug exists in the xpath.js file. The author of that file has been notified and fixed the issue; you can get the update from http://code.google.com/p/ajaxslt/ |
Show » |
|
} else if (this.axis == xpathAxis.PRECEDING_SIBLING) {
//This is the worst ever
//for (var n = input.previousSibling; n; n = input.previousSibling) {
for (var n = input.previousSibling; n; n = n.previousSibling) { nodelist.push(n); }