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

Unified Diff: LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.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/dom/HTMLElement/ie-forbids-insert-html.html
diff --git a/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html b/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
index ec9e1df29f8f445c0b078e534da9847bf9789d7d..b1002ba010be498abf7630870fd15bfbae236f11 100644
--- a/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
+++ b/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
@@ -8,7 +8,7 @@
description("This tests that 'insertText' and friends match IE's behavior on certain element types.");
// List taken from HTMLElement::isForbidsInsertHTML. There's no spec for this, obviously.
- var types = ['area', 'base', 'basefont', 'br', 'col', 'embed', 'frame', 'hr', 'image', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source', 'wbr'];
+ var types = ['area', 'base', 'basefont', 'br', 'col', 'embed', 'frame', 'hr', 'image', 'img', 'input', 'link', 'meta', 'param', 'source', 'wbr'];
types.forEach(function(type) {
shouldThrow("document.createElement('" + type + "').innerText = 'Throw!';");

Powered by Google App Engine
This is Rietveld 408576698