Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / netwerk / test / crashtests / 1334468-1.html
blob3d94d69949f04f10118bcfc53500ef47ae2d317d
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <!--
6 user_pref("privacy.firstparty.isolate", true);
7 -->
8 <script>
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" +
14 "/:*?\"<>|\\";
16 function boom() {
17 for (let c of RESTRICTED_CHARS) {
18 window.location = 'http://s.s' + c;
22 </script>
23 </head>
24 <body onload="boom();"></body>
25 </html>