OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH |
| 4 * |
| 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 |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ |
| 17 |
| 18 "use strict"; |
| 19 |
| 20 let {PrivateBrowsingUtils} = Cu.import("resource://gre/modules/PrivateBrowsingUt
ils.jsm", {}); |
| 21 |
| 22 /** |
| 23 * Retrieves the frame hierarchy for a window. Returns an array containing |
| 24 * the information for all frames, starting with the window itself up to its |
| 25 * top-level window. Each entry has a location and a sitekey entry. |
| 26 * @return {Array} |
| 27 */ |
| 28 let getFrames = exports.getFrames = function(/**Window*/ window) |
| 29 { |
| 30 let frames = []; |
| 31 while (window) |
| 32 { |
| 33 let frame = { |
| 34 location: window.location.href, |
| 35 sitekey: null |
| 36 }; |
| 37 |
| 38 let documentElement = window.document && window.document.documentElement; |
| 39 if (documentElement) |
| 40 frame.sitekey = documentElement.getAttribute("data-adblockkey") |
| 41 |
| 42 if (window == window.parent) |
| 43 frame.privateBrowsing = PrivateBrowsingUtils.isWindowPrivate(window); |
| 44 |
| 45 frames.push(frame); |
| 46 window = (window != window.parent ? window.parent : null); |
| 47 } |
| 48 return frames; |
| 49 } |
OLD | NEW |