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

Unified Diff: LayoutTests/fast/forms/fieldset/fieldset-adoptnode-crash.html

Issue 22875013: Make several DOMImplementation API arguments mandatory (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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/forms/fieldset/fieldset-adoptnode-crash.html
diff --git a/LayoutTests/fast/forms/fieldset/fieldset-adoptnode-crash.html b/LayoutTests/fast/forms/fieldset/fieldset-adoptnode-crash.html
index 6c2c8e3a6d2f8ed313dc5e61b43ac6eeaa458bd7..95ea507103a2794e32e657edbea5a00ec777a205 100644
--- a/LayoutTests/fast/forms/fieldset/fieldset-adoptnode-crash.html
+++ b/LayoutTests/fast/forms/fieldset/fieldset-adoptnode-crash.html
@@ -16,7 +16,7 @@ testRunner.waitUntilDone();
var bDiv = document.createElement("div");
aDivShadow.appendChild(bDiv);
- var createdDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html");
+ var createdDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null);
createdDoc.adoptNode(aDiv);
bDiv.appendChild(parentDiv);
})();

Powered by Google App Engine
This is Rietveld 408576698