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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html

Issue 2707973002: Remove blacklist on .innerHTML and .outerHTML (Closed)
Patch Set: Typo fix Created 3 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: third_party/WebKit/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
deleted file mode 100644
index b1002ba010be498abf7630870fd15bfbae236f11..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLElement/ie-forbids-insert-html.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script src="../../../resources/js-test.js"></script>
-</head>
-<body>
- <script>
- 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', 'link', 'meta', 'param', 'source', 'wbr'];
-
- types.forEach(function(type) {
- shouldThrow("document.createElement('" + type + "').innerText = 'Throw!';");
- shouldThrow("document.createElement('" + type + "').outerText = 'Throw!';");
- });
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698