Note this was written by Lou Montulli who also wrote the amusing post about "The Origins of the <Blink> Tag" [1]<p>[1] <a href="http://www.montulli.org/theoriginofthe%3Cblink%3Etag" rel="nofollow">http://www.montulli.org/theoriginofthe%3Cblink%3Etag</a><p>I didn't know about the about:about url, and have since found a number of amusing and useful links, for example:<p>Chrome:<p>chrome://site-engagement/<p>chrome://net-internals/#dns<p>chrome://net-export/<p>chrome://indexeddb-internals/#<p>Firefox:<p>about:mozilla<p>about:memory<p>about:robots
Not everything works in about:blank.<p>For example, if you go into devTools and try to build an SVG programmatically (or simply inject some innerHTML), the funcURLs won't pick up the ids in the <defs> section for things like gradients/patterns/etc.<p>I can't remember which part of which spec conflicts with the other on this. I just remember mentioning it on the SVG list and the Mozilla bug list. (It actually works in Chrome, which a Mozilla dev told me is a bug in Chrome. :)
slightly ot, but, if anyone else was distracted by the use of 3-4 spaces between each sentence, this JS snippet will fix it:<p><pre><code> document.querySelectorAll("td>div").forEach(x=>(x.innerHTML = x.innerHTML.replace(/&nbsp;/g, " ")))</code></pre>
The complete list of to-date about:mozilla passages: <a href="https://www.mozilla.org/en-US/book/" rel="nofollow">https://www.mozilla.org/en-US/book/</a><p>I've always loved this easter egg.
about:legacy-compat made its way into HTML5 as the system identifier/URL of a (fictive) external SGML declaration set to contain declarations for the elements and attributes of HTML. It's required to make an HTML5 document a valid SGML application; if it weren't there, the declaration set would be treated as containing no declarations at all, which doesn't work for eg. empty (HTML "void") elements such as img and br, and also for writing enumerated attributes in their short forms such as in <option selected> etc.