6 user_pref("privacy.firstparty.isolate", true);
10 let RESTRICTED_CHARS
= "\001\002\003\004\005\006\007" +
11 "\010\011\012\013\014\015\016\017" +
12 "\020\021\022\023\024\025\026\027" +
13 "\030\031\032\033\034\035\036\037" +
17 for (let c
of RESTRICTED_CHARS
) {
18 window
.location
= 'http://s.s' + c
;
24 <body onload=
"boom();"></body>