Closed Bug 1291691 Opened 8 years ago Closed 8 years ago

links in view-source no longer show a protocol

Categories

(Toolkit :: View Source, defect)

defect
Not set
normal

Tracking

()

RESOLVED INVALID

People

(Reporter: froydnj, Unassigned)

Details

STR:

1. Open https://wordpress.com/ (or any website)
2. View source.

Expected results:

Elements with links (<link href>, <a href>, <script src>, etc.) display the full web address.

Actual results:

Elements with links no longer display a protocol:

<link rel="alternate" hreflang="x-default" href="//wordpress.com" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="//s1.wp.com/xmlrpc.php?rsd">

although hovering over the links seems to indicate that the links would go to the right place, and copying the link address from the context menu seems to work.  Copying and pasting text directly from view-source, however, is broken, as you don't get functioning HTML.  The lack of protocols also looks flat-out weird if you do know HTML.

I suspect this is fallout from bug 1172165, but I haven't confirmed that.
Hi Nathan ,

I tried to find a regression range by following the STR and I found that those links have no protocol displayed even in Firefox 2.0. Also worth mentioning that the same behavior appears on Chrome, Edge and Opera.
I believe this is working as expected:

//wordpress.com is a protocol relative URL, which uses http: or https: depending on how the containing document is loaded.  It's suggested to web developers as a way to avoid mixed content issues on secure pages while also avoiding the supposed expense of https for non-secure documents.  (This is probably outdated advice at this point and should just be secure all the time, but anyway...)

Here's one of the articles that pushed people to use this approach back in the day: http://www.paulirish.com/2010/the-protocol-relative-url/ (Even this article has been updated to say just use secure all the time!)

If you view source on some other page like https://www.mozilla.org/en-US/, you should see other link styles present there.

Feel free to reopen if I have misunderstood.
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
You need to log in before you can comment on or make changes to this bug.