Update web-platform-tests to revision 3b0abc897b6f4f3997ed42b9ef902e98b2893d8d

This commit is contained in:
WPT Sync Bot 2019-03-24 21:39:55 -04:00
parent 7a67443fcb
commit c858882d3c
10 changed files with 22 additions and 15 deletions

View file

@ -716714,7 +716714,7 @@
"testharness"
],
"webrtc/RTCSctpTransport-constructor.html": [
"e837d9b127b909f86e3349145a86fc19667a2ed9",
"58c883d5337752f9cff872726f6d985a647229ca",
"testharness"
],
"webrtc/RTCSctpTransport-events.html": [

View file

@ -32,7 +32,7 @@
[single-byte-decoder.html?XMLHttpRequest]
expected: TIMEOUT
expected: CRASH
[ISO-8859-2: iso_8859-2:1987 (XMLHttpRequest)]
expected: FAIL

View file

@ -312,18 +312,18 @@
[<iframe>: separate response Content-Type: text/plain */*;charset=gbk]
expected: FAIL
[<iframe>: separate response Content-Type: text/html;" text/plain]
expected: FAIL
[<iframe>: separate response Content-Type: text/html */*;charset=gbk]
expected: FAIL
[<iframe>: combined response Content-Type: text/html */*;charset=gbk]
expected: FAIL
[<iframe>: separate response Content-Type: text/html;charset=gbk text/plain text/html]
[<iframe>: combined response Content-Type: text/html */*]
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

View file

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

View file

@ -0,0 +1,10 @@
[non-active-document.html]
[DOMParser]
expected: FAIL
[createHTMLDocument]
expected: FAIL
[<template>]
expected: FAIL

View file

@ -1,2 +0,0 @@
[script-onerror-insertion-point-2.html]
expected: TIMEOUT

View file

@ -1,5 +1,4 @@
[realtimeanalyser-fft-scaling.html]
expected: TIMEOUT
[X 2048-point FFT peak position is not equal to 64. Got 0.]
expected: FAIL

View file

@ -1,2 +0,0 @@
[Worker-constructor.html]
expected: ERROR

View file

@ -0,0 +1,2 @@
[transition_calc_implicit.html]
expected: TIMEOUT

View file

@ -50,7 +50,7 @@ promise_test(async (t) => {
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)]);
const answer = await pc2.createAnswer();
await pc1.setRemoteDescription(answer);
@ -66,7 +66,7 @@ promise_test(async (t) => {
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)]);
const answer = await pc1.createAnswer();
await pc1.setLocalDescription(answer);