213
edits
(→and) |
|||
Line 10: | Line 10: | ||
The View Source feature displays the source markup for an HTML page as text rather than rendered markup. The text is displayed with syntax-based coloring, but is otherwise identical to the text retrieved by the browser from the server or filesystem. A new feature, "linkification" has been added for Firefox 3.1. Linkification treats the values of HREF and SRC attributes as URLs. So for example, imagine the following HTML: | The View Source feature displays the source markup for an HTML page as text rather than rendered markup. The text is displayed with syntax-based coloring, but is otherwise identical to the text retrieved by the browser from the server or filesystem. A new feature, "linkification" has been added for Firefox 3.1. Linkification treats the values of HREF and SRC attributes as URLs. So for example, imagine the following HTML: | ||
<a href="http:''//''www.example.com/about.html>About</a>. | <a href="http:''//''www.example.com/about.html">About</a>. | ||
The text fragment '''http:''//''www.example.com/about.html''' would be displayed as a hyperlink, linking to the URL '''view-source:http:''//''www.example.com/about.html'''. Clicking on the link would replace the current source page with the source for the "about.html" page. | The text fragment '''http:''//''www.example.com/about.html''' would be displayed as a hyperlink, linking to the URL '''view-source:http:''//''www.example.com/about.html'''. Clicking on the link would replace the current source page with the source for the "about.html" page. |
edits