Bug 1460913 [wpt PR 10966] - Update Web Platform Tests for Feature Policy integration into HTML spec., a=testonly

Automatic update from web-platform-testsUpdate Web Platform Tests for Feature Policy integration into HTML spec.

Change-Id: Ibfcc3e8bc217aff8782d2aec4c1b73bb4a193e1e
Reviewed-on: https://chromium-review.googlesource.com/1053106
Commit-Queue: Ian Clelland <iclelland@chromium.org>
Reviewed-by: Philip Jägenstedt <foolip@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569778}

--

wpt-commits: a5facbd6fb610d896eabffbebb45da59edfbff13
wpt-pr: 10966
This commit is contained in:
Ian Clelland 2018-07-06 22:05:30 +00:00 committed by James Graham
parent 33fc51fecc
commit 6ff465571f
3 changed files with 125 additions and 9 deletions

View File

@ -346775,6 +346775,12 @@
{} {}
] ]
], ],
"html/semantics/embedded-content/the-iframe-element/iframe-allow.html": [
[
"/html/semantics/embedded-content/the-iframe-element/iframe-allow.html",
{}
]
],
"html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html": [ "html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html": [
[ [
"/html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html", "/html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html",
@ -585546,8 +585552,12 @@
"cf6e961b764d5c6e7e1289f3db988fe94efaf030", "cf6e961b764d5c6e7e1289f3db988fe94efaf030",
"testharness" "testharness"
], ],
"html/semantics/embedded-content/the-iframe-element/iframe-allow.html": [
"5355ec5b17bfdd57d961c6827b0a590ecca233fc",
"testharness"
],
"html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html": [ "html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html": [
"70a1607f74e1550681a4b7b589f7a41db9174e7a", "42d4ae046daa9080bd945de796e769c37ffe335c",
"testharness" "testharness"
], ],
"html/semantics/embedded-content/the-iframe-element/iframe-append-to-child-document.html": [ "html/semantics/embedded-content/the-iframe-element/iframe-append-to-child-document.html": [

View File

@ -0,0 +1,66 @@
<!doctype html>
<meta charset=utf-8>
<title>Check processing of allow attribute in nested browsing context</title>
<link rel="author" title="Google" href="https://www.google.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-allow">
<link rel="help" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#initialise-the-document-object">
<link rel="help" href="https://fullscreen.spec.whatwg.org/#fullscreen-enabled-flag">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
// This returns a data URL (cross-origin with the containing document) which
// advances a counter, and reports the counter value together with the
// document's fullscreenEnabled state, every time it receives a postMessage.
// Fullscreen itself is not important for this test, but the flag is a useful
// indicator of whether a policy-controlled-feature is allowed or denied.
function getSourceForCrossOriginPage(initial_count) {
var page_contents = "<html><body><script>var count="+initial_count+";window.addEventListener('message',function(){parent.postMessage({'count':count++,'fullscreenEnabled':document.fullscreenEnabled},'*');});</scr"+"ipt></body></html>";
return "data:text/html;base64,"+btoa(page_contents);
}
async_test(function(t) {
var iframe = document.createElement("iframe");
iframe.src = getSourceForCrossOriginPage(0);
iframe.addEventListener('load', function() {
// Request the fullscreenEnabled state whenever the frame loads
iframe.contentWindow.postMessage(true,"*");
});
window.addEventListener('message', this.step_func(function(msg) {
if (msg.data.count == 0) {
assert_false(msg.data.fullscreenEnabled, "Document inside cross-origin iframe without allow attribute should not have feature enabled");
iframe.setAttribute("allow", "fullscreen");
iframe.contentWindow.postMessage(true,"*"); // Request state again
} else if (msg.data.count == 1) {
assert_false(msg.data.fullscreenEnabled, "Feature should be denied when correct allow attribute is added, before reload");
iframe.src = getSourceForCrossOriginPage(2); // Reload the frame
} else if (msg.data.count == 2) {
assert_true(msg.data.fullscreenEnabled, "Feature should be allowed when correct allow attribute is added, after reload");
iframe.removeAttribute("allow");
iframe.contentWindow.postMessage(true,"*"); // Request state again
} else if (msg.data.count == 3) {
assert_true(msg.data.fullscreenEnabled, "Feature should be allowed when allow attribute is removed, before reload");
iframe.src = getSourceForCrossOriginPage(4); // Reload the frame
} else if (msg.data.count == 4) {
assert_false(msg.data.fullscreenEnabled, "Feature should be denied when allow attribute is removed, after reload");
iframe.setAttribute("allow", "payment"); // Set allow to an unrelated feature
iframe.src = getSourceForCrossOriginPage(5); // Reload the frame
} else if (msg.data.count == 5) {
assert_false(msg.data.fullscreenEnabled, "Feature should be denied with incorrect allow attribute");
iframe.setAttribute("allow", "payment;fullscreen"); // Include fullscreen again
iframe.src = getSourceForCrossOriginPage(6); // Reload the frame
} else if (msg.data.count == 6) {
assert_true(msg.data.fullscreenEnabled, "Feature should be allowed with complex allow attribute");
t.done();
} else {
assert_unreached();
}
}));
document.body.appendChild(iframe);
}, "iframe-cross-origin-allow");
</script>

View File

@ -3,13 +3,21 @@
<title>Check how allowfullscreen affects fullscreen enabled flag</title> <title>Check how allowfullscreen affects fullscreen enabled flag</title>
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
<link rel="author" title="Mozilla" href="https://www.mozilla.org"> <link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://html.spec.whatwg.org/multipage/browsers.html#initialise-the-document-object"> <link rel="help" href="https://html.spec.whatwg.org/multipage/browsing-the-web.html#initialise-the-document-object">
<link rel="help" href="https://fullscreen.spec.whatwg.org/#fullscreen-enabled-flag"> <link rel="help" href="https://fullscreen.spec.whatwg.org/#fullscreen-enabled-flag">
<script src="/resources/testharness.js"></script> <script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script> <script src="/resources/testharnessreport.js"></script>
<div id="log"></div> <div id="log"></div>
<script> <script>
// This returns a data URL (cross-origin with the containing document) which
// advances a counter, and reports the counter value together with the
// document's fullscreenEnabled state, every time it receives a postMessage.
function getSourceForCrossOriginPage(initial_count) {
var page_contents = "<html><body><script>var count="+initial_count+";window.addEventListener('message',function(){parent.postMessage({'count':count++,'fullscreenEnabled':document.fullscreenEnabled},'*');});</scr"+"ipt></body></html>";
return "data:text/html;base64,"+btoa(page_contents);
}
async_test(function(t) { async_test(function(t) {
var iframe = document.createElement("iframe"); var iframe = document.createElement("iframe");
iframe.src = "support/blank.htm"; iframe.src = "support/blank.htm";
@ -21,13 +29,45 @@
assert_true(document.fullscreenEnabled, "Top level document has fullscreen enabled flag set"); assert_true(document.fullscreenEnabled, "Top level document has fullscreen enabled flag set");
eventWatcher.wait_for("load").then(t.step_func_done(function() { eventWatcher.wait_for("load").then(t.step_func_done(function() {
assert_false(iframe.contentDocument.fullscreenEnabled, "Document inside iframe without allowfullscreen attribute should not have fullscreen enabled flag set"); assert_true(iframe.contentDocument.fullscreenEnabled, "Document inside same-origin iframe without allowfullscreen attribute should still have fullscreen enabled flag set");
iframe.setAttribute("allowfullscreen", true);
assert_true(iframe.contentDocument.fullscreenEnabled, "Fullscreen should be allowed when allowfullscreen attribute is set");
iframe.removeAttribute("allowfullscreen");
assert_false(iframe.contentDocument.fullscreenEnabled, "Fullscreen should be denied when allowfullscreen attribute is removed");
})); }));
}, "iframe-allowfullscreen"); }, "iframe-same-origin-allowfullscreen");
async_test(function(t) {
var iframe = document.createElement("iframe");
iframe.src = getSourceForCrossOriginPage(0);
iframe.addEventListener('load', function() {
// Request the fullscreenEnabled state whenever the frame loads
iframe.contentWindow.postMessage(true,"*");
});
window.addEventListener('message', this.step_func(function(msg) {
if (msg.data.count == 0) {
assert_false(msg.data.fullscreenEnabled, "Document inside cross-origin iframe without allowfullscreen attribute should not have fullscreen enabled flag set");
iframe.setAttribute("allowfullscreen", "");
iframe.contentWindow.postMessage(true,"*"); // Request state again
} else if (msg.data.count == 1) {
assert_false(msg.data.fullscreenEnabled, "Fullscreen should be denied when allowfullscreen attribute is added, before reload");
iframe.src = getSourceForCrossOriginPage(2); // Reload the frame
} else if (msg.data.count == 2) {
assert_true(msg.data.fullscreenEnabled, "Fullscreen should be allowed when allowfullscreen attribute is added, after reload");
iframe.removeAttribute("allowfullscreen");
iframe.contentWindow.postMessage(true,"*"); // Request state again
} else if (msg.data.count == 3) {
assert_true(msg.data.fullscreenEnabled, "Fullscreen should be allowed when allowfullscreen attribute is removed, before reload");
iframe.src = getSourceForCrossOriginPage(4); // Reload the frame
} else if (msg.data.count == 4) {
assert_false(msg.data.fullscreenEnabled, "Fullscreen should be denied when allowfullscreen attribute is removed, after reload");
t.done();
}
}));
document.body.appendChild(iframe);
t.add_cleanup(function() {
document.body.removeChild(iframe);
});
}, "iframe-cross-origin-allowfullscreen");
/* Fullscreen enabled flag with about:blank */ /* Fullscreen enabled flag with about:blank */
@ -41,7 +81,7 @@
test(function() { test(function() {
test_allowfullscreen_noload(function() {}, function(doc) { test_allowfullscreen_noload(function() {}, function(doc) {
assert_false(doc.fullscreenEnabled, "Fullscreen should not be enabled without allowfullscreen attribute"); assert_true(doc.fullscreenEnabled, "Fullscreen should still be enabled in same-origin document without allowfullscreen attribute");
}); });
}, "iframe-noload-noallowfullscreen"); }, "iframe-noload-noallowfullscreen");