| Index: LayoutTests/fast/js/function-length.html
|
| diff --git a/LayoutTests/fast/js/function-length.html b/LayoutTests/fast/js/function-length.html
|
| index 1aae8353a5f822883dc8f310cec6b569ea4abd49..9109b37856d9cf102ccd2ea12d8c747586b02dda 100644
|
| --- a/LayoutTests/fast/js/function-length.html
|
| +++ b/LayoutTests/fast/js/function-length.html
|
| @@ -12,7 +12,9 @@
|
| shouldBe('window.showModalDialog.length', '1');
|
| shouldBe('window.setTimeout.length', '1');
|
| shouldBe('window.clearTimeout.length', '0');
|
| -shouldBe('window.addEventListener.length', '2');
|
| +// addEventListener.length should be 2, but legacy content calls with 0 or 1
|
| +// argument. See http://crbug.com/249598
|
| +shouldBe('window.addEventListener.length', '0');
|
| shouldBe('window.postMessage.length', '2');
|
| shouldBe('window.dispatchEvent.length', '1');
|
| shouldBe('window.openDatabase.length', '4');
|
|
|