Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync WPT with upstream (27-01-2020) #25620

Merged
merged 1 commit into from Jan 27, 2020
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Update web-platform-tests to revision 7b828b4901ea5c5d39600f1d6c14dd4…

…a73d1b008
  • Loading branch information
servo-wpt-sync committed Jan 27, 2020
commit cfc79b019a5a82efdc61a5f8290319b2693e5ca6
"workers/constructors/SharedWorker/1.headers": [
[]
],
"workers/constructors/SharedWorker/Infinity": [
[]
],
"workers/constructors/SharedWorker/NaN": [
[]
],
"workers/constructors/SharedWorker/connect-event.js": [
[]
],
{}
]
],
"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",
"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"

This file was deleted.

@@ -312,18 +312,18 @@
[fetch(): separate response Content-Type: text/plain ]
expected: NOTRUN

[<iframe>: separate response Content-Type: text/html;" \\" text/plain]
[<iframe>: separate response Content-Type: text/html;" text/plain]
expected: FAIL

[<iframe>: combined 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;" text/plain]
[<iframe>: separate response Content-Type: text/plain */*]
expected: FAIL

[<iframe>: separate response Content-Type: text/html */*]
[<iframe>: combined response Content-Type: text/html;" \\" text/plain]
expected: FAIL

[<iframe>: separate response Content-Type: text/html;x=" text/plain]
[<iframe>: combined response Content-Type: text/html;x=" text/plain]
expected: FAIL

@@ -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

@@ -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
@@ -0,0 +1,4 @@
[traverse_the_history_1.html]
[Multiple history traversals from the same task]
expected: FAIL

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

@@ -1,11 +1,11 @@
[embedded-opener-remove-frame.html]
expected: CRASH
expected: TIMEOUT
[opener and "removed" embedded documents]
expected: FAIL

[opener of discarded nested browsing context]
expected: FAIL

[opener of discarded auxiliary browsing context]
expected: FAIL
expected: TIMEOUT

@@ -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

@@ -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

@@ -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

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

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

@@ -0,0 +1,3 @@
onconnect = e => {
e.ports[0].postMessage(['Infinity', self.name]);
};
@@ -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>
@@ -0,0 +1,3 @@
onconnect = e => {
e.ports[0].postMessage(['NaN', self.name]);
};
@@ -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>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.