Update web-platform-tests to revision e03a9b1341ae9bdb1e4fa03765257b84d26fe2f1

This commit is contained in:
Josh Matthews 2017-10-16 11:11:04 -04:00
parent 7d05c76d18
commit 20a833eb75
5167 changed files with 4696 additions and 297370 deletions

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<meta charset="uft-8">
<meta charset="utf-8">
<title>HTML Test: iframe_sandbox_allow_scripts</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#attr-iframe-sandbox">

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>iframe 'sandbox' ASCII case insensitive</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/#attr-iframe-sandbox">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
async_test(function(t) {
let iframe = document.createElement('iframe');
iframe.setAttribute('sandbox', 'allow-same-or\u0130gin');
iframe.setAttribute('hidden', '');
assert_true(iframe.sandbox.supports('allow-same-origin'), 'supports the allow-same-origin token');
iframe.src = 'support/blank.htm';
iframe.onload = t.step_func_done(function() {
try {
assert_equals(iframe.contentDocument, null, 'child document not reachable');
} catch (e) {
// The assert_equals throwing is a pass.
}
});
document.body.appendChild(iframe);
}, document.title + ', allow-same-or\u0130gin');
async_test(function(t) {
let iframe = document.createElement('iframe');
iframe.setAttribute('sandbox', 'allow-\u017Fcripts');
iframe.setAttribute('hidden', '');
assert_true(iframe.sandbox.supports('allow-scripts'), 'supports the allow-scripts token');
window.onmessage = t.unreached_func('no scripts should run in the iframe');
iframe.src = 'support/sandbox_allow_script.html';
iframe.onload = t.step_func(function() {
t.step_timeout(t.step_func_done(), 100);
});
document.body.appendChild(iframe);
}, document.title + ', allow-\u017Fcripts');
</script>

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<meta charset="uft-8">
<meta charset="utf-8">
<title>HTML Test: sandbox_allow_scripts</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<div id="test">Before change</div>

View file

@ -6,7 +6,6 @@
<script src="testlib/testlib.js"></script>
</head>
<body>
<div id="log">FAILED (This TC requires JavaScript enabled)</div>
<div></div>
<script>log('inline script #1');
@ -20,17 +19,21 @@
<script type="text/javascript">
log( 'inline script #2' );
var t = async_test()
function test() {
assert_any(assert_array_equals, eventOrder, [
['inline script #1', 'end script #1', 'inline script #2', 'frame/popup script 0', 'frame/popup script 1'],
['inline script #1', 'end script #1', 'inline script #2', 'frame/popup script 1', 'frame/popup script 0']]);
t.done();
}
onload = t.step_func(function() {
setTimeout(t.step_func(test), 200);
});
promise_test(() => {
const frames = document.querySelectorAll("iframe");
return Promise.all([
new Promise(resolve => window.addEventListener('load', resolve)),
new Promise(resolve => frames[0].addEventListener('load', resolve)),
new Promise(resolve => frames[1].addEventListener('load', resolve)),
]).then(() => {
assert_equals(eventOrder.length, 5);
assert_array_equals(
eventOrder.slice(0, 3),
['inline script #1', 'end script #1', 'inline script #2'],
"inline scripts should run first");
assert_in_array('frame/popup script 0', eventOrder.slice(3, 5), 'iframe should have loaded');
assert_in_array('frame/popup script 1', eventOrder.slice(3, 5), 'iframe should have loaded');
});
}, 'iframes should load asynchronously after inline script run');
</script>
</body></html>