OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 15 matching lines...) Expand all Loading... |
26 "notifications.create", | 26 "notifications.create", |
27 "runtime.getBrowserInfo", | 27 "runtime.getBrowserInfo", |
28 "runtime.openOptionsPage", | 28 "runtime.openOptionsPage", |
29 "runtime.sendMessage", | 29 "runtime.sendMessage", |
30 "runtime.setUninstallURL", | 30 "runtime.setUninstallURL", |
31 "storage.local.get", | 31 "storage.local.get", |
32 "storage.local.remove", | 32 "storage.local.remove", |
33 "storage.local.set", | 33 "storage.local.set", |
34 "storage.managed.get", | 34 "storage.managed.get", |
35 "tabs.create", | 35 "tabs.create", |
| 36 "tabs.executeScript", |
36 "tabs.get", | 37 "tabs.get", |
37 "tabs.getCurrent", | 38 "tabs.getCurrent", |
38 "tabs.insertCSS", | 39 "tabs.insertCSS", |
39 "tabs.query", | 40 "tabs.query", |
40 "tabs.reload", | 41 "tabs.reload", |
41 "tabs.remove", | 42 "tabs.remove", |
42 "tabs.removeCSS", | 43 "tabs.removeCSS", |
43 "tabs.sendMessage", | 44 "tabs.sendMessage", |
44 "tabs.update", | 45 "tabs.update", |
45 "webNavigation.getAllFrames", | 46 "webNavigation.getAllFrames", |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 231 |
231 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList | 232 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList |
232 // didn't have iterator support before Chrome 51. | 233 // didn't have iterator support before Chrome 51. |
233 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699 | 234 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699 |
234 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) | 235 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) |
235 { | 236 { |
236 if (!(Symbol.iterator in object.prototype)) | 237 if (!(Symbol.iterator in object.prototype)) |
237 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; | 238 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; |
238 } | 239 } |
239 } | 240 } |
OLD | NEW |