| Index: LayoutTests/fast/dom/insertedIntoDocument-sibling.html | 
| diff --git a/LayoutTests/fast/dom/insertedIntoDocument-sibling.html b/LayoutTests/fast/dom/insertedIntoDocument-sibling.html | 
| index 7aed8592cc92ddfebac6383efac519748d1e8bac..a4f53d57b8993e8a5b69451c0f752e504f0502cf 100644 | 
| --- a/LayoutTests/fast/dom/insertedIntoDocument-sibling.html | 
| +++ b/LayoutTests/fast/dom/insertedIntoDocument-sibling.html | 
| @@ -15,12 +15,6 @@ gc = window.gc || function() | 
| var s = new String("AAAA"); | 
| } | 
|  | 
| -handler = function() | 
| -{ | 
| -    this.removeEventListener("DOMNodeRemoved", handler, false); | 
| -    document.body.removeChild(object); | 
| -} | 
| - | 
| window.onload = function() | 
| { | 
| object = document.createElement("object"); | 
| @@ -30,8 +24,6 @@ window.onload = function() | 
|  | 
| attr = document.createAttribute("width"); | 
| object.setAttributeNode(attr); | 
| -    attr.appendChild(document.createTextNode(1)); | 
| -    attr.childNodes[0].addEventListener("DOMNodeRemoved", handler, false); | 
|  | 
| document.body.appendChild(object); | 
|  | 
|  |