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>