Update web-platform-tests to revision 7b828b4901ea5c5d39600f1d6c14dd4a73d1b008

This commit is contained in:
WPT Sync Bot 2020-01-27 08:22:54 +00:00
parent 7596a0fc1a
commit cfc79b019a
17 changed files with 95 additions and 23 deletions

View file

@ -294938,6 +294938,12 @@
"workers/constructors/SharedWorker/1.headers": [
[]
],
"workers/constructors/SharedWorker/Infinity": [
[]
],
"workers/constructors/SharedWorker/NaN": [
[]
],
"workers/constructors/SharedWorker/connect-event.js": [
[]
],
@ -449480,6 +449486,18 @@
{}
]
],
"workers/constructors/SharedWorker/Infinity-arguments.html": [
[
"workers/constructors/SharedWorker/Infinity-arguments.html",
{}
]
],
"workers/constructors/SharedWorker/NaN-arguments.html": [
[
"workers/constructors/SharedWorker/NaN-arguments.html",
{}
]
],
"workers/constructors/SharedWorker/URLMismatchError.htm": [
[
"workers/constructors/SharedWorker/URLMismatchError.htm",
@ -751184,6 +751202,22 @@
"e7ec0d6699d07e5b13d0cb6f24c3639258fccdaa",
"support"
],
"workers/constructors/SharedWorker/Infinity": [
"d4c921c5658e6798ec56b06f513413572aab846a",
"support"
],
"workers/constructors/SharedWorker/Infinity-arguments.html": [
"b38e55dc6bae2a64476676bcce9ace2e1a15dc8a",
"testharness"
],
"workers/constructors/SharedWorker/NaN": [
"1d06329788c3a6fd7480f462a9d1ded231356962",
"support"
],
"workers/constructors/SharedWorker/NaN-arguments.html": [
"8a4578a965a36cdf34a9231a6345e7b2f39994e6",
"testharness"
],
"workers/constructors/SharedWorker/URLMismatchError.htm": [
"e1a11f4f8fe701365c89f9799794616975c39764",
"testharness"

View file

@ -1,4 +0,0 @@
[elementFromPoint-001.html]
[CSSOM View - 5 - extensions to the Document interface]
expected: FAIL

View file

@ -312,18 +312,18 @@
[fetch(): separate response Content-Type: text/plain ]
expected: NOTRUN
[<iframe>: separate response Content-Type: text/html;" \\" text/plain]
expected: FAIL
[<iframe>: combined response Content-Type: */* text/html]
expected: FAIL
[<iframe>: separate response Content-Type: text/html;" text/plain]
expected: FAIL
[<iframe>: separate response Content-Type: text/html */*]
[<iframe>: combined response Content-Type: text/html;charset=gbk text/plain text/html]
expected: FAIL
[<iframe>: separate response Content-Type: text/html;x=" text/plain]
[<iframe>: separate response Content-Type: text/plain */*]
expected: FAIL
[<iframe>: combined response Content-Type: text/html;" \\" text/plain]
expected: FAIL
[<iframe>: combined response Content-Type: text/html;x=" text/plain]
expected: FAIL

View file

@ -11,3 +11,12 @@
[X-Content-Type-Options%3A%20nosniff%0C]
expected: FAIL
[X-Content-Type-Options%3A%20%22nosniFF%22]
expected: FAIL
[X-Content-Type-Options%3A%20no%0D%0AX-Content-Type-Options%3A%20nosniff]
expected: FAIL
[Content-Type-Options%3A%20nosniff]
expected: FAIL

View file

@ -5,7 +5,7 @@
expected: FAIL
[Embedded credentials are treated as network errors in frames.]
expected: TIMEOUT
expected: FAIL
[Embedded credentials are treated as network errors in new windows.]
expected: FAIL

View file

@ -0,0 +1,4 @@
[traverse_the_history_1.html]
[Multiple history traversals from the same task]
expected: FAIL

View file

@ -1,4 +1,4 @@
[traverse_the_history_2.html]
[traverse_the_history_5.html]
[Multiple history traversals, last would be aborted]
expected: FAIL

View file

@ -1,5 +1,5 @@
[embedded-opener-remove-frame.html]
expected: CRASH
expected: TIMEOUT
[opener and "removed" embedded documents]
expected: FAIL
@ -7,5 +7,5 @@
expected: FAIL
[opener of discarded auxiliary browsing context]
expected: FAIL
expected: TIMEOUT

View file

@ -1,6 +1,5 @@
[iframe_sandbox_popups_escaping-3.html]
type: testharness
expected: CRASH
[Check that popups from a sandboxed iframe escape the sandbox if\n allow-popups-to-escape-sandbox is used]
expected: TIMEOUT
expected: FAIL

View file

@ -1,5 +1,6 @@
[iframe_sandbox_popups_nonescaping-3.html]
type: testharness
expected: TIMEOUT
[Check that popups from a sandboxed iframe do not escape the sandbox]
expected: FAIL
expected: NOTRUN

View file

@ -10,6 +10,3 @@
[Verifies the resolution of entry.startTime is at least 20 microseconds.]
expected: TIMEOUT
[Verifies the resolution of performance.now() is at least 5 microseconds.]
expected: FAIL

View file

@ -1,4 +1,5 @@
[crossorigin-sandwich-TAO.sub.html]
expected: ERROR
[There should be one entry.]
expected: FAIL

View file

@ -1,5 +1,4 @@
[005.html]
expected: ERROR
[dedicated worker in shared worker in dedicated worker]
expected: FAIL

View file

@ -0,0 +1,3 @@
onconnect = e => {
e.ports[0].postMessage(['Infinity', self.name]);
};

View file

@ -0,0 +1,13 @@
<!doctype html>
<title>Infinity as arguments</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
const worker = new SharedWorker(Infinity, Infinity);
worker.port.onmessage = t.step_func_done(e => {
assert_equals(e.data[0], 'Infinity', 'first arg (script name)');
assert_equals(e.data[1], 'Infinity', 'second arg (worker name)');
});
}, 'Test constructing a shared worker with Infinity');
</script>

View file

@ -0,0 +1,3 @@
onconnect = e => {
e.ports[0].postMessage(['NaN', self.name]);
};

View file

@ -0,0 +1,13 @@
<!doctype html>
<title>NaN as arguments</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
const worker = new SharedWorker(NaN, NaN);
worker.port.onmessage = t.step_func_done(e => {
assert_equals(e.data[0], 'NaN', 'first arg (script name)');
assert_equals(e.data[1], 'NaN', 'second arg (worker name)');
});
}, 'Test constructing a shared worker with NaN');
</script>