1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 18:25:48 +01:00

:set passunknown-=!input

This commit is contained in:
Kris Maglione
2011-06-28 19:41:30 -04:00
parent bfb111894c
commit eefc32dfe4
3 changed files with 4 additions and 2 deletions

View File

@@ -1955,7 +1955,8 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
let res = [], seen = {};
(function rec(frame) {
try {
res = res.concat(util.subdomains(frame.location.hostname));
if (frame.location.hostname)
res = res.concat(util.subdomains(frame.location.hostname));
}
catch (e) {}
Array.forEach(frame.frames, rec);