Index: LayoutTests/fast/frames/resources/remove-this-during-object-beforeload.html |
diff --git a/LayoutTests/fast/frames/resources/remove-this-during-object-beforeload.html b/LayoutTests/fast/frames/resources/remove-this-during-object-beforeload.html |
deleted file mode 100644 |
index 8f23d52aec11e88d1b69335587380eeef8da7730..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/frames/resources/remove-this-during-object-beforeload.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<html> |
-<head> |
-<script> |
- var count = 0; |
- function handleBeforeLoad() { |
- if (++count == 2) |
- window.frameElement.parentNode.removeChild(window.frameElement); |
- } |
- |
- function documentLoaded() { |
- var o = document.createElement('object'); |
- o.addEventListener('beforeload', handleBeforeLoad, false); |
- document.body.appendChild(o); |
- } |
-</script> |
-</head> |
-<body onload='documentLoaded();'> |
-</body> |
-</html> |