Bug 1261003 - W3C referrerpolicy content attribute doesn't work in FF. r=josh, r=franziskuskiefer

MozReview-Commit-ID: KKq7ZRJziBu
This commit is contained in:
Thomas Nguyen 2016-04-25 11:47:06 +08:00
Родитель 485736ee81
Коммит b69436726c
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -22,7 +22,7 @@ function parseUrlQueryString(queryString) {
function appendIframeToBody(url, attributes) {
var iframe = document.createElement("iframe");
iframe.src = url;
// Extend element with attributes. (E.g. "referrer_policy" or "rel")
// Extend element with attributes. (E.g. "referrerPolicy" or "rel")
if (attributes) {
for (var attr in attributes) {
iframe[attr] = attributes[attr];
@ -40,7 +40,7 @@ function loadImage(src, callback, attributes) {
callback(image);
}
image.src = src;
// Extend element with attributes. (E.g. "referrer_policy" or "rel")
// Extend element with attributes. (E.g. "referrerPolicy" or "rel")
if (attributes) {
for (var attr in attributes) {
image[attr] = attributes[attr];

Просмотреть файл

@ -76,7 +76,7 @@ function ReferrerPolicyTestCase(scenario, testDescription, sanityChecker) {
// Depending on the delivery method, extend the subresource element with
// these attributes.
var elementAttributesForDeliveryMethod = {
"attr-referrer": {referrerpolicy: t._scenario.referrer_policy},
"attr-referrer": {referrerPolicy: t._scenario.referrer_policy},
"rel-noreferrer": {rel: "noreferrer"}
};