| Index: LayoutTests/fast/dom/Document/clone-node.html
|
| diff --git a/LayoutTests/fast/dom/Document/clone-node.html b/LayoutTests/fast/dom/Document/clone-node.html
|
| index 25e601ce770ceceb387f6d1d88d39041bcd7372d..b451d735d56619a3919bed8463a273b11cbe9219 100644
|
| --- a/LayoutTests/fast/dom/Document/clone-node.html
|
| +++ b/LayoutTests/fast/dom/Document/clone-node.html
|
| @@ -10,8 +10,8 @@ function className(object) {
|
|
|
| var doc = document.implementation.createDocument('', 'root', null);
|
|
|
| -shouldBe('doc.cloneNode(false).__proto__', 'Document.prototype');
|
| -shouldBeEqualToString('className(doc.cloneNode(false))', 'Document');
|
| +shouldBe('doc.cloneNode(false).__proto__', 'XMLDocument.prototype');
|
| +shouldBeEqualToString('className(doc.cloneNode(false))', 'XMLDocument');
|
| shouldBeEqualToString('doc.cloneNode(true).documentElement.localName', 'root');
|
| shouldBeEqualToString('document.cloneNode(true).compatMode', 'CSS1Compat');
|
| shouldBe('document.cloneNode(false).URL', 'document.URL');
|
|
|