mirror of
https://github.com/servo/servo.git
synced 2025-07-14 10:53:42 +01:00
Update web-platform-tests to revision 3b0abc897b6f4f3997ed42b9ef902e98b2893d8d
This commit is contained in:
parent
7a67443fcb
commit
c858882d3c
10 changed files with 22 additions and 15 deletions
|
@ -716714,7 +716714,7 @@
|
||||||
"testharness"
|
"testharness"
|
||||||
],
|
],
|
||||||
"webrtc/RTCSctpTransport-constructor.html": [
|
"webrtc/RTCSctpTransport-constructor.html": [
|
||||||
"e837d9b127b909f86e3349145a86fc19667a2ed9",
|
"58c883d5337752f9cff872726f6d985a647229ca",
|
||||||
"testharness"
|
"testharness"
|
||||||
],
|
],
|
||||||
"webrtc/RTCSctpTransport-events.html": [
|
"webrtc/RTCSctpTransport-events.html": [
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
|
|
||||||
[single-byte-decoder.html?XMLHttpRequest]
|
[single-byte-decoder.html?XMLHttpRequest]
|
||||||
expected: TIMEOUT
|
expected: CRASH
|
||||||
[ISO-8859-2: iso_8859-2:1987 (XMLHttpRequest)]
|
[ISO-8859-2: iso_8859-2:1987 (XMLHttpRequest)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -312,18 +312,18 @@
|
||||||
[<iframe>: separate response Content-Type: text/plain */*;charset=gbk]
|
[<iframe>: separate response Content-Type: text/plain */*;charset=gbk]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[<iframe>: separate response Content-Type: text/html;" text/plain]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[<iframe>: separate response Content-Type: text/html */*;charset=gbk]
|
[<iframe>: separate response Content-Type: text/html */*;charset=gbk]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[<iframe>: combined response Content-Type: text/html */*;charset=gbk]
|
[<iframe>: combined response Content-Type: text/html */*;charset=gbk]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[<iframe>: separate response Content-Type: text/html;charset=gbk text/plain text/html]
|
[<iframe>: combined response Content-Type: text/html */*]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[<iframe>: separate response Content-Type: */* text/html]
|
[<iframe>: separate response Content-Type: text/plain;charset=gbk text/html]
|
||||||
|
expected: FAIL
|
||||||
|
|
||||||
|
[<iframe>: separate response Content-Type: text/html;" \\" text/plain]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
[X-Content-Type-Options%3A%20nosniff%0C]
|
[X-Content-Type-Options%3A%20nosniff%0C]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Content-Type-Options%3A%20nosniff]
|
[X-Content-Type-Options%3A%20no%0D%0AX-Content-Type-Options%3A%20nosniff]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
[non-active-document.html]
|
||||||
|
[DOMParser]
|
||||||
|
expected: FAIL
|
||||||
|
|
||||||
|
[createHTMLDocument]
|
||||||
|
expected: FAIL
|
||||||
|
|
||||||
|
[<template>]
|
||||||
|
expected: FAIL
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
[script-onerror-insertion-point-2.html]
|
|
||||||
expected: TIMEOUT
|
|
|
@ -1,5 +1,4 @@
|
||||||
[realtimeanalyser-fft-scaling.html]
|
[realtimeanalyser-fft-scaling.html]
|
||||||
expected: TIMEOUT
|
|
||||||
[X 2048-point FFT peak position is not equal to 64. Got 0.]
|
[X 2048-point FFT peak position is not equal to 64. Got 0.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
[Worker-constructor.html]
|
|
||||||
expected: ERROR
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
[transition_calc_implicit.html]
|
||||||
|
expected: TIMEOUT
|
|
@ -50,7 +50,7 @@ promise_test(async (t) => {
|
||||||
|
|
||||||
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
||||||
|
|
||||||
const offer = await generateOffer({ pc: pc1, audio: true });
|
const offer = await generateAudioReceiveOnlyOffer(pc1);
|
||||||
await Promise.all([pc1.setLocalDescription(offer), pc2.setRemoteDescription(offer)]);
|
await Promise.all([pc1.setLocalDescription(offer), pc2.setRemoteDescription(offer)]);
|
||||||
const answer = await pc2.createAnswer();
|
const answer = await pc2.createAnswer();
|
||||||
await pc1.setRemoteDescription(answer);
|
await pc1.setRemoteDescription(answer);
|
||||||
|
@ -66,7 +66,7 @@ promise_test(async (t) => {
|
||||||
|
|
||||||
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
||||||
|
|
||||||
const offer = await generateOffer({ pc: pc2, audio: true });
|
const offer = await generateAudioReceiveOnlyOffer(pc2);
|
||||||
await Promise.all([pc2.setLocalDescription(offer), pc1.setRemoteDescription(offer)]);
|
await Promise.all([pc2.setLocalDescription(offer), pc1.setRemoteDescription(offer)]);
|
||||||
const answer = await pc1.createAnswer();
|
const answer = await pc1.createAnswer();
|
||||||
await pc1.setLocalDescription(answer);
|
await pc1.setLocalDescription(answer);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue