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

Unified Diff: LayoutTests/fast/css/zoom-on-unattached.html

Issue 22875013: Make several DOMImplementation API arguments mandatory (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix createDocument() args 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/css/zoom-on-unattached.html
diff --git a/LayoutTests/fast/css/zoom-on-unattached.html b/LayoutTests/fast/css/zoom-on-unattached.html
index b731ca8ba0469c7f4819641cc0ec4572eb4c8422..58feb864ff865aaca6385c20a31895a32628c1b9 100644
--- a/LayoutTests/fast/css/zoom-on-unattached.html
+++ b/LayoutTests/fast/css/zoom-on-unattached.html
@@ -3,7 +3,7 @@ if (window.testRunner)
testRunner.dumpAsText();
root = document.createElement("body");
-d = document.implementation.createDocument();
+d = document.implementation.createDocument(null, "");
d.adoptNode(root);
node = document.createElement("title");
root.appendChild(node);

Powered by Google App Engine
This is Rietveld 408576698