Index: LayoutTests/fast/dom/document-set-title-no-head.html |
diff --git a/LayoutTests/fast/dom/document-set-title-no-head.html b/LayoutTests/fast/dom/document-set-title-no-head.html |
deleted file mode 100644 |
index 87e9c1ee32f98b51c0263fdb6cd4c565694b05fb..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/document-set-title-no-head.html |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-<!DOCTYPE html> |
-<head></head> |
-<body> |
-<script src="../../resources/js-test.js"></script> |
-<script type="text/javascript"> |
-description("Test that setting document.title when there is no <head> or <title> does nothing"); |
-onload = function() |
-{ |
- var head = document.head; |
- while (head.firstChild) |
- document.documentElement.appendChild(head.firstChild); |
- document.documentElement.removeChild(head); |
- document.title = "New title"; |
- shouldBeEmptyString('document.title'); |
-} |
-</script> |
-</body> |