| Index: polyfill.js |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/polyfill.js |
| @@ -0,0 +1,40 @@ |
| +/* |
| + * This file is part of Adblock Plus <https://adblockplus.org/>, |
| + * Copyright (C) 2006-present eyeo GmbH |
| + * |
| + * Adblock Plus is free software: you can redistribute it and/or modify |
| + * it under the terms of the GNU General Public License version 3 as |
| + * published by the Free Software Foundation. |
| + * |
| + * Adblock Plus is distributed in the hope that it will be useful, |
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| + * GNU General Public License for more details. |
| + * |
| + * You should have received a copy of the GNU General Public License |
| + * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + */ |
| + |
| +"use strict"; |
| + |
| +// On Edge, the extension APIs are in the "browser" namespace, whereas on |
| +// both Firefox and Chrome they're in the "chrome" namespace. Firefox has a |
| +// "browser" namespace too, but it is slightly incompatible in that the |
| +// implementation uses promises as a fallback in the absence of a callback |
| +// parameter. Edge sometimes has a "chrome" namespace, but with no extension |
| +// APIs. |
| +// |
| +// In order to make the same code run on all three platforms, we simply look |
| +// for a "chrome" namespace with the extension APIs and assign it to the |
|
Sebastian Noack
2017/10/10 23:07:43
The part about Firefox is inaccurate, both the "br
Sebastian Noack
2017/10/10 23:15:25
That is actually only true for the "browser" objec
Manish Jethani
2017/10/11 01:09:20
There are two issues with using browser directly o
Sebastian Noack
2017/10/11 01:40:05
Yes, that is why Dave and I were used to use brace
Manish Jethani
2017/10/11 10:59:19
Alright, let's use the browser object directly, it
Manish Jethani
2017/10/11 10:59:19
Acknowledged.
Manish Jethani
2017/10/11 18:36:11
I'm going through the APIs that we actually use an
Sebastian Noack
2017/10/13 02:59:49
It says that this inconsistency only exists in con
Manish Jethani
2017/10/13 04:27:31
Acknowledged.
|
| +// "browser" namespace. |
| +if (typeof chrome != "undefined" && "extension" in chrome) |
|
Sebastian Noack
2017/10/10 23:07:43
I think we should just use the "browser" object wh
Manish Jethani
2017/10/11 10:59:18
Done.
|
| + window.browser = chrome; |
| + |
| +// Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList |
| +// didn't have iterator support before Chrome 51. |
| +// https://bugs.chromium.org/p/chromium/issues/detail?id=401699 |
| +for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) |
| +{ |
| + if (!(Symbol.iterator in object.prototype)) |
| + object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; |
| +} |