Index: LayoutTests/fast/dom/Comment/comment-constructor.html |
diff --git a/LayoutTests/fast/dom/Comment/comment-constructor.html b/LayoutTests/fast/dom/Comment/comment-constructor.html |
index 80d0c3a04e785633e5ab90b3830acfd19950777e..a1013161746ee8e030e295cf6d5de52b3dd77565 100644 |
--- a/LayoutTests/fast/dom/Comment/comment-constructor.html |
+++ b/LayoutTests/fast/dom/Comment/comment-constructor.html |
@@ -7,6 +7,8 @@ description('This tests that Comment is constructable.'); |
shouldBe('new Comment("one").data', '"one"'); |
shouldBe('new Comment().data', '""'); |
+shouldBe('new Comment(undefined).data', '""'); |
+shouldBe('new Comment(null).data', '"null"'); |
shouldBe('new Comment("two").ownerDocument', 'document'); |
shouldBe('typeof new Comment', '"object"'); |