Skip to content

Commit

Permalink
Update web-platform-tests to revision 3b0abc897b6f4f3997ed42b9ef902e9…
Browse files Browse the repository at this point in the history
…8b2893d8d
  • Loading branch information
servo-wpt-sync committed Mar 25, 2019
1 parent 7a67443 commit c858882
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 15 deletions.
2 changes: 1 addition & 1 deletion tests/wpt/metadata/MANIFEST.json
Expand Up @@ -716714,7 +716714,7 @@
"testharness"
],
"webrtc/RTCSctpTransport-constructor.html": [
"e837d9b127b909f86e3349145a86fc19667a2ed9",
"58c883d5337752f9cff872726f6d985a647229ca",
"testharness"
],
"webrtc/RTCSctpTransport-events.html": [
Expand Down
2 changes: 1 addition & 1 deletion tests/wpt/metadata/encoding/single-byte-decoder.html.ini
Expand Up @@ -32,7 +32,7 @@


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

Expand Down
10 changes: 5 additions & 5 deletions tests/wpt/metadata/fetch/content-type/response.window.js.ini
Expand Up @@ -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/plain;charset=gbk text/html]
expected: FAIL

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

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

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

[createHTMLDocument]
expected: FAIL

[<template>]
expected: FAIL

This file was deleted.

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

Expand Down

This file was deleted.

2 changes: 2 additions & 0 deletions tests/wpt/mozilla/meta/css/transition_calc_implicit.html.ini
@@ -0,0 +1,2 @@
[transition_calc_implicit.html]
expected: TIMEOUT
Expand Up @@ -50,7 +50,7 @@

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);
Expand All @@ -66,7 +66,7 @@

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);
Expand Down

0 comments on commit c858882

Please sign in to comment.