Browser.send pings.max per link
From MozillaZine Knowledge Base
Jump to navigationJump to search
Background
The Web Applications 1.0 specification (also known as HTML5) defines a new attribute for <a>
elements: ping
. This attribute contains one or more URIs to “ping” (send a POST request to) when the user clicks the link. The attribute would be useful for letting websites track visitors’ clicks.
This preference restricts the number of URIs to which pings will be sent.
Possible values and their effects
A non-negative integer indicating how many URIs to ping from the ping
attribute. URIs are processed in the order they appear in the attribute. (Default is 1)
Caveats
- This preference only has an effect when browser.send_pings is true.
- Setting this preference to 0 has the same effect as setting browser.send_pings to false.
First checked in
Has an effect in
- Mozilla Firefox (all trunk builds since 2006-06-01)
- SeaMonkey (all trunk builds since 2006-06-01)
Related bugs
- Bug 319368 - Implement <a ping>
- Bug 326155 - Restrict pings to same origin and limit to no more than one per anchor