tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

parsing-addresses-invalid.json (606B)


      1 {
      2  "name": "Other invalid addresses",
      3  "tests": {
      4    "should ignore unprefixed strings that are not absolute URLs": {
      5      "importMap": {
      6        "imports": {
      7          "foo1": "bar",
      8          "foo2": "\\bar",
      9          "foo3": "~bar",
     10          "foo4": "#bar",
     11          "foo5": "?bar"
     12        }
     13      },
     14      "importMapBaseURL": "https://base.example/path1/path2/path3",
     15      "expectedParsedImportMap": {
     16        "imports": {
     17          "foo1": null,
     18          "foo2": null,
     19          "foo3": null,
     20          "foo4": null,
     21          "foo5": null
     22        },
     23        "scopes": {}
     24      }
     25    }
     26  }
     27 }