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

Unified Diff: LayoutTests/compositing/geometry/assert-marquee-timer.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
« no previous file with comments | « no previous file | LayoutTests/editing/style/bold-with-dom-changes.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/compositing/geometry/assert-marquee-timer.html
diff --git a/LayoutTests/compositing/geometry/assert-marquee-timer.html b/LayoutTests/compositing/geometry/assert-marquee-timer.html
index e811cc7ef57d35097d308742760765b33a5ef428..3565a9166a41c43b224aeb2da79f1c3af27cf7f6 100644
--- a/LayoutTests/compositing/geometry/assert-marquee-timer.html
+++ b/LayoutTests/compositing/geometry/assert-marquee-timer.html
@@ -37,7 +37,7 @@
var times = 0;
// Trigger "pending layouts", that might run after the marquee timer is fired.
var counter = document.getElementById("counter");
- var textNode = document.createTextNode();
+ var textNode = document.createTextNode("");
counter.appendChild(textNode);
var interval = setInterval(function() {
textNode.nodeValue = Math.random();
@@ -51,4 +51,4 @@
}, 10);
</script>
</body>
-</html>
+</html>
« no previous file with comments | « no previous file | LayoutTests/editing/style/bold-with-dom-changes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698