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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/js/function-length.html

Issue 1461993002: Make addEventListener/removeEventListener arguments non-optional (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop the use counters Created 5 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 description("This tests the length property of functions."); 8 description("This tests the length property of functions.");
9 9
10 shouldBe('window.confirm.length', '0'); 10 shouldBe('window.confirm.length', '0');
11 shouldBe('window.open.length', '2'); 11 shouldBe('window.open.length', '2');
12 shouldBe('window.setTimeout.length', '1'); 12 shouldBe('window.setTimeout.length', '1');
13 shouldBe('window.clearTimeout.length', '0'); 13 shouldBe('window.clearTimeout.length', '0');
14 // addEventListener.length should be 2, but legacy content calls with 0 or 1 14 shouldBe('window.addEventListener.length', '2');
15 // argument. See http://crbug.com/249598 15 shouldBe('window.removeEventListener.length', '2');
16 shouldBe('window.addEventListener.length', '0');
17 shouldBe('window.postMessage.length', '2'); 16 shouldBe('window.postMessage.length', '2');
18 shouldBe('window.dispatchEvent.length', '1'); 17 shouldBe('window.dispatchEvent.length', '1');
19 shouldBe('window.openDatabase.length', '4'); 18 shouldBe('window.openDatabase.length', '4');
20 shouldBe('window.history.pushState.length', '2'); 19 shouldBe('window.history.pushState.length', '2');
21 shouldBe('window.history.length', '1'); 20 shouldBe('window.history.length', '1');
22 shouldBe('window.URL.createObjectURL.length', '1'); 21 shouldBe('window.URL.createObjectURL.length', '1');
23 shouldBe('window.Storage.prototype.key.length', '1'); 22 shouldBe('window.Storage.prototype.key.length', '1');
24 23
25 // One required and one optional argument 24 // One required and one optional argument
26 shouldBe('document.importNode.length', '1'); 25 shouldBe('document.importNode.length', '1');
(...skipping 19 matching lines...) Expand all
46 shouldBe('Math.min.length', '2'); 45 shouldBe('Math.min.length', '2');
47 shouldBe('Function.prototype.apply.length', '2'); 46 shouldBe('Function.prototype.apply.length', '2');
48 shouldBe('Function.prototype.call.length', '1'); 47 shouldBe('Function.prototype.call.length', '1');
49 shouldBe('String.prototype.split.length', '2'); 48 shouldBe('String.prototype.split.length', '2');
50 shouldBe('String.prototype.substring.length', '2'); 49 shouldBe('String.prototype.substring.length', '2');
51 50
52 51
53 </script> 52 </script>
54 </body> 53 </body>
55 </html> 54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698