Index: LayoutTests/fast/forms/isindex-name.html |
diff --git a/LayoutTests/fast/forms/isindex-name.html b/LayoutTests/fast/forms/isindex-name.html |
deleted file mode 100644 |
index 67c1d04301b071f365eccb2f38b897028701dc4e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/forms/isindex-name.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<isindex id=isindex1> |
-<script> |
-var isindex = document.getElementById('isindex1'); |
-debug('Initial name:'); |
-shouldBeEqualToString('isindex.name', 'isindex'); |
- |
-debug('Adding a name attribute:'); |
-shouldBeEqualToString('isindex.setAttribute("name", "foo"); isindex.name', 'foo'); |
- |
-debug('Removing the name attribute:'); |
-// This behavior is compatible with IE, Firefox, and Opera. |
-shouldBeEqualToString('isindex.removeAttribute("name"); isindex.name', ''); |
-</script> |
-</body> |
-</html> |