Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: LayoutTests/fast/forms/isindex-name.html

Issue 96653004: Remove support for the obsolete <isindex> tag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698