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

Unified Diff: LayoutTests/editing/style/bold-with-dom-changes.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/editing/style/bold-with-dom-changes.html
diff --git a/LayoutTests/editing/style/bold-with-dom-changes.html b/LayoutTests/editing/style/bold-with-dom-changes.html
index 3793f6f79f69bcb4f2f57747900b1a43c46eaee4..f6c965c0bc2a7c9127b77c27e6679cc87481cb80 100644
--- a/LayoutTests/editing/style/bold-with-dom-changes.html
+++ b/LayoutTests/editing/style/bold-with-dom-changes.html
@@ -14,7 +14,7 @@ function treeModifiedHandler()
document.removeEventListener("DOMSubtreeModified", treeModifiedHandler, false);
var b = document.getElementById("inlined");
- b.insertBefore(document.createTextNode(), b.firstChild);
+ b.insertBefore(document.createTextNode(""), b.firstChild);
var range = document.createRange();
range.setStart(b,0);

Powered by Google App Engine
This is Rietveld 408576698