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

Unified Diff: LayoutTests/fast/dom/Node/append-child-error.html

Issue 375213003: Node.appendChild should throw TypeError when newChild is omitted (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take review comment into consideration Created 6 years, 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Node/append-child-error-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/Node/append-child-error.html
diff --git a/LayoutTests/fast/dom/Node/append-child-error.html b/LayoutTests/fast/dom/Node/append-child-error.html
new file mode 100644
index 0000000000000000000000000000000000000000..863e165159facec9671db717cdc9700257ad2bf9
--- /dev/null
+++ b/LayoutTests/fast/dom/Node/append-child-error.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+</head>
+<body>
+This test case verifies if relevant TypeError is thrown when invalid Node argument is given.
+<script>
+test(function() {
+ assert_throws(new TypeError(), function() { document.body.appendChild() })
+ assert_throws(new TypeError(), function() { document.body.appendChild(null) })
+ assert_throws(new TypeError(), function() { document.body.appendChild({'a':'b'}) })
+}, "Node.appendChild should throw TypeError when a wrong type of argument is passed.")
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Node/append-child-error-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698