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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement.html

Issue 1493673002: Drop [LegacyInterfaceTypeChecking] for HTMLTableElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/setter-type-enforcement.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement.html b/third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement.html
index eb389570831cd387e0c55b685e5d89f6fd076b5f..b357671ebae53b901c032df5c9c1170c517d8245 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement.html
@@ -10,10 +10,6 @@ description("Tests type enforcement on DOM setters.");
// NodeList is not a Node, so document.body can't be set to one.
var nodelist = document.getElementsByName('sillypants');
shouldThrow("document.body = nodelist;");
-
-// NodeList is also not an HTMLTableSectionElement.
-var table = document.createElement('table');
-shouldThrow("table.tHead = nodelist;");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698