mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
b09bf9aef3
The assertion is trying to require that the caller should never pass in mDefaultPort; instead, the caller should pass -1. BUT, if mDefaultPort is itself -1 (i.e. there's no default port), then we need to allow the caller to pass in -1 without spamming an assertion. MozReview-Commit-ID: GKxndkJoXcv --HG-- extra : rebase_source : 3fcd7815ec3e64a71f0f34efd1a397be8f3dc9a2
8 lines
103 B
HTML
8 lines
103 B
HTML
<script>
|
|
|
|
var u = new URL("http://127.0.0.1:9607/");
|
|
u.protocol = "resource:";
|
|
u.port = "";
|
|
|
|
</script>
|