Changeset 8073
- Timestamp:
- 11/05/07 17:54:13 (10 months ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/src/dom.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r8072 r8073 1 1 *SVN* 2 3 * Exclude Opera from using the sourceIndex approach in Element#descendantOf. [Tobie Langel, Andrew Dupont] 2 4 3 5 * Ensure Element#hasClassName always returns a boolean. Closes #10075. [ronnylovtangen, Tobie Langel] spinoffs/prototype/trunk/src/dom.js
r8072 r8073 363 363 return (element.compareDocumentPosition(ancestor) & 8) === 8; 364 364 365 if (element.sourceIndex ) {365 if (element.sourceIndex && !Prototype.Browser.Opera) { 366 366 var e = element.sourceIndex, a = ancestor.sourceIndex, 367 367 nextAncestor = ancestor.nextSibling;