﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8670	dom.node#getAddress returns different addresses for detached trees in IE7&8 than in normal browsers	Piotrek Koszuliński		"This test passes in browsers like Fx and Chrome, but fails in IE7&8.

{{{
var root = newElement( 'span' ),
	child1 = newElement( 'span' ),
	child2 = newElement( 'span' );

child1.appendTo( root );
child2.appendTo( root );

assert.isTrue( CKEDITOR.tools.arrayCompare( child2.getAddress(), [ 1 ] ) ); // in IE7&8 - [ 0, 1 ]
assert.isTrue( CKEDITOR.tools.arrayCompare( root.getAddress(), [ ] ) ); // in IE7&8 - [ 0 ]
}}}
"	Bug	confirmed	Normal		General	3.1.1		IE	
