Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: polyfill.js

Issue 29737561: Issue 6539, 6782 - Implement support for snippets (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Update lib/cssInjection.js to use CodeInjectionFilter.code Created April 27, 2018, 11:38 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « metadata.chrome ('k') | snippets.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
25 "notifications.create", 25 "notifications.create",
26 "runtime.getBrowserInfo", 26 "runtime.getBrowserInfo",
27 "runtime.openOptionsPage", 27 "runtime.openOptionsPage",
28 "runtime.sendMessage", 28 "runtime.sendMessage",
29 "runtime.setUninstallURL", 29 "runtime.setUninstallURL",
30 "storage.local.get", 30 "storage.local.get",
31 "storage.local.remove", 31 "storage.local.remove",
32 "storage.local.set", 32 "storage.local.set",
33 "storage.managed.get", 33 "storage.managed.get",
34 "tabs.create", 34 "tabs.create",
35 "tabs.executeScript",
35 "tabs.get", 36 "tabs.get",
36 "tabs.getCurrent", 37 "tabs.getCurrent",
37 "tabs.insertCSS", 38 "tabs.insertCSS",
38 "tabs.query", 39 "tabs.query",
39 "tabs.reload", 40 "tabs.reload",
40 "tabs.remove", 41 "tabs.remove",
41 "tabs.removeCSS", 42 "tabs.removeCSS",
42 "tabs.sendMessage", 43 "tabs.sendMessage",
43 "tabs.update", 44 "tabs.update",
44 "webNavigation.getAllFrames", 45 "webNavigation.getAllFrames",
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 230
230 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList 231 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList
231 // didn't have iterator support before Chrome 51. 232 // didn't have iterator support before Chrome 51.
232 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699 233 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699
233 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) 234 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList])
234 { 235 {
235 if (!(Symbol.iterator in object.prototype)) 236 if (!(Symbol.iterator in object.prototype))
236 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; 237 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator];
237 } 238 }
238 } 239 }
OLDNEW
« no previous file with comments | « metadata.chrome ('k') | snippets.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld