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

Unified Diff: LayoutTests/fast/dom/id-attribute-shared.html

Issue 106773003: Make arguments to Document methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years 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/dom/id-attribute-shared.html
diff --git a/LayoutTests/fast/dom/id-attribute-shared.html b/LayoutTests/fast/dom/id-attribute-shared.html
index 65dcba506a28ff4390af7dcd9d9ccc38e8999515..e97e859252da3a0113069e622025464f3b4d71fa 100644
--- a/LayoutTests/fast/dom/id-attribute-shared.html
+++ b/LayoutTests/fast/dom/id-attribute-shared.html
@@ -37,7 +37,7 @@ function runTest() {
template2content = template2.content;
object1.parentNode.removeChild(object1);
object1 = null;
- textnode1 = document.createTextNode();
+ textnode1 = document.createTextNode('');
node3 = document.importNode(textnode1, true);
object2.appendChild(node3);
template2content.appendChild(object2);

Powered by Google App Engine
This is Rietveld 408576698