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

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: Keep hasFeature() as it was 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..7437b85dcfabf1245d97d1140b75737bce833cfa 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("", "");
arv (Not doing code reviews) 2013/08/16 13:33:27 FYI, (null, "") is a better default
do-not-use 2013/08/16 13:47:03 Right, my bad, I misread the spec.
d.adoptNode(root);
node = document.createElement("title");
root.appendChild(node);

Powered by Google App Engine
This is Rietveld 408576698