WebKit nightlies support HTML5 noreferrer link relation
Posted by Nate Chapin on Thursday, November 19th, 2009 at 10:18 amWebKit nightlies now support the HTML5 noreferrer link relation, a neat little feature that allows web developers to prevent browsers from sending the Referrer: header when navigating either <a> or <area> elements. Just add noreferrer in the rel attribute of a link like so:
<a href=”www.example.com” rel=”noreferrer”>noreferrer!</a>
When example.com receives the HTTP request generated by clicking this [...]