Index: LayoutTests/fast/dom/Attr/script-tests/access-after-element-destruction.js |
diff --git a/LayoutTests/fast/dom/Attr/script-tests/access-after-element-destruction.js b/LayoutTests/fast/dom/Attr/script-tests/access-after-element-destruction.js |
index b120d26ef36d5f4b166a88f3f39f7d388cb1742e..6dc85c773c7c8b2a978bf3c24cce7d3b879855f2 100644 |
--- a/LayoutTests/fast/dom/Attr/script-tests/access-after-element-destruction.js |
+++ b/LayoutTests/fast/dom/Attr/script-tests/access-after-element-destruction.js |
@@ -23,7 +23,6 @@ shouldBe("attributes.getNamedItem('a')", "attributes.item(0)"); |
shouldBe("attributes.item(0).name", "'a'"); |
shouldBe("attributes.item(0).value", "'b'"); |
-shouldBe("attributes.item(0).ownerElement.tagName", "'P'"); |
attributes.item(0).value = 'c'; |
@@ -42,7 +41,6 @@ gc(); |
shouldBe("attr.name", "'a'"); |
shouldBe("attr.value", "'b'"); |
-shouldBe("attr.ownerElement.tagName", "'P'"); |
attr.value = 'c'; |