The field to enter the URL on Special:Interwiki is an <input type="url">
, and Firefox checks that such fields contain valid URLs before allowing form submission. The protocol-relative syntax starting with //
is treated as invalid - rightly, since it's not a real URL - so you can't submit the form. (Unless you use inspect element to change the input type to "text", which is what I did).
I think probably what should be done is just change the markup so the input type is "text".