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

Unified Diff: LayoutTests/fast/js/function-length.html

Issue 14049021: 'length' property is invalid for some DOM bindings functions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/fast/js/function-length-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/js/function-length.html
diff --git a/LayoutTests/fast/js/function-length.html b/LayoutTests/fast/js/function-length.html
index 52b4f9e1e83798a96768059f8ebd834ba44e7651..f33cc1959deb9df9a27f244dd26074d4ff12798b 100644
--- a/LayoutTests/fast/js/function-length.html
+++ b/LayoutTests/fast/js/function-length.html
@@ -13,6 +13,13 @@ shouldBe('window.showModalDialog.length', '1');
shouldBe('window.setTimeout.length', '1');
shouldBe('window.clearTimeout.length', '0');
shouldBe('window.addEventListener.length', '2');
+shouldBe('window.postMessage.length', '2');
+shouldBe('window.dispatchEvent.length', '1');
+shouldBe('window.openDatabase.length', '4');
+shouldBe('window.history.pushState.length', '2');
+shouldBe('window.history.length', '1');
+shouldBe('window.URL.createObjectURL.length', '1');
+shouldBe('window.Storage.prototype.key.length', '1');
shouldBe('Array.prototype.concat.length', '1');
shouldBe('Array.prototype.join.length', '1');
« no previous file with comments | « no previous file | LayoutTests/fast/js/function-length-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698