mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
Merge autoland to mozilla-central. a=merge
This commit is contained in:
commit
dad30161bf
@ -1665,7 +1665,9 @@ void nsAccessibilityService::NotifyOfConsumersChange() {
|
||||
const mozilla::a11y::MarkupMapInfo* nsAccessibilityService::GetMarkupMapInfoFor(
|
||||
Accessible* aAcc) const {
|
||||
if (LocalAccessible* localAcc = aAcc->AsLocal()) {
|
||||
return GetMarkupMapInfoFor(localAcc->GetContent());
|
||||
return localAcc->HasOwnContent()
|
||||
? GetMarkupMapInfoFor(localAcc->GetContent())
|
||||
: nullptr;
|
||||
}
|
||||
// XXX For now, we assume all RemoteAccessibles are HTML elements. This
|
||||
// isn't strictly correct, but as far as current callers are concerned,
|
||||
|
@ -1634,6 +1634,7 @@ pref("messaging-system.log", "warn");
|
||||
pref("messaging-system.rsexperimentloader.enabled", true);
|
||||
pref("messaging-system.rsexperimentloader.collection_id", "nimbus-desktop-experiments");
|
||||
pref("nimbus.debug", false);
|
||||
pref("nimbus.validation.enabled", true);
|
||||
|
||||
// Enable the DOM fullscreen API.
|
||||
pref("full-screen-api.enabled", true);
|
||||
|
@ -300,12 +300,17 @@ struct ParamTraits<mozilla::dom::RTCInboundRtpStreamStats> {
|
||||
WriteParam(aWriter, aParam.mFramesDecoded);
|
||||
WriteParam(aWriter, aParam.mFrameWidth);
|
||||
WriteParam(aWriter, aParam.mFrameHeight);
|
||||
WriteParam(aWriter, aParam.mFramesPerSecond);
|
||||
WriteParam(aWriter, aParam.mBytesReceived);
|
||||
WriteParam(aWriter, aParam.mNackCount);
|
||||
WriteParam(aWriter, aParam.mFirCount);
|
||||
WriteParam(aWriter, aParam.mPliCount);
|
||||
WriteParam(aWriter, aParam.mFramesPerSecond);
|
||||
WriteParam(aWriter, aParam.mFramesReceived);
|
||||
WriteParam(aWriter, aParam.mJitterBufferDelay);
|
||||
WriteParam(aWriter, aParam.mJitterBufferEmittedCount);
|
||||
WriteParam(aWriter, aParam.mTotalSamplesReceived);
|
||||
WriteParam(aWriter, aParam.mConcealedSamples);
|
||||
WriteParam(aWriter, aParam.mSilentConcealedSamples);
|
||||
WriteRTCReceivedRtpStreamStats(aWriter, aParam);
|
||||
}
|
||||
|
||||
@ -314,12 +319,17 @@ struct ParamTraits<mozilla::dom::RTCInboundRtpStreamStats> {
|
||||
ReadParam(aReader, &(aResult->mFramesDecoded)) &&
|
||||
ReadParam(aReader, &(aResult->mFrameWidth)) &&
|
||||
ReadParam(aReader, &(aResult->mFrameHeight)) &&
|
||||
ReadParam(aReader, &(aResult->mFramesPerSecond)) &&
|
||||
ReadParam(aReader, &(aResult->mBytesReceived)) &&
|
||||
ReadParam(aReader, &(aResult->mNackCount)) &&
|
||||
ReadParam(aReader, &(aResult->mFirCount)) &&
|
||||
ReadParam(aReader, &(aResult->mPliCount)) &&
|
||||
ReadParam(aReader, &(aResult->mFramesPerSecond)) &&
|
||||
ReadParam(aReader, &(aResult->mFramesReceived)) &&
|
||||
ReadParam(aReader, &(aResult->mJitterBufferDelay)) &&
|
||||
ReadParam(aReader, &(aResult->mJitterBufferEmittedCount)) &&
|
||||
ReadParam(aReader, &(aResult->mTotalSamplesReceived)) &&
|
||||
ReadParam(aReader, &(aResult->mConcealedSamples)) &&
|
||||
ReadParam(aReader, &(aResult->mSilentConcealedSamples)) &&
|
||||
ReadRTCReceivedRtpStreamStats(aReader, aResult);
|
||||
}
|
||||
};
|
||||
|
@ -314,6 +314,15 @@ nsTArray<RefPtr<RTCStatsPromise>> RTCRtpReceiver::GetStatsInternal() {
|
||||
local.mPacketsReceived.Construct(audioStats->packets_rcvd);
|
||||
local.mPacketsDiscarded.Construct(audioStats->packets_discarded);
|
||||
local.mBytesReceived.Construct(audioStats->payload_bytes_rcvd);
|
||||
local.mJitterBufferDelay.Construct(
|
||||
audioStats->jitter_buffer_delay_seconds);
|
||||
local.mJitterBufferEmittedCount.Construct(
|
||||
audioStats->jitter_buffer_emitted_count);
|
||||
local.mTotalSamplesReceived.Construct(
|
||||
audioStats->total_samples_received);
|
||||
local.mConcealedSamples.Construct(audioStats->concealed_samples);
|
||||
local.mSilentConcealedSamples.Construct(
|
||||
audioStats->silent_concealed_samples);
|
||||
/*
|
||||
* Potential new stats that are now available upstream.
|
||||
if (audioStats->last_packet_received_timestamp_ms) {
|
||||
@ -335,15 +344,6 @@ nsTArray<RefPtr<RTCStatsPromise>> RTCRtpReceiver::GetStatsInternal() {
|
||||
webrtc::Timestamp::Millis(
|
||||
*audioStats->estimated_playout_ntp_timestamp_ms)));
|
||||
}
|
||||
local.mJitterBufferDelay.Construct(
|
||||
audioStats->jitter_buffer_delay_seconds);
|
||||
local.mJitterBufferEmittedCount.Construct(
|
||||
audioStats->jitter_buffer_emitted_count);
|
||||
local.mTotalSamplesReceived.Construct(
|
||||
audioStats->total_samples_received);
|
||||
local.mConcealedSamples.Construct(audioStats->concealed_samples);
|
||||
local.mSilentConcealedSamples.Construct(
|
||||
audioStats->silent_concealed_samples);
|
||||
local.mConcealmentEvents.Construct(
|
||||
audioStats->concealment_events);
|
||||
local.mInsertedSamplesForDeceleration.Construct(
|
||||
@ -435,7 +435,10 @@ nsTArray<RefPtr<RTCStatsPromise>> RTCRtpReceiver::GetStatsInternal() {
|
||||
local.mFramesReceived.Construct(
|
||||
videoStats->frame_counts.key_frames +
|
||||
videoStats->frame_counts.delta_frames);
|
||||
|
||||
local.mJitterBufferDelay.Construct(
|
||||
videoStats->jitter_buffer_delay_seconds);
|
||||
local.mJitterBufferEmittedCount.Construct(
|
||||
videoStats->jitter_buffer_emitted_count);
|
||||
/*
|
||||
* Potential new stats that are now available upstream.
|
||||
if (videoStats->qp_sum) {
|
||||
@ -464,10 +467,6 @@ nsTArray<RefPtr<RTCStatsPromise>> RTCRtpReceiver::GetStatsInternal() {
|
||||
webrtc::Timestamp::Millis(
|
||||
*videoStats->estimated_playout_ntp_timestamp_ms)));
|
||||
}
|
||||
local.mJitterBufferDelay.Construct(
|
||||
videoStats->jitter_buffer_delay_seconds);
|
||||
local.mJitterBufferEmittedCount.Construct(
|
||||
videoStats->jitter_buffer_emitted_count);
|
||||
local.mFramesReceived.Construct(
|
||||
videoStats->frame_counts.key_frames +
|
||||
videoStats->frame_counts.delta_frames);
|
||||
|
@ -19,6 +19,8 @@ const statsExpectedByType = {
|
||||
"packetsDiscarded",
|
||||
"bytesReceived",
|
||||
"jitter",
|
||||
"jitterBufferDelay",
|
||||
"jitterBufferEmittedCount",
|
||||
],
|
||||
optional: ["remoteId", "nackCount"],
|
||||
localVideoOnly: [
|
||||
@ -31,6 +33,11 @@ const statsExpectedByType = {
|
||||
"frameHeight",
|
||||
"framesReceived",
|
||||
],
|
||||
localAudioOnly: [
|
||||
"totalSamplesReceived",
|
||||
"concealedSamples",
|
||||
"silentConcealedSamples",
|
||||
],
|
||||
unimplemented: [
|
||||
"mediaTrackId",
|
||||
"transportId",
|
||||
@ -65,6 +72,7 @@ const statsExpectedByType = {
|
||||
"retransmittedBytesSent",
|
||||
],
|
||||
optional: ["nackCount", "qpSum"],
|
||||
localAudioOnly: [],
|
||||
localVideoOnly: [
|
||||
"framesEncoded",
|
||||
"firCount",
|
||||
@ -230,7 +238,7 @@ const statsExpectedByType = {
|
||||
|
||||
["in", "out"].forEach(pre => {
|
||||
let s = statsExpectedByType[pre + "bound-rtp"];
|
||||
s.optional = [...s.optional, ...s.localVideoOnly];
|
||||
s.optional = [...s.optional, ...s.localVideoOnly, ...s.localAudioOnly];
|
||||
});
|
||||
|
||||
//
|
||||
@ -490,10 +498,67 @@ function pedanticChecks(report) {
|
||||
`local only test. value=${stat.jitter}`
|
||||
);
|
||||
|
||||
// jitterBufferEmittedCount
|
||||
let expectedJitterBufferEmmitedCount = stat.kind == "video" ? 10 : 1000;
|
||||
ok(
|
||||
stat.jitterBufferEmittedCount > expectedJitterBufferEmmitedCount,
|
||||
`${stat.type}.jitterBufferEmittedCount is a sane number for a short ` +
|
||||
`${stat.kind} test. value=${stat.jitterBufferEmittedCount}`
|
||||
);
|
||||
|
||||
// jitterBufferDelay
|
||||
let avgJitterBufferDelay =
|
||||
stat.jitterBufferDelay / stat.jitterBufferEmittedCount;
|
||||
ok(
|
||||
avgJitterBufferDelay > 0.01 && avgJitterBufferDelay < 10,
|
||||
`${stat.type}.jitterBufferDelay is a sane number for a short ` +
|
||||
`${stat.kind} test. value=${stat.jitterBufferDelay}/${stat.jitterBufferEmittedCount}=${avgJitterBufferDelay}`
|
||||
);
|
||||
|
||||
//
|
||||
// Optional fields
|
||||
//
|
||||
|
||||
//
|
||||
// Local audio only stats
|
||||
//
|
||||
if (stat.inner.kind != "audio") {
|
||||
expectations.localAudioOnly.forEach(field => {
|
||||
ok(
|
||||
stat[field] === undefined,
|
||||
`${stat.type} does not have field ${field}` +
|
||||
` when kind is not 'audio'`
|
||||
);
|
||||
});
|
||||
} else {
|
||||
expectations.localAudioOnly.forEach(field => {
|
||||
ok(
|
||||
stat.inner[field] !== undefined,
|
||||
stat.type + " has field " + field + " when kind is video"
|
||||
);
|
||||
});
|
||||
// totalSamplesReceived
|
||||
ok(
|
||||
stat.totalSamplesReceived > 1000,
|
||||
`${stat.type}.totalSamplesReceived is a sane number for a short ` +
|
||||
`${stat.kind} test. value=${stat.totalSamplesReceived}`
|
||||
);
|
||||
|
||||
// concealedSamples
|
||||
ok(
|
||||
stat.concealedSamples > 100,
|
||||
`${stat.type}.concealedSamples is a sane number for a short ` +
|
||||
`${stat.kind} test. value=${stat.concealedSamples}`
|
||||
);
|
||||
|
||||
// silentConcealedSamples
|
||||
ok(
|
||||
stat.silentConcealedSamples >= 0,
|
||||
`${stat.type}.silentConcealedSamples is a sane number for a short ` +
|
||||
`${stat.kind} test. value=${stat.silentConcealedSamples}`
|
||||
);
|
||||
}
|
||||
|
||||
//
|
||||
// Local video only stats
|
||||
//
|
||||
|
@ -6,6 +6,7 @@
|
||||
* The origin of this IDL file is
|
||||
* http://dev.w3.org/2011/webrtc/editor/webrtc.html#rtcstatsreport-object
|
||||
* http://www.w3.org/2011/04/webrtc/wiki/Stats
|
||||
* https://www.w3.org/TR/webrtc-stats/
|
||||
*/
|
||||
|
||||
enum RTCStatsType {
|
||||
@ -66,11 +67,16 @@ dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
|
||||
unsigned long framesDecoded;
|
||||
unsigned long frameWidth;
|
||||
unsigned long frameHeight;
|
||||
double framesPerSecond;
|
||||
unsigned long long bytesReceived;
|
||||
unsigned long nackCount;
|
||||
unsigned long firCount;
|
||||
unsigned long pliCount;
|
||||
double framesPerSecond;
|
||||
double jitterBufferDelay;
|
||||
unsigned long long jitterBufferEmittedCount;
|
||||
unsigned long long totalSamplesReceived;
|
||||
unsigned long long concealedSamples;
|
||||
unsigned long long silentConcealedSamples;
|
||||
unsigned long framesReceived;
|
||||
};
|
||||
|
||||
|
24
gfx/tests/crashtests/1780567.html
Normal file
24
gfx/tests/crashtests/1780567.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
* {
|
||||
overflow-inline: hidden;
|
||||
border-end-end-radius: 14mm ! important;
|
||||
border-left-color: WindowFrame;
|
||||
backdrop-filter: saturate(70%);
|
||||
}
|
||||
|
||||
INPUT {
|
||||
outline: medium invert auto;
|
||||
}
|
||||
|
||||
H2 {
|
||||
padding: 69% !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2 dir='ltr'><dfn> <i> <input></i> </dfn></h2></body>
|
||||
</html>
|
||||
|
@ -219,3 +219,5 @@ pref(layout.css.backdrop-filter.enabled,true) load 1771294.html
|
||||
pref(layout.css.backdrop-filter.enabled,true) load 1771293.html
|
||||
pref(layout.css.backdrop-filter.enabled,true) load 1771556.html
|
||||
pref(layout.css.backdrop-filter.enabled,true) load 1771561.html
|
||||
load 1780567.html
|
||||
|
||||
|
@ -399,8 +399,11 @@ impl RenderTaskGraphBuilder {
|
||||
let mut location = None;
|
||||
let kind = task.kind.target_kind();
|
||||
|
||||
// If a task is used as part of an existing-chain then we can't
|
||||
// safely share it (nor would we want to).
|
||||
let can_use_shared_surface =
|
||||
task.kind.can_use_shared_surface();
|
||||
task.kind.can_use_shared_surface() &&
|
||||
task.free_after != PassId::INVALID;
|
||||
|
||||
if can_use_shared_surface {
|
||||
// If we can use a shared surface, step through the existing shared
|
||||
|
@ -10,72 +10,67 @@
|
||||
|
||||
[structured-clone.any.html?101-last]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [TIMEOUT, OK]
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [TIMEOUT, OK]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [TIMEOUT, OK]
|
||||
if (processor == "x86") and not debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and swgl and not fission: [TIMEOUT, OK]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: [TIMEOUT, OK]
|
||||
TIMEOUT
|
||||
[Not serializable: Window: [object Window\]]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS]
|
||||
if (processor == "x86") and not debug: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (os == "win") and not debug: [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: symbol: Symbol(desc)]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, FAIL]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, FAIL]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, FAIL]
|
||||
if (processor == "x86") and not debug: [NOTRUN, FAIL]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, FAIL]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, FAIL]
|
||||
if (os == "win") and not debug: [NOTRUN, FAIL]
|
||||
NOTRUN
|
||||
|
||||
[FileList: [object FileList\]]
|
||||
expected:
|
||||
if win10_2004 and ccov: [TIMEOUT, NOTRUN, FAIL]
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, FAIL]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, FAIL]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, FAIL]
|
||||
if (processor == "x86") and not debug: [NOTRUN, FAIL]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, FAIL]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, FAIL]
|
||||
if (os == "win") and not debug: [NOTRUN, FAIL]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: function: function() {}]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS]
|
||||
if (processor == "x86") and not debug: [NOTRUN, PASS]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "win") and not debug: [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[File: [object File\]]
|
||||
expected:
|
||||
if (os == "win") and ccov: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and debug and not fission and swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission: NOTRUN
|
||||
if (os == "linux") and not debug and not fission: [TIMEOUT, NOTRUN]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "mac") and debug: NOTRUN
|
||||
if os == "win": [NOTRUN, PASS, TIMEOUT]
|
||||
[NOTRUN, TIMEOUT]
|
||||
|
||||
[Not serializable: Event: [object Event\]]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS]
|
||||
if (processor == "x86") and not debug: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (os == "win") and not debug: [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: MessageChannel: [object MessageChannel\]]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS]
|
||||
if (processor == "x86") and not debug: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "linux") and swgl and not fission: [NOTRUN, PASS]
|
||||
if (os == "win") and not debug: [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Blob: [object Blob\]]
|
||||
expected:
|
||||
if (os == "linux") and not debug and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission: TIMEOUT
|
||||
if (os == "mac") and debug: TIMEOUT
|
||||
[TIMEOUT, PASS]
|
||||
@ -83,73 +78,79 @@
|
||||
|
||||
[structured-clone.any.worker.html?101-last]
|
||||
expected:
|
||||
if (os == "android") and debug and swgl: [OK, TIMEOUT]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, OK]
|
||||
if (os == "linux") and not fission and not swgl: [TIMEOUT, OK]
|
||||
if (os == "mac") and debug: [TIMEOUT, OK]
|
||||
if (os == "win") and (processor == "x86_64"): [TIMEOUT, OK]
|
||||
if debug and (os == "linux") and not fission and not swgl: [TIMEOUT, OK]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [TIMEOUT, OK]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [TIMEOUT, OK]
|
||||
if not debug and (os == "linux") and not fission: [TIMEOUT, OK]
|
||||
if debug and (os == "mac"): [TIMEOUT, OK]
|
||||
if debug and (os == "android"): [TIMEOUT, OK]
|
||||
TIMEOUT
|
||||
[Not serializable: function: function() {}]
|
||||
expected:
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and swgl: [PASS, NOTRUN]
|
||||
if (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if (os == "mac") and debug: [NOTRUN, PASS]
|
||||
if debug and (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if not debug and (os == "linux") and not fission: [NOTRUN, PASS]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if debug and (os == "mac"): [NOTRUN, PASS]
|
||||
if debug and (os == "android"): [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: MessageChannel: [object MessageChannel\]]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and swgl: [PASS, NOTRUN]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "mac") and debug: [NOTRUN, PASS]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if debug and (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if not debug and (os == "linux") and not fission: [NOTRUN, PASS]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if debug and (os == "android"): [NOTRUN, PASS]
|
||||
if debug and (os == "mac"): [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: symbol: Symbol(desc)]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not swgl: [NOTRUN, FAIL]
|
||||
if (os == "android") and debug and swgl: [FAIL, NOTRUN]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, FAIL]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, FAIL]
|
||||
if (os == "mac") and debug: [NOTRUN, FAIL]
|
||||
if debug and (os == "linux") and not fission and not swgl: [NOTRUN, FAIL]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [NOTRUN, FAIL]
|
||||
if not debug and (os == "linux") and not fission: [NOTRUN, FAIL]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [NOTRUN, FAIL]
|
||||
if debug and (os == "mac"): [NOTRUN, FAIL]
|
||||
if debug and (os == "android"): [NOTRUN, FAIL]
|
||||
NOTRUN
|
||||
|
||||
[File: [object File\]]
|
||||
expected:
|
||||
if (os == "linux") and debug and not fission and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "win") and (processor == "x86") and not debug: NOTRUN
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "android") and debug and swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "android") and debug and swgl: [TIMEOUT, PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and fission: NOTRUN
|
||||
if (os == "linux") and not debug and not fission: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "win") and (processor == "x86") and not debug: NOTRUN
|
||||
if (os == "mac") and debug: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "mac") and debug: [NOTRUN, PASS, TIMEOUT]
|
||||
[NOTRUN, TIMEOUT]
|
||||
|
||||
[Not serializable: Event: [object Event\]]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and swgl: [PASS, NOTRUN]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if (os == "mac") and debug: [NOTRUN, PASS]
|
||||
if debug and (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if not debug and (os == "linux") and not fission: [NOTRUN, PASS]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if debug and (os == "android"): [NOTRUN, PASS]
|
||||
if debug and (os == "mac"): [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Not serializable: DedicatedWorkerGlobalScope: [object DedicatedWorkerGlobalScope\]]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and not swgl: [NOTRUN, PASS]
|
||||
if (os == "android") and debug and swgl: [PASS, NOTRUN]
|
||||
if (os == "mac") and debug: [NOTRUN, PASS]
|
||||
if (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if debug and (os == "linux") and not fission and not swgl: [NOTRUN, PASS]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if not debug and (os == "linux") and not fission: [NOTRUN, PASS]
|
||||
if debug and (os == "mac"): [NOTRUN, PASS]
|
||||
if debug and (os == "android"): [NOTRUN, PASS]
|
||||
NOTRUN
|
||||
|
||||
[Blob: [object Blob\]]
|
||||
expected:
|
||||
if (os == "linux") and not debug and fission: TIMEOUT
|
||||
if (os == "win") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and fission: TIMEOUT
|
||||
if (os == "android") and swgl: [PASS, TIMEOUT]
|
||||
[TIMEOUT, PASS]
|
||||
|
||||
|
@ -1,18 +1,23 @@
|
||||
[navigation-insecure.html]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [OK, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [OK, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
|
||||
[Do not clear datatypes on insecure navigation (header: )]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [PASS, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
|
||||
|
||||
[Do not clear datatypes on insecure navigation (header: cookies)]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, NOTRUN]
|
||||
|
||||
[Do not clear datatypes on insecure navigation (header: storage)]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, NOTRUN]
|
||||
|
||||
[Do not clear datatypes on insecure navigation (header: cookies, storage)]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, NOTRUN]
|
||||
|
@ -1,12 +1,15 @@
|
||||
[navigation.https.html]
|
||||
expected:
|
||||
if fission and (os == "win") and debug: [OK, TIMEOUT]
|
||||
if fission and (os == "win") and not debug: [OK, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [OK, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
|
||||
if (os == "win") and debug: [OK, TIMEOUT]
|
||||
[Clear datatypes on navigation: cookies, storage]
|
||||
expected:
|
||||
if fission and (os == "win") and debug: [PASS, TIMEOUT]
|
||||
if fission and (os == "win") and not debug: [PASS, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "win") and debug: [PASS, TIMEOUT]
|
||||
|
||||
[Clear datatypes on navigation: storage]
|
||||
expected:
|
||||
if fission and (os == "win") and not debug: [PASS, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
|
||||
if (os == "win") and not debug and (processor == "x86"): [PASS, TIMEOUT]
|
||||
|
@ -1,8 +1,8 @@
|
||||
[worklet-audio-import-data.https.html]
|
||||
[Content Security Policy: Expects blocked for worklet-audio-import-data to cross-https origin and keep-origin redirection from https context.: securitypolicyviolation]
|
||||
expected:
|
||||
if (os == "android") and swgl: [FAIL, PASS]
|
||||
if (os == "android") and not swgl: [PASS, FAIL]
|
||||
if (os == "android") and debug: [PASS, FAIL]
|
||||
if (os == "android") and not debug: [PASS, FAIL]
|
||||
|
||||
[Content Security Policy: Expects blocked for worklet-audio-import-data to cross-https origin and no-redirect redirection from https context.: securitypolicyviolation]
|
||||
expected:
|
||||
|
@ -1,5 +1,6 @@
|
||||
[worklet-audio-import-data.https.html]
|
||||
[Content Security Policy: Expects blocked for worklet-audio-import-data to cross-https origin and keep-origin redirection from https context.: securitypolicyviolation]
|
||||
expected:
|
||||
if (os == "android") and debug and swgl: [PASS, FAIL]
|
||||
if (os == "android") and debug and not swgl: [PASS, FAIL]
|
||||
if (os == "android") and not debug: [PASS, FAIL]
|
||||
if (os == "android") and debug: [PASS, FAIL]
|
||||
|
@ -5,15 +5,17 @@
|
||||
[OK, TIMEOUT]
|
||||
[History navigation in iframe: "about:blank" document is navigated back from history same-origin.]
|
||||
expected:
|
||||
if (os == "win") and (processor == "x86_64"): PASS
|
||||
if (os == "win") and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "win") and (processor == "x86_64"): PASS
|
||||
if os == "android": PASS
|
||||
if os == "mac": [PASS, TIMEOUT]
|
||||
[PASS, FAIL, TIMEOUT]
|
||||
|
||||
[History navigation in iframe: "about:blank" document is navigated back from history cross-origin.]
|
||||
expected:
|
||||
if (os == "linux") and fission: [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and debug: [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if os == "mac": [PASS, TIMEOUT, NOTRUN]
|
||||
|
||||
@ -31,8 +33,8 @@
|
||||
|
||||
[History navigation in iframe: data URL document is navigated back from history same-origin.]
|
||||
expected:
|
||||
if os == "android": PASS
|
||||
if os == "win": PASS
|
||||
if os == "android": PASS
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[History navigation in iframe: data URL document is navigated back from history cross-origin.]
|
||||
@ -49,6 +51,6 @@
|
||||
|
||||
[History navigation in iframe: srcdoc iframe is navigated back from history cross-origin.]
|
||||
expected:
|
||||
if os == "android": PASS
|
||||
if os == "win": PASS
|
||||
if os == "android": PASS
|
||||
[PASS, NOTRUN]
|
||||
|
@ -1,16 +1,16 @@
|
||||
[history.sub.html]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [OK, TIMEOUT]
|
||||
if (os == "mac") and debug: [OK, TIMEOUT]
|
||||
if (os == "mac") and not debug: [OK, TIMEOUT]
|
||||
[History navigation: "about:blank" document is navigated back from history same-origin.]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [FAIL, TIMEOUT]
|
||||
if (os == "mac") and debug: [FAIL, TIMEOUT]
|
||||
if (os == "mac") and not debug: [FAIL, TIMEOUT]
|
||||
if (os == "android") and not debug: [FAIL, TIMEOUT]
|
||||
FAIL
|
||||
|
||||
[History navigation: "about:blank" document is navigated back from history cross-origin.]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [FAIL, TIMEOUT]
|
||||
if (os == "mac") and debug: [FAIL, TIMEOUT]
|
||||
if (os == "mac") and not debug: [FAIL, TIMEOUT]
|
||||
FAIL
|
||||
|
@ -1,16 +1,8 @@
|
||||
[iframe-all-local-schemes-inherit-self.sub.html]
|
||||
expected:
|
||||
if (os == "linux") and fission and not swgl and debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and not fission and not swgl: [TIMEOUT, OK]
|
||||
if (os == "android") and not swgl and debug: [TIMEOUT, OK]
|
||||
if (os == "android") and swgl: [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: [TIMEOUT, OK]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
[<iframe>'s about:blank inherits policy.]
|
||||
expected:
|
||||
if (os == "linux") and fission and not swgl and debug: [TIMEOUT, PASS]
|
||||
if (os == "android") and not swgl and debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and not fission and not swgl: [TIMEOUT, PASS]
|
||||
if (os == "android") and swgl: [TIMEOUT, PASS]
|
||||
if (os == "win") and not debug: [TIMEOUT, PASS]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
|
@ -1,5 +1,6 @@
|
||||
[href-location-blocked.sub.html]
|
||||
[Violation report status OK.]
|
||||
expected:
|
||||
if (os == "android") and swgl: [FAIL, PASS]
|
||||
if (os == "android") and not swgl: [PASS, FAIL]
|
||||
if (os == "android") and not swgl and debug: [PASS, FAIL]
|
||||
if (os == "android") and not swgl and not debug: [PASS, FAIL]
|
||||
if (os == "android") and swgl: [PASS, FAIL]
|
||||
|
@ -1,3 +0,0 @@
|
||||
[webrtc-allowed-default-src-none.html]
|
||||
expected:
|
||||
if (processor == "x86") and (os == "linux"): CRASH
|
@ -1,3 +0,0 @@
|
||||
[webrtc-allowed-explicit.html]
|
||||
expected:
|
||||
if (processor == "x86") and (os == "linux"): CRASH
|
@ -1,3 +0,0 @@
|
||||
[webrtc-allowed-nopolicy.html]
|
||||
expected:
|
||||
if (processor == "x86") and (os == "linux"): CRASH
|
@ -1,5 +1,3 @@
|
||||
[webrtc-blocked-explicit.html]
|
||||
expected:
|
||||
if (processor == "x86") and (os == "linux"): CRASH
|
||||
[webrtc blocked with an explicit webrtc blocked policy]
|
||||
expected: FAIL
|
||||
|
@ -1,5 +1,3 @@
|
||||
[webrtc-blocked-unknown.html]
|
||||
expected:
|
||||
if (processor == "x86") and (os == "linux"): CRASH
|
||||
[webrtc blocked with an unrecognized explicit webrtc policy]
|
||||
expected: FAIL
|
||||
|
@ -1,5 +1,5 @@
|
||||
[relpos-percentage-top-in-scrollable.html]
|
||||
[Top percentage resolved correctly for overflow contribution]
|
||||
expected:
|
||||
if (os == "android") and not debug: [PASS, FAIL]
|
||||
if (os == "android") and debug: [FAIL, PASS]
|
||||
if (os == "android") and not debug: [PASS, FAIL]
|
||||
|
@ -0,0 +1 @@
|
||||
lsan-allowed: [Alloc, MakeUnique, Realloc, XPCNativeInterface::NewInstance, XPCNativeSet::NewInstance, XPCNativeSet::NewInstanceMutate, XPCWrappedNative::GetNewOrUsed, XPCWrappedNativeProto::GetNewOrUsed, mozilla::extensions::AtomSet::Get, mozilla::extensions::MatchPattern::Constructor, mozilla::extensions::MatchPattern::Init]
|
@ -1,2 +0,0 @@
|
||||
[gradient-eval-001.tentative.html]
|
||||
expected: FAIL
|
@ -0,0 +1,2 @@
|
||||
[gradient-eval-004.html]
|
||||
expected: FAIL
|
@ -1,14 +1,12 @@
|
||||
[keyboard.html]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [OK, PASS, TIMEOUT]
|
||||
if (os == "win") and debug and (processor == "x86"): [TIMEOUT, OK, PASS]
|
||||
if (os == "win") and debug and not swgl: [TIMEOUT, OK, PASS]
|
||||
if (os == "linux") and not debug: [TIMEOUT, OK, PASS]
|
||||
[TIMEOUT, PASS]
|
||||
[If there is no valid snap offset on the arrow key's direction other than the current offset, and the scroll-snap-type is proximity, go to the original intended offset]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and (processor == "x86"): [NOTRUN, TIMEOUT, FAIL]
|
||||
if (os == "mac") and not debug: [TIMEOUT, FAIL, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and swgl and not fission: [TIMEOUT, FAIL, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [TIMEOUT, NOTRUN, FAIL]
|
||||
[NOTRUN, FAIL, TIMEOUT]
|
||||
|
||||
[Snaps to top-right after pressing ArrowRight]
|
||||
@ -18,25 +16,26 @@
|
||||
|
||||
[Snaps to bottom-left after pressing ArrowDown]
|
||||
expected:
|
||||
if (os == "linux") and not swgl and fission and not debug and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and fission and not debug and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and not fission and debug: [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and not fission and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and fission and not debug and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and fission and debug: [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and not fission and debug: [FAIL, PASS]
|
||||
if (os == "linux") and not swgl and not fission and not debug: [FAIL, PASS]
|
||||
if (os == "android") and not swgl: FAIL
|
||||
|
||||
[If the original intended offset is valid as making a snap area cover the snapport, but there's a defined snap offset in between, use the defined snap offset.]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [PASS, TIMEOUT]
|
||||
if (os == "mac") and not debug: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and swgl and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86"): [PASS, TIMEOUT]
|
||||
[TIMEOUT, PASS]
|
||||
|
||||
[If there is no valid snap offset on the arrow key's direction other than the current offset, and the scroll-snap-type is mandatory, stay at the current offset.]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [PASS, NOTRUN]
|
||||
if (os == "mac") and not debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and swgl and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [PASS, NOTRUN]
|
||||
[NOTRUN, PASS]
|
||||
|
||||
[Snaps to top-left after pressing ArrowUp]
|
||||
expected:
|
||||
if (os == "linux") and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and not fission: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission: [PASS, FAIL]
|
||||
|
@ -1,12 +1,13 @@
|
||||
[CSSTransition-effect.tentative.html]
|
||||
[After setting a transition's effect to null, a new transition can be started]
|
||||
expected:
|
||||
if (os == "linux") and swgl and fission: [PASS, FAIL]
|
||||
if os == "android": FAIL
|
||||
if os == "win": FAIL
|
||||
[FAIL, PASS]
|
||||
|
||||
[After setting a transition's effect to null, it should be possible to interrupt that transition]
|
||||
expected:
|
||||
if (processor == "x86_64") and (os == "linux") and fission: [PASS, FAIL]
|
||||
if (processor == "x86_64") and (os == "android") and debug: [PASS, FAIL]
|
||||
if (processor == "x86_64") and (os == "linux") and fission: [PASS, FAIL]
|
||||
if processor == "x86": [PASS, FAIL]
|
||||
|
@ -1,12 +1,14 @@
|
||||
[background-change-during-smooth-scroll.html]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug: [OK, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86"): [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: [OK, TIMEOUT]
|
||||
if (os == "mac") and not debug: [OK, TIMEOUT]
|
||||
[background change during smooth scroll]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, NOTRUN]
|
||||
if (os == "linux") and debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "mac") and not debug: [PASS, NOTRUN]
|
||||
|
@ -1,8 +1,8 @@
|
||||
[scroll-behavior-main-frame-root.html]
|
||||
[Main frame with auto scroll-behavior ; scroll() with smooth behavior]
|
||||
expected:
|
||||
if (os == "win") and not swgl and not debug and (processor == "x86_64"): [FAIL, PASS]
|
||||
if (os == "mac") and debug: [FAIL, PASS]
|
||||
if (os == "mac") and not debug: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
||||
[Main frame with auto scroll-behavior ; scrollBy() with smooth behavior]
|
||||
|
@ -9,11 +9,13 @@
|
||||
|
||||
[Main frame with auto scroll-behavior ; scroll() with smooth behavior]
|
||||
expected:
|
||||
if fission and (os == "win") and (processor == "x86_64") and debug and swgl: [FAIL, PASS]
|
||||
if fission and (os == "win") and (processor == "x86_64") and not debug: [FAIL, PASS]
|
||||
if fission and (os == "win") and not debug and (processor == "x86_64"): [FAIL, PASS]
|
||||
if fission and (os == "win") and not debug and (processor == "x86"): [PASS, FAIL]
|
||||
if fission and (os == "linux") and (processor == "x86"): [PASS, FAIL]
|
||||
if fission and (os == "linux") and (processor == "x86_64"): [PASS, FAIL]
|
||||
if fission and (os == "win") and debug: [PASS, FAIL]
|
||||
if fission and (os == "mac") and debug: [FAIL, PASS]
|
||||
if not fission: PASS
|
||||
[PASS, FAIL]
|
||||
if fission and (os == "mac") and not debug: [FAIL, PASS]
|
||||
|
||||
[Main frame with smooth scroll-behavior ; scrollBy() with default behavior]
|
||||
expected:
|
||||
|
@ -1,5 +1,5 @@
|
||||
[device-aspect-ratio-001.html]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [FAIL, PASS]
|
||||
if (os == "mac") and not debug: [PASS, FAIL]
|
||||
if (os == "mac") and debug: [PASS, FAIL]
|
||||
if os == "linux": FAIL
|
||||
|
@ -1,6 +1,6 @@
|
||||
[device-aspect-ratio-005.html]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [FAIL, PASS]
|
||||
if (os == "mac") and not debug: [PASS, FAIL]
|
||||
if (os == "mac") and debug: [PASS, FAIL]
|
||||
if os == "win": PASS
|
||||
FAIL
|
||||
|
@ -2,7 +2,6 @@
|
||||
[Autofocus should match :focus-visible]
|
||||
expected:
|
||||
if not debug and (os == "linux") and not fission: [PASS, FAIL]
|
||||
if not debug and (os == "win") and (processor == "x86"): [FAIL, PASS]
|
||||
if not debug and (os == "win") and (processor == "x86_64"): [PASS, FAIL]
|
||||
if not debug and (os == "mac"): [PASS, FAIL]
|
||||
if not debug and (os == "android"): [PASS, FAIL]
|
||||
if not debug and (os == "mac"): [PASS, FAIL]
|
||||
if not debug and (os == "win"): [PASS, FAIL]
|
||||
|
@ -1,15 +1,15 @@
|
||||
[overscroll-deltas.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the document gets overscroll event with right deltaX/Y attributes.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[overscroll-event-fired-to-document.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the document gets overscroll event when no element scrolls after touch scrolling.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[overscroll-event-fired-to-element-with-overscroll-behavior.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the last element in the cut scroll chain gets overscroll event when no element scrolls by touch.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[overscroll-event-fired-to-window.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the window gets overscroll event when no element scrollsafter touch scrolling.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,25 +1,25 @@
|
||||
[scrollend-event-fired-after-snap.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if os == "win": TIMEOUT
|
||||
[Tests that scrollend is fired after scroll snap animation completion.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
||||
[Tests that scrollend is fired after fling snap animation completion.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [NOTRUN, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): NOTRUN
|
||||
if (os == "mac") and not debug: NOTRUN
|
||||
if (os == "win") and debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, FAIL]
|
||||
if (os == "win") and not debug: NOTRUN
|
||||
if (os == "win") and debug: TIMEOUT
|
||||
if (os == "mac") and not debug: NOTRUN
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[scrollend-event-fired-to-document.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
[Tests that the document gets scrollend event when no element scrolls by touch.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[scrollend-event-fired-to-element-with-overscroll-behavior.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the last element in the cut scroll chain gets scrollend event when no element scrolls by touch.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,15 +1,15 @@
|
||||
[scrollend-event-fired-to-window.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Tests that the window gets scrollend event when no element scrolls after touch scrolling.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): TIMEOUT
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
[Tests that the target_div gets scrollend event when click scrollbar on target.]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [NOTRUN, FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, FAIL, TIMEOUT]
|
||||
if (os == "linux") and debug: [FAIL, TIMEOUT, NOTRUN]
|
||||
@ -22,15 +22,17 @@
|
||||
|
||||
[Tests that the target_div gets scrollend event when drag the thumb of target.]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, TIMEOUT]
|
||||
if os == "mac": [NOTRUN, FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, TIMEOUT]
|
||||
if os == "win": [NOTRUN, TIMEOUT]
|
||||
if os == "mac": [NOTRUN, FAIL, TIMEOUT]
|
||||
if os == "android": [FAIL, TIMEOUT, NOTRUN]
|
||||
[TIMEOUT, NOTRUN]
|
||||
|
||||
[Tests that the target_div gets scrollend event when dragging scroll on target.]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if os == "win": [TIMEOUT, FAIL]
|
||||
if os == "mac": [TIMEOUT, FAIL]
|
||||
[FAIL, TIMEOUT]
|
||||
|
@ -1,17 +1,17 @@
|
||||
[scrollend-event-not-fired-after-removing-scroller.tentative.html]
|
||||
expected:
|
||||
if (os == "win") and ccov: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
[scrollend is received after removing descendant div]
|
||||
expected:
|
||||
if (os == "win") and ccov: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
FAIL
|
||||
|
@ -1,13 +1,13 @@
|
||||
[webkit-animation-iteration-event.html]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, OK]
|
||||
if (os == "win") and swgl: [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: OK
|
||||
if os == "android": OK
|
||||
[OK, TIMEOUT]
|
||||
[webkitAnimationIteration event listener is case sensitive]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [NOTRUN, PASS, FAIL, TIMEOUT]
|
||||
if (os == "win") and debug and (processor == "x86_64") and swgl: [PASS, NOTRUN, FAIL, TIMEOUT]
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and debug and (processor == "x86_64") and swgl: [NOTRUN, PASS, FAIL, TIMEOUT]
|
||||
if (os == "linux") and not debug and not fission: [PASS, FAIL, NOTRUN]
|
||||
if (os == "linux") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "win") and debug and (processor == "x86"): [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
@ -20,57 +20,47 @@
|
||||
|
||||
[webkitAnimationIteration event listener should trigger for an animation]
|
||||
expected:
|
||||
if debug and fission and (os == "win") and (processor == "x86_64") and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if debug and fission and (os == "win") and (processor == "x86_64") and swgl: [PASS, NOTRUN, TIMEOUT]
|
||||
if debug and fission and (os == "win") and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (os == "mac"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (os == "linux"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and swgl and (os == "win"): [TIMEOUT, PASS, NOTRUN]
|
||||
if debug and fission and swgl and (os == "linux"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and not swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[webkitAnimationIteration event listener should not trigger if an unprefixed listener also exists]
|
||||
expected:
|
||||
if (os == "win") and not swgl and debug and (processor == "x86_64"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "mac") and not debug: PASS
|
||||
if (os == "mac") and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and swgl: [PASS, NOTRUN, TIMEOUT]
|
||||
if os == "android": PASS
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[onwebkitanimationiteration event handler should not trigger if an unprefixed event handler also exists]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, PASS, NOTRUN]
|
||||
[PASS, TIMEOUT, NOTRUN]
|
||||
expected: [PASS, TIMEOUT, NOTRUN]
|
||||
|
||||
[event types for prefixed and unprefixed animationiteration event handlers should be named appropriately]
|
||||
expected:
|
||||
if debug and fission and (processor == "x86_64") and (os == "win") and swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (processor == "x86_64") and (os == "win") and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if debug and fission and (processor == "x86_64") and (os == "linux"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (processor == "x86_64") and (os == "mac"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (processor == "x86_64"): [PASS, TIMEOUT, NOTRUN]
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[event types for prefixed and unprefixed animationiteration event listeners should be named appropriately]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [NOTRUN, PASS]
|
||||
if (os == "win") and debug and (processor == "x86_64") and swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "win") and debug and (processor == "x86_64") and swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN]
|
||||
if (os == "mac") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug: [PASS, NOTRUN]
|
||||
if (os == "mac") and not debug: PASS
|
||||
if (os == "win") and not debug: PASS
|
||||
if os == "android": PASS
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[webkitAnimationIteration event listener should not trigger if an unprefixed event handler also exists]
|
||||
expected:
|
||||
if debug and (os == "win") and (processor == "x86_64") and swgl: [PASS, NOTRUN, TIMEOUT]
|
||||
if debug and (os == "win") and (processor == "x86_64") and not swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
if debug and (os == "linux") and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and not swgl and debug and (processor == "x86_64"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and debug and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "win") and swgl: [NOTRUN, PASS, TIMEOUT]
|
||||
[PASS, NOTRUN]
|
||||
|
||||
[onwebkitanimationiteration event handler should not trigger if an unprefixed listener also exists]
|
||||
expected:
|
||||
if debug and fission and (processor == "x86_64") and (os == "win") and swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (processor == "x86_64") and (os == "win") and not swgl: [NOTRUN, PASS]
|
||||
if debug and fission and (processor == "x86_64") and (os == "mac"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (processor == "x86_64") and (os == "linux"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (os == "win") and swgl: [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (os == "linux"): [PASS, TIMEOUT, NOTRUN]
|
||||
if debug and fission and (os == "mac"): [PASS, TIMEOUT, NOTRUN]
|
||||
[PASS, NOTRUN]
|
||||
|
@ -1,18 +1,16 @@
|
||||
[interactionid-press-key-no-effect.html]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission: TIMEOUT
|
||||
if (os == "linux") and (processor == "x86_64") and debug and fission: [TIMEOUT, OK]
|
||||
if (os == "mac") and debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [TIMEOUT, OK]
|
||||
if (os == "linux") and not debug and not fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and debug and fission: [TIMEOUT, OK]
|
||||
if (os == "linux") and debug and not fission: TIMEOUT
|
||||
if (os == "win") and not debug: OK
|
||||
[OK, TIMEOUT]
|
||||
[Event Timing: compare event timing interactionId for key press with no effect.]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and (processor == "x86_64") and debug and fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission: TIMEOUT
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [TIMEOUT, FAIL]
|
||||
if (os == "linux") and debug and fission: [TIMEOUT, FAIL]
|
||||
if (os == "linux") and debug and not fission: TIMEOUT
|
||||
if (os == "linux") and not debug and not fission: [TIMEOUT, FAIL]
|
||||
if (os == "win") and not debug: FAIL
|
||||
if (os == "mac") and debug: [TIMEOUT, FAIL]
|
||||
[FAIL, TIMEOUT]
|
||||
|
@ -1,8 +1,10 @@
|
||||
[interactionid-tap.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [OK, TIMEOUT]
|
||||
if os == "android": OK
|
||||
[TIMEOUT, OK]
|
||||
[Event Timing: compare event timing interactionId for tap.]
|
||||
expected:
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [FAIL, TIMEOUT]
|
||||
if os == "android": FAIL
|
||||
[TIMEOUT, FAIL]
|
||||
|
@ -1,16 +1,16 @@
|
||||
[response-cancel-stream.any.sharedworker.html]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [OK, ERROR, TIMEOUT]
|
||||
if (os == "mac") and debug: [ERROR, OK, TIMEOUT]
|
||||
if os == "mac": [OK, ERROR, TIMEOUT]
|
||||
[Cancelling a closed Response stream]
|
||||
expected:
|
||||
if os == "mac": [PASS, FAIL, TIMEOUT]
|
||||
if (os == "mac") and not debug: [PASS, FAIL, TIMEOUT]
|
||||
if (os == "mac") and debug: [PASS, FAIL, TIMEOUT]
|
||||
|
||||
|
||||
[response-cancel-stream.any.html]
|
||||
expected:
|
||||
if os == "win": [OK, ERROR]
|
||||
if os == "mac": [OK, ERROR, TIMEOUT]
|
||||
if os == "win": [OK, ERROR]
|
||||
[Cancelling a closed Response stream]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [PASS, FAIL, TIMEOUT]
|
||||
|
@ -1,6 +1,5 @@
|
||||
[response-clone-iframe.window.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and (processor == "x86"): [OK, ERROR]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [OK, ERROR]
|
||||
if (os == "win") and debug: [OK, ERROR]
|
||||
if os == "mac": [OK, ERROR]
|
||||
if (os == "mac") and debug: [ERROR, OK]
|
||||
if (os == "mac") and not debug: [OK, ERROR]
|
||||
if os == "win": [OK, ERROR]
|
||||
|
@ -1,12 +1,13 @@
|
||||
[304-update.any.html]
|
||||
[HTTP cache updates stored headers from a Last-Modified 304]
|
||||
expected: [PASS, FAIL]
|
||||
expected:
|
||||
if (os == "android") and not swgl and debug: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
||||
|
||||
[304-update.any.worker.html]
|
||||
[HTTP cache updates stored headers from a Last-Modified 304]
|
||||
expected:
|
||||
if (os == "linux") and debug and not fission and not swgl: [FAIL, PASS]
|
||||
if (os == "win") and debug: PASS
|
||||
if os == "mac": PASS
|
||||
[PASS, FAIL]
|
||||
@ -16,7 +17,9 @@
|
||||
expected:
|
||||
if processor == "x86": [OK, TIMEOUT]
|
||||
[HTTP cache updates stored headers from a Last-Modified 304]
|
||||
expected: [PASS, FAIL]
|
||||
expected:
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not swgl and debug: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
||||
[Content-* header]
|
||||
expected:
|
||||
@ -26,9 +29,6 @@
|
||||
[304-update.any.sharedworker.html]
|
||||
[HTTP cache updates stored headers from a Last-Modified 304]
|
||||
expected:
|
||||
if fission and not swgl and (os == "linux") and not debug and (processor == "x86"): PASS
|
||||
if not fission and swgl and (os == "linux"): [FAIL, PASS]
|
||||
if fission and swgl and (os == "linux"): [FAIL, PASS]
|
||||
if fission and not swgl and (os == "mac"): PASS
|
||||
if fission and not swgl and (os == "win"): PASS
|
||||
if (os == "win") and not swgl: PASS
|
||||
if os == "mac": PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -1,36 +1,36 @@
|
||||
[audioworklet.https.sub.html]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and fission: [TIMEOUT, ERROR]
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission: [TIMEOUT, OK, ERROR]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug: [TIMEOUT, ERROR]
|
||||
if (os == "linux") and (processor == "x86"): [ERROR, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64"): [TIMEOUT, ERROR]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [ERROR, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: [TIMEOUT, ERROR]
|
||||
if (os == "linux") and debug and not fission: [TIMEOUT, OK, ERROR]
|
||||
[sec-fetch-site - Same-Origin -> Same-Site -> Same-Origin redirect]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86"): [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [PASS, TIMEOUT]
|
||||
if (os == "linux") and debug: [PASS, TIMEOUT]
|
||||
|
||||
[sec-fetch-site - Cross-Site -> Same Origin]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Cross-Site -> Same-Site]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Cross-Site -> Cross-Site]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Same-Origin -> Same Origin]
|
||||
expected:
|
||||
@ -41,25 +41,25 @@
|
||||
|
||||
[sec-fetch-site - Same-Origin -> Same-Site]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Same-Origin -> Cross-Site]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [NOTRUN, PASS]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Same-Site -> Same Origin]
|
||||
expected:
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and (processor == "x86_64") and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and (processor == "x86"): [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
|
||||
[sec-fetch-site - Same-Site -> Same-Site]
|
||||
expected:
|
||||
@ -71,20 +71,20 @@
|
||||
|
||||
[sec-fetch-site - Same-Site -> Cross-Site]
|
||||
expected:
|
||||
if (os == "linux") and debug and not fission: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: NOTRUN
|
||||
if (os == "linux") and debug and not fission: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug: NOTRUN
|
||||
|
||||
[sec-fetch-mode]
|
||||
expected:
|
||||
if (os == "linux") and debug and fission: NOTRUN
|
||||
if (os == "linux") and debug and not fission: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: NOTRUN
|
||||
if (os == "linux") and not debug: NOTRUN
|
||||
|
||||
[sec-fetch-dest]
|
||||
expected:
|
||||
if (os == "linux") and debug and fission: NOTRUN
|
||||
if (os == "linux") and debug and not fission: [NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and debug and fission: NOTRUN
|
||||
if (os == "linux") and not debug: NOTRUN
|
||||
|
||||
[sec-fetch-user]
|
||||
|
@ -1,9 +1,10 @@
|
||||
[window-open.https.sub.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and (processor == "x86"): [ERROR, OK]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and debug and not fission: [ERROR, OK]
|
||||
if (os == "win") and not debug and (processor == "x86_64"): [ERROR, OK]
|
||||
if (os == "win") and debug and (processor == "x86"): [ERROR, OK]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [ERROR, OK]
|
||||
if (os == "mac") and not debug: [ERROR, OK]
|
||||
if (os == "mac") and debug: [ERROR, OK]
|
||||
if (os == "linux") and swgl: [ERROR, OK]
|
||||
[OK, ERROR]
|
||||
[Cross-site window, forced, reloaded]
|
||||
expected: [PASS, FAIL]
|
||||
|
@ -23,6 +23,5 @@
|
||||
|
||||
[update public to public: success.]
|
||||
expected:
|
||||
if (processor == "x86_64") and swgl and (os == "android"): [FAIL, PASS, NOTRUN]
|
||||
if (processor == "x86") and (os == "linux"): [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and debug and not fission and not swgl: [FAIL, PASS, NOTRUN]
|
||||
[PASS, FAIL, NOTRUN]
|
||||
|
@ -3,6 +3,5 @@
|
||||
if (os == "linux") or debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1642889
|
||||
[Check result]
|
||||
expected:
|
||||
if (os == "win") and (processor == "x86_64"): [FAIL, PASS]
|
||||
if os == "mac": [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[forced-colors-mode-43.html]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [FAIL, PASS]
|
||||
if (os == "mac") and not debug: [FAIL, PASS]
|
||||
if (os == "win") and not debug and (processor == "x86"): [FAIL, PASS]
|
||||
if os == "mac": [FAIL, PASS]
|
||||
if os == "android": PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -1,4 +1,4 @@
|
||||
[forced-colors-mode-45.html]
|
||||
expected:
|
||||
if (os == "mac") and debug: [FAIL, PASS]
|
||||
if (os == "linux") and fission and debug and swgl: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
@ -23,6 +23,15 @@
|
||||
[isSameEntry comparing a file to a directory returns false]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing two files pointing to the same path returns true]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing two directories pointing to the same path returns true]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing a file to a directory of the same path returns false]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[FileSystemBaseHandle-isSameEntry.https.any.html]
|
||||
[isSameEntry for identical directory handles returns true]
|
||||
@ -48,3 +57,12 @@
|
||||
|
||||
[isSameEntry comparing a file to a directory returns false]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing two files pointing to the same path returns true]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing two directories pointing to the same path returns true]
|
||||
expected: FAIL
|
||||
|
||||
[isSameEntry comparing a file to a directory of the same path returns false]
|
||||
expected: FAIL
|
||||
|
@ -1,21 +1,21 @@
|
||||
[broadcast-channel.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: OK
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "linux") and debug: [OK, TIMEOUT]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "linux") and (processor == "x86"): [TIMEOUT, OK]
|
||||
[Eligibility (BroadcastChannel closed in the pagehide event)]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and (processor == "x86_64") and debug: [PASS, TIMEOUT]
|
||||
if (os == "mac") and not debug: [TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "linux") and debug: [PASS, TIMEOUT]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: [TIMEOUT, NOTRUN]
|
||||
|
||||
[Eligibility (BroadcastChannel)]
|
||||
expected:
|
||||
|
@ -1,11 +1,11 @@
|
||||
[load-pageshow-events-window-open.html]
|
||||
[load event does not fire on window.open('about:blank')]
|
||||
expected:
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and not fission and not debug: [FAIL, PASS]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and not fission and debug: [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and fission and debug: [FAIL, PASS]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and fission and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and not swgl and (processor == "x86"): [FAIL, PASS]
|
||||
if (os == "linux") and swgl: [FAIL, PASS]
|
||||
if (os == "linux") and not fission and debug and not swgl: [PASS, FAIL]
|
||||
if (os == "linux") and not fission and debug and swgl: [PASS, FAIL]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [FAIL, PASS]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "linux") and not fission and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and fission and debug: [FAIL, PASS]
|
||||
if (os == "win") and swgl: [FAIL, PASS]
|
||||
FAIL
|
||||
|
@ -2,7 +2,6 @@
|
||||
[cross-document navigations are stopped by same-document back()]
|
||||
expected:
|
||||
if (os == "linux") and debug and not fission and not swgl: [PASS, FAIL]
|
||||
if (os == "linux") and debug and not fission and swgl: [PASS, FAIL]
|
||||
if (os == "mac") and not debug: FAIL
|
||||
if (os == "win") and not debug: FAIL
|
||||
[FAIL, PASS]
|
||||
|
@ -1,15 +1,18 @@
|
||||
[004.html]
|
||||
[history position should be calculated when executing, not when calling the .go command]
|
||||
expected:
|
||||
if (os == "linux") and not debug and fission: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "win") and debug: [PASS, FAIL]
|
||||
|
||||
[browser needs to support hashchange events for this testcase]
|
||||
expected:
|
||||
if (os == "linux") and not debug and fission: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "win") and debug: [PASS, FAIL]
|
||||
|
||||
[queued .go commands should all be executed when the queue is processed]
|
||||
expected:
|
||||
if (os == "linux") and not debug and fission: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "win") and debug: [PASS, FAIL]
|
||||
|
@ -4,8 +4,8 @@
|
||||
if fission and (os == "linux"): https://bugzilla.mozilla.org/show_bug.cgi?id=1668853
|
||||
if fission and (os == "win") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1668853
|
||||
expected:
|
||||
if fission and not debug and (os == "linux") and (processor == "x86"): [PASS, FAIL]
|
||||
if fission and not debug and (os == "linux") and (processor == "x86_64"): [PASS, FAIL]
|
||||
if fission and not debug and (os == "linux") and (processor == "x86"): [PASS, FAIL]
|
||||
if fission and debug: [PASS, FAIL]
|
||||
|
||||
[window.onpopstate should register a listener for the popstate event]
|
||||
|
@ -9,8 +9,7 @@
|
||||
|
||||
["personalbar=no" should set BarProp visibility to false]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not fission and debug: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not fission: [PASS, TIMEOUT]
|
||||
|
||||
["scrollbars=true" should set BarProp visibility to false]
|
||||
expected:
|
||||
|
@ -1,5 +1,5 @@
|
||||
[open-features-tokenization-noreferrer.html]
|
||||
expected:
|
||||
if (os == "android") and debug and not swgl: [CRASH, OK, TIMEOUT]
|
||||
if (os == "android") and debug and swgl: [TIMEOUT, OK, CRASH]
|
||||
if (os == "android") and not debug: [CRASH, TIMEOUT, OK]
|
||||
if (os == "android") and not swgl and debug: [TIMEOUT, OK, CRASH]
|
||||
if (os == "android") and not swgl and not debug: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and swgl: [TIMEOUT, OK, CRASH]
|
||||
|
@ -1,8 +1,8 @@
|
||||
[open-features-tokenization-screenx-screeny.html]
|
||||
expected:
|
||||
if (os == "android") and debug and not swgl: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and debug and swgl: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and debug and not swgl: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and not debug: [OK, CRASH, TIMEOUT]
|
||||
["screenx=141" should set left position of opened window]
|
||||
expected:
|
||||
if os == "android": FAIL
|
||||
|
@ -1,13 +1,13 @@
|
||||
[window-open-popup-behavior.html]
|
||||
expected:
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [OK, TIMEOUT]
|
||||
if (os == "linux") and debug: [OK, TIMEOUT]
|
||||
[location=yes,toolbar=yes,status=yes (expect popup)]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
|
||||
[location=yes,toolbar=yes,status=yes,noopener (expect tab)]
|
||||
@ -64,22 +64,26 @@
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,popup (expect popup)]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,noopener,noreferrer,popup (expect tab)]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [FAIL, NOTRUN, PASS, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [FAIL, PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and debug: [FAIL, PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission: [FAIL, PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if os == "android": PASS
|
||||
FAIL
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes (expect tab)]
|
||||
expected:
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and fission and debug: [PASS, TIMEOUT, NOTRUN]
|
||||
@ -93,17 +97,16 @@
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,noreferrer (expect tab)]
|
||||
expected:
|
||||
if (os == "linux") and fission and not debug and (processor == "x86"): [PASS, NOTRUN]
|
||||
if (os == "linux") and fission and not debug and (processor == "x86_64"): [PASS, NOTRUN]
|
||||
if (os == "linux") and fission and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not fission and debug: [PASS, NOTRUN]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not debug and not fission: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,popup (expect popup)]
|
||||
expected:
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and not fission: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, NOTRUN, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and debug: [PASS, NOTRUN]
|
||||
|
||||
[location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,noopener,noreferrer,popup (expect tab)]
|
||||
@ -187,8 +190,8 @@
|
||||
|
||||
[location=yes,menubar=yes,scrollbars=yes,noopener,noreferrer,popup (expect tab)]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and debug: [PASS, FAIL, TIMEOUT, NOTRUN]
|
||||
if (os == "linux") and not fission and not debug: [PASS, TIMEOUT, FAIL, NOTRUN]
|
||||
if (os == "linux") and fission: [FAIL, PASS, TIMEOUT, NOTRUN]
|
||||
if os == "android": PASS
|
||||
FAIL
|
||||
|
@ -1,7 +1,5 @@
|
||||
[2d.text.draw.fontface.notinpage.html]
|
||||
[@font-face fonts should work even if they are not used in the page]
|
||||
expected:
|
||||
if (os == "linux") and not fission and debug and swgl: [FAIL, PASS]
|
||||
if (os == "linux") and not fission and debug and not swgl: [FAIL, PASS]
|
||||
if os == "android": [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
@ -1,12 +1,8 @@
|
||||
[imagebitmap-replication-exif-orientation.html]
|
||||
[ImageBitmap from file with EXIF rotation, loaded via <img> in DOM, imageOrientation = none]
|
||||
expected:
|
||||
if (os == "win") and not swgl and not debug and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [FAIL, PASS]
|
||||
if (os == "linux") and debug and swgl and fission: [FAIL, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "linux") and debug and not swgl: [PASS, FAIL]
|
||||
if (os == "mac") and debug: [PASS, FAIL]
|
||||
if (os == "win") and swgl: [FAIL, PASS]
|
||||
if (os == "android"): [PASS, FAIL]
|
||||
|
||||
if (os == "win") and not swgl and not debug and (processor == "x86_64"): PASS
|
||||
if (os == "win") and not swgl and debug: PASS
|
||||
if (os == "linux") and fission and swgl: [FAIL, PASS]
|
||||
if (os == "mac") and not debug: PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -3,7 +3,6 @@
|
||||
if (os == "mac") and (os_version == "10.15"): https://bugzilla.mozilla.org/show_bug.cgi?id=1753364
|
||||
if win10_2004 and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1753364
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission: [ERROR, OK]
|
||||
if (os == "linux") and (processor == "x86_64") and not debug and fission: [ERROR, OK]
|
||||
if (os == "linux") and fission and debug: [ERROR, OK]
|
||||
if (os == "win") and (processor == "x86_64"): OK
|
||||
[OK, ERROR]
|
||||
|
@ -3,7 +3,7 @@
|
||||
if (os == "mac") and (os_version == "10.15"): https://bugzilla.mozilla.org/show_bug.cgi?id=1753270
|
||||
if win10_2004: https://bugzilla.mozilla.org/show_bug.cgi?id=1753270
|
||||
expected:
|
||||
if (os == "linux") and debug and not fission and not swgl: [ERROR, OK]
|
||||
if (os == "linux") and debug and fission and swgl: [ERROR, OK]
|
||||
if (os == "linux") and debug and fission and not swgl: [ERROR, OK]
|
||||
if (os == "android") and not debug: OK
|
||||
[OK, ERROR]
|
||||
|
@ -3,5 +3,8 @@
|
||||
if (os == "mac") and (os_version == "10.15"): https://bugzilla.mozilla.org/show_bug.cgi?id=1753270
|
||||
if win10_2004: https://bugzilla.mozilla.org/show_bug.cgi?id=1753270
|
||||
expected:
|
||||
if (os == "linux") and not swgl and fission and not debug and (processor == "x86_64"): [ERROR, OK]
|
||||
if (os == "linux") and swgl and fission: [ERROR, OK]
|
||||
if (os == "linux") and swgl and not fission: [ERROR, OK]
|
||||
if (os == "android") and not debug: OK
|
||||
[OK, ERROR]
|
||||
|
@ -12,13 +12,17 @@
|
||||
if (os == "linux") and debug and fission and swgl: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [FAIL, PASS]
|
||||
if (os == "linux") and not debug and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "android") and not swgl: [PASS, FAIL]
|
||||
if (os == "android") and not swgl and debug: [PASS, FAIL]
|
||||
if (os == "android") and not swgl and not debug: [PASS, FAIL]
|
||||
|
||||
[Verify that drawImage uses the size of the frame as the intinsic size of a placeholder canvas.]
|
||||
expected:
|
||||
if (os == "linux") and debug and fission and swgl: [PASS, FAIL]
|
||||
if (os == "android") and not swgl: [PASS, FAIL]
|
||||
if (os == "linux") and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [PASS, FAIL]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86"): [PASS, FAIL]
|
||||
if (os == "android") and not swgl and debug: [PASS, FAIL]
|
||||
if (os == "android") and not swgl and not debug: [PASS, FAIL]
|
||||
if (os == "linux") and not debug and not fission: [PASS, FAIL]
|
||||
|
||||
[Verify that writing to the width and height attributes of an OffscreenCanvas works when there is a webgl context attached.]
|
||||
expected:
|
||||
|
@ -82,6 +82,8 @@
|
||||
[iframe-popup-same-origin-allow-popups-to-same-origin.https.html?5-6]
|
||||
|
||||
[iframe-popup-same-origin-allow-popups-to-same-origin.https.html?7-8]
|
||||
expected:
|
||||
if (os == "android") and not debug: [OK, TIMEOUT]
|
||||
|
||||
[iframe-popup-same-origin-allow-popups-to-same-origin.https.html?1-2]
|
||||
expected:
|
||||
|
@ -92,6 +92,8 @@
|
||||
|
||||
|
||||
[iframe-popup-same-origin-allow-popups-to-unsafe-none.https.html?5-6]
|
||||
expected:
|
||||
if (os == "android") and not debug: [OK, TIMEOUT]
|
||||
|
||||
[iframe-popup-same-origin-allow-popups-to-unsafe-none.https.html?7-8]
|
||||
|
||||
@ -105,5 +107,4 @@
|
||||
|
||||
[iframe-popup-same-origin-allow-popups-to-unsafe-none.https.html?9-last]
|
||||
expected:
|
||||
if (os == "android") and not swgl and debug: [OK, TIMEOUT]
|
||||
if (os == "android") and not swgl and not debug: [OK, TIMEOUT]
|
||||
if (os == "android") and not swgl: [OK, TIMEOUT]
|
||||
|
@ -96,7 +96,8 @@
|
||||
|
||||
[iframe-popup-same-origin-to-unsafe-none.https.html?3-4]
|
||||
expected:
|
||||
if (os == "android") and not swgl: [OK, TIMEOUT]
|
||||
if (os == "android") and not swgl and not debug: [OK, TIMEOUT]
|
||||
if (os == "android") and not swgl and debug: [OK, TIMEOUT]
|
||||
|
||||
[iframe-popup-same-origin-to-unsafe-none.https.html?5-6]
|
||||
expected:
|
||||
|
@ -1,10 +1,10 @@
|
||||
[popup-coop-by-sw.https.html?1-4]
|
||||
expected:
|
||||
if debug and (os == "win") and (processor == "x86_64"): [CRASH, TIMEOUT]
|
||||
if debug and (os == "win") and (processor == "x86"): [TIMEOUT, CRASH]
|
||||
if debug and (os == "android") and not swgl: [TIMEOUT, ERROR]
|
||||
if debug and (os == "linux") and fission: [CRASH, TIMEOUT]
|
||||
if debug and (os == "win") and (processor == "x86"): [TIMEOUT, CRASH]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [CRASH, TIMEOUT]
|
||||
if debug and (os == "linux") and not fission: [TIMEOUT, CRASH]
|
||||
if debug and (os == "linux") and fission: [CRASH, TIMEOUT]
|
||||
TIMEOUT
|
||||
[opener:basic, openee:basic, sw:basic]
|
||||
expected: TIMEOUT
|
||||
@ -21,10 +21,11 @@
|
||||
|
||||
[popup-coop-by-sw.https.html?5-last]
|
||||
expected:
|
||||
if debug and (os == "linux") and fission: [CRASH, TIMEOUT]
|
||||
if debug and (os == "linux") and not fission: [TIMEOUT, CRASH]
|
||||
if debug and (os == "linux") and not fission and not swgl: [TIMEOUT, CRASH]
|
||||
if debug and (os == "linux") and not fission and swgl: [TIMEOUT, CRASH]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [CRASH, TIMEOUT]
|
||||
if debug and (os == "win") and (processor == "x86"): [TIMEOUT, CRASH]
|
||||
if debug and (os == "linux") and fission: [CRASH, TIMEOUT]
|
||||
if debug and (os == "android") and not swgl: [TIMEOUT, ERROR]
|
||||
TIMEOUT
|
||||
[opener:coi, openee:basic, sw:basic]
|
||||
|
@ -34,8 +34,8 @@
|
||||
prefs: [network.cookie.cookieBehavior:4]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [OK, ERROR, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug: [OK, TIMEOUT]
|
||||
if (os == "linux") and fission and debug: [OK, ERROR, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug: [OK, TIMEOUT]
|
||||
if (os == "android") and debug: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
if os == "mac": [OK, TIMEOUT]
|
||||
@ -49,8 +49,8 @@
|
||||
expected:
|
||||
if (os == "linux") and fission and not debug: [OK, TIMEOUT]
|
||||
if (os == "linux") and fission and debug: [OK, ERROR, TIMEOUT]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and debug: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
[same-origin document opening popup redirect from https://not-web-platform.test:8443 to https://web-platform.test:8443 with redirectCache true and destCache true]
|
||||
expected:
|
||||
if (os == "linux") and fission: [PASS, TIMEOUT]
|
||||
@ -64,8 +64,8 @@
|
||||
prefs: [network.cookie.cookieBehavior:4]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [OK, ERROR, TIMEOUT]
|
||||
if (os == "linux") and fission and debug: [OK, ERROR, TIMEOUT]
|
||||
if (os == "linux") and fission and not debug: [OK, TIMEOUT]
|
||||
if (os == "linux") and fission and debug: [OK, ERROR, TIMEOUT]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and debug: [OK, ERROR, TIMEOUT]
|
||||
if os == "mac": [OK, TIMEOUT]
|
||||
@ -84,8 +84,8 @@
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [OK, ERROR, TIMEOUT]
|
||||
if (os == "linux") and swgl and not fission: [OK, ERROR, CRASH]
|
||||
if (os == "android") and debug: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if (os == "android") and not debug: [OK, TIMEOUT, CRASH]
|
||||
if (os == "android") and debug: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if os == "mac": [OK, TIMEOUT]
|
||||
[same-origin document opening popup redirect from https://www1.web-platform.test:8443 to https://not-web-platform.test:8443 with redirectCache false and destCache true]
|
||||
expected:
|
||||
|
@ -1,7 +1,9 @@
|
||||
[popup-same-origin-allow-popups-with-cross-origin.https.html]
|
||||
prefs: [network.cookie.cookieBehavior:4]
|
||||
expected:
|
||||
if not swgl and (os == "win") and debug and (processor == "x86_64"): [OK, ERROR, TIMEOUT, CRASH]
|
||||
if not swgl and (os == "android") and debug: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if swgl: [OK, ERROR, TIMEOUT, CRASH]
|
||||
if not swgl and debug and (os == "win") and (processor == "x86_64"): [OK, ERROR, TIMEOUT, CRASH]
|
||||
if not swgl and debug and (os == "android"): [OK, ERROR, TIMEOUT, CRASH]
|
||||
if swgl and (os == "android"): [TIMEOUT, OK, ERROR, CRASH]
|
||||
if swgl and (os == "linux"): [OK, ERROR, TIMEOUT, CRASH]
|
||||
if swgl and (os == "win"): [OK, ERROR, TIMEOUT, CRASH]
|
||||
[OK, TIMEOUT, CRASH]
|
||||
|
@ -1,14 +1,15 @@
|
||||
[resource-popup.https.html]
|
||||
expected:
|
||||
if debug and not swgl and (os == "win") and (processor == "x86_64"): [OK, ERROR, TIMEOUT]
|
||||
if debug and not swgl and (os == "android"): [OK, ERROR, TIMEOUT]
|
||||
if debug and swgl: [OK, ERROR, TIMEOUT]
|
||||
if debug and (os == "linux") and not swgl and not fission: [TIMEOUT, OK]
|
||||
if debug and (os == "linux") and swgl: [OK, ERROR, TIMEOUT]
|
||||
if debug and (os == "win") and (processor == "x86_64"): [OK, ERROR, TIMEOUT]
|
||||
if debug and (os == "android"): [OK, ERROR, TIMEOUT]
|
||||
[OK, TIMEOUT]
|
||||
[/common/dummy.xml - parent COOP: ""; child COOP: "same-origin"]
|
||||
expected:
|
||||
if (os == "linux") and swgl and not fission: [FAIL, PASS, TIMEOUT]
|
||||
if (os == "android") and not swgl and not debug: [FAIL, PASS, TIMEOUT]
|
||||
if (os == "android") and not swgl and debug: [FAIL, PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and fission and (processor == "x86_64"): [FAIL, PASS, TIMEOUT]
|
||||
if (os == "android") and debug: [FAIL, PASS, TIMEOUT]
|
||||
if (os == "android") and not debug: [FAIL, PASS, TIMEOUT]
|
||||
[PASS, FAIL, TIMEOUT]
|
||||
|
||||
[/images/red.png - parent COOP: ""; child COOP: "same-origin"]
|
||||
@ -17,10 +18,14 @@
|
||||
[PASS, FAIL, TIMEOUT]
|
||||
|
||||
[/media/2x2-green.mp4 - parent COOP: ""; child COOP: "same-origin"]
|
||||
expected: [PASS, TIMEOUT]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission and not swgl: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
|
||||
[/common/text-plain.txt - parent COOP: ""; child COOP: "same-origin"]
|
||||
expected: [PASS, FAIL, TIMEOUT]
|
||||
expected:
|
||||
if (os == "android") and not debug: [PASS, TIMEOUT, FAIL]
|
||||
[PASS, FAIL, TIMEOUT]
|
||||
|
||||
[/common/text-plain.txt - parent COOP: "same-origin"; child COOP: "same-origin"]
|
||||
expected:
|
||||
|
@ -0,0 +1,13 @@
|
||||
[iframe-popup-to-so.https.html?3-4]
|
||||
expected:
|
||||
if (os == "android") and not debug: [OK, TIMEOUT]
|
||||
|
||||
[iframe-popup-to-so.https.html?5-6]
|
||||
|
||||
[iframe-popup-to-so.https.html?9-last]
|
||||
|
||||
[iframe-popup-to-so.https.html?1-2]
|
||||
|
||||
[iframe-popup-to-so.https.html?7-8]
|
||||
expected:
|
||||
if (os == "android") and not debug: [OK, TIMEOUT]
|
@ -28,6 +28,8 @@
|
||||
|
||||
|
||||
[iframe-popup-to-un.https.html?3-4]
|
||||
expected:
|
||||
if (os == "android") and not debug: [OK, TIMEOUT]
|
||||
[COOP: restrict-properties to popup COOP: unsafe-none via an iframe, with cross origin iframe, same origin popup with window_open]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -45,9 +45,8 @@
|
||||
|
||||
[utf-16be.html?include=workers]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and fission and not swgl and debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and (processor == "x86_64") and not fission and not debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and (processor == "x86_64") and not fission and debug: [TIMEOUT, OK]
|
||||
if fission and (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, OK]
|
||||
if fission and (os == "mac") and not debug: [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
[SharedWorker() in a shared worker]
|
||||
expected: FAIL
|
||||
@ -59,9 +58,8 @@
|
||||
|
||||
[SharedWorker constructor]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and fission and not swgl and debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and (processor == "x86_64") and not fission and debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and (processor == "x86_64") and not fission and not debug: [TIMEOUT, PASS]
|
||||
if fission and (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, PASS]
|
||||
if fission and (os == "mac") and not debug: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
|
||||
[SharedWorker() in a dedicated worker]
|
||||
|
@ -43,9 +43,7 @@
|
||||
|
||||
[utf-16le.html?include=workers]
|
||||
expected:
|
||||
if (os == "linux") and not swgl and not fission and not debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and not swgl and fission and debug: [TIMEOUT, OK]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, OK]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and debug and not fission: [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
[SharedWorker() in a shared worker]
|
||||
expected: FAIL
|
||||
@ -57,9 +55,7 @@
|
||||
|
||||
[SharedWorker constructor]
|
||||
expected:
|
||||
if (os == "linux") and not swgl and not fission and not debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and not swgl and fission and debug: [TIMEOUT, PASS]
|
||||
if (os == "android") and debug and not swgl: [TIMEOUT, PASS]
|
||||
if (os == "linux") and not swgl and (processor == "x86_64") and debug and not fission: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
|
||||
[SharedWorker() in a dedicated worker]
|
||||
|
@ -32,9 +32,7 @@
|
||||
|
||||
|
||||
[utf-8.html?include=workers]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission and not swgl: [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
expected: [OK, TIMEOUT]
|
||||
[SharedWorker() in a shared worker]
|
||||
expected: FAIL
|
||||
|
||||
@ -44,9 +42,7 @@
|
||||
[FAIL, TIMEOUT]
|
||||
|
||||
[SharedWorker constructor]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and debug and not fission and not swgl: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
expected: [PASS, TIMEOUT]
|
||||
|
||||
[SharedWorker() in a dedicated worker]
|
||||
expected: FAIL
|
||||
|
@ -287,8 +287,7 @@
|
||||
|
||||
[windows-1251.html?include=workers]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and swgl and fission: [TIMEOUT, OK]
|
||||
if (os == "android") and not swgl and debug: [TIMEOUT, OK]
|
||||
if swgl and (os == "linux") and not fission: [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
[SharedWorker() in a shared worker]
|
||||
expected: FAIL
|
||||
@ -300,8 +299,7 @@
|
||||
|
||||
[SharedWorker constructor]
|
||||
expected:
|
||||
if (os == "linux") and (processor == "x86_64") and swgl and fission: [TIMEOUT, PASS]
|
||||
if (os == "android") and not swgl and debug: [TIMEOUT, PASS]
|
||||
if swgl and (os == "linux") and not fission: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
|
||||
[SharedWorker() in a dedicated worker]
|
||||
@ -338,8 +336,8 @@
|
||||
|
||||
[windows-1251.html?include=loading]
|
||||
expected:
|
||||
if (os == "linux") and not fission and not debug: [OK, ERROR, CRASH]
|
||||
if (os == "linux") and not fission and debug: [OK, ERROR]
|
||||
if (os == "linux") and not fission and not debug: [OK, ERROR, CRASH]
|
||||
[loading video <audio><source>]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -114,26 +114,18 @@
|
||||
[windows-1252.html?include=css]
|
||||
|
||||
[windows-1252.html?include=workers]
|
||||
expected:
|
||||
if debug and (os == "win") and (processor == "x86_64") and not swgl: [TIMEOUT, OK]
|
||||
if debug and (os == "android") and not swgl: [TIMEOUT, OK]
|
||||
if not debug and (os == "linux") and (processor == "x86"): [TIMEOUT, OK]
|
||||
[OK, TIMEOUT]
|
||||
expected: [OK, TIMEOUT]
|
||||
[SharedWorker() in a shared worker]
|
||||
expected: FAIL
|
||||
|
||||
[importScripts() in a shared worker]
|
||||
expected:
|
||||
if os == "android": FAIL
|
||||
if os == "mac": FAIL
|
||||
if os == "android": FAIL
|
||||
[FAIL, TIMEOUT]
|
||||
|
||||
[SharedWorker constructor]
|
||||
expected:
|
||||
if debug and (os == "win") and (processor == "x86_64") and not swgl: [TIMEOUT, PASS]
|
||||
if not debug and (os == "linux") and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if debug and (os == "android") and not swgl: [TIMEOUT, PASS]
|
||||
[PASS, TIMEOUT]
|
||||
expected: [PASS, TIMEOUT]
|
||||
|
||||
[SharedWorker() in a dedicated worker]
|
||||
expected: FAIL
|
||||
|
@ -1,14 +1,18 @@
|
||||
[document-has-system-focus.html]
|
||||
expected:
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not swgl and debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not swgl and not debug: [TIMEOUT, OK]
|
||||
if os == "android": OK
|
||||
if (os == "linux") and fission and not swgl and (processor == "x86_64") and debug: [TIMEOUT, OK]
|
||||
if (os == "linux") and fission and not swgl and (processor == "x86_64") and not debug: [TIMEOUT, OK]
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, OK]
|
||||
if (os == "win") and debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if os == "mac": [TIMEOUT, OK]
|
||||
if os == "android": OK
|
||||
[OK, TIMEOUT]
|
||||
[Top-level document receives blur/focus events and loses system focus during opening/closing of a popup]
|
||||
expected:
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not swgl and not debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and fission and (processor == "x86_64") and not swgl and debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and fission and not swgl and (processor == "x86_64") and not debug: [TIMEOUT, PASS]
|
||||
if (os == "linux") and fission and not swgl and (processor == "x86_64") and debug: [TIMEOUT, PASS]
|
||||
if (os == "win") and debug and (processor == "x86_64") and not swgl: [TIMEOUT, PASS]
|
||||
if (os == "win") and debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if os == "mac": [TIMEOUT, PASS]
|
||||
if os == "android": PASS
|
||||
[PASS, TIMEOUT]
|
||||
|
@ -2,7 +2,7 @@
|
||||
[Autofocus elements in iframed documents with empty fragments should work.]
|
||||
expected:
|
||||
if (os == "linux") and not fission and debug: PASS
|
||||
if (os == "android") and debug: PASS
|
||||
if (os == "linux") and fission: PASS
|
||||
if (os == "mac") and debug: PASS
|
||||
if (os == "android") and debug: PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -1,9 +1,8 @@
|
||||
[document-with-fragment-nonexistent.html]
|
||||
[Autofocus elements in iframed documents with non-existent fragments should work.]
|
||||
expected:
|
||||
if (os == "win") and debug and (processor == "x86_64") and swgl: [FAIL, PASS]
|
||||
if (os == "win") and debug and (processor == "x86"): [FAIL, PASS]
|
||||
if (os == "linux") and not fission and debug: PASS
|
||||
if (os == "win") and not debug and (processor == "x86"): [FAIL, PASS]
|
||||
if (os == "linux") and fission: PASS
|
||||
if (os == "android") and debug: PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -1,7 +1,7 @@
|
||||
[document-with-fragment-top.html]
|
||||
[Autofocus elements in iframed documents with "top" fragments should work.]
|
||||
expected:
|
||||
if debug and (os == "linux"): PASS
|
||||
if debug and (os == "android"): PASS
|
||||
if debug and (os == "mac"): PASS
|
||||
if debug and (os == "linux"): PASS
|
||||
[PASS, FAIL]
|
||||
|
@ -1,5 +1,3 @@
|
||||
[first-when-later.html]
|
||||
[The first autofocus in the document wins, even if elements are inserted later.]
|
||||
expected:
|
||||
if (os == "mac") and not debug: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
expected: [PASS, FAIL]
|
||||
|
@ -1,3 +1,5 @@
|
||||
[first.html]
|
||||
[The first autofocus element in the document should win.]
|
||||
expected: [PASS, FAIL]
|
||||
expected:
|
||||
if (os == "win") and not debug and (processor == "x86"): [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
@ -1,3 +1,5 @@
|
||||
[focusable-area-in-top-document.html]
|
||||
[If topDocument's focused area is not topDocument, autofocus is not processed.]
|
||||
expected: [PASS, FAIL]
|
||||
expected:
|
||||
if (os == "win") and swgl: [FAIL, PASS]
|
||||
[PASS, FAIL]
|
||||
|
@ -2,6 +2,7 @@
|
||||
[If the first autofocus element is not focusable, but becomes focusable before a frame, it should be focused.]
|
||||
expected:
|
||||
if debug and (os == "win") and swgl: PASS
|
||||
if not debug and (os == "win") and (processor == "x86"): [FAIL, PASS]
|
||||
if debug and (os == "linux"): PASS
|
||||
if debug and (os == "android"): PASS
|
||||
if debug and (os == "mac"): PASS
|
||||
|
@ -1,16 +1,16 @@
|
||||
[embedded-html.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: OK
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
[Page with <object type=text/html data=/resources/blank.html>]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
|
@ -9,8 +9,8 @@
|
||||
[Page with <object type=image/png data=/images/blue.png>]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
|
@ -4,25 +4,25 @@
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Page with <embed type=undefined src=/media/white.mp4>]
|
||||
expected:
|
||||
if (os == "android") and debug and not swgl: PRECONDITION_FAILED
|
||||
if (os == "android") and debug and swgl: [PRECONDITION_FAILED, PASS]
|
||||
if (os == "linux") and not fission and not debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "android") and debug and swgl: [PRECONDITION_FAILED, PASS]
|
||||
if (os == "android") and debug and not swgl: PRECONDITION_FAILED
|
||||
if (os == "mac") and not debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "mac") and debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "android") and not debug: [PRECONDITION_FAILED, PASS]
|
||||
if (os == "mac") and debug: [PRECONDITION_FAILED, PASS]
|
||||
if (os == "android") and not debug: [PASS, PRECONDITION_FAILED]
|
||||
|
||||
[Page with <object type=undefined data=/media/white.mp4>]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "android") and not swgl and debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "android") and not swgl and not debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "android") and debug and swgl: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "android") and debug and not swgl: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "android") and not debug: [PASS, PRECONDITION_FAILED]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "android") and swgl: [PASS, PRECONDITION_FAILED]
|
||||
|
@ -1,16 +1,16 @@
|
||||
[embedded-not-found.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: OK
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Page with <object type=image/png data=/404.png>]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
|
@ -1,16 +1,16 @@
|
||||
[embedded-type-only.html]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: OK
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [OK, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, OK]
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
[Page with <object type=text/html data=undefined>]
|
||||
expected:
|
||||
if (os == "win") and not debug and ccov: PASS
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and not fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86_64") and fission: [PASS, TIMEOUT]
|
||||
if (os == "linux") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
if (os == "win") and not debug: TIMEOUT
|
||||
if (os == "mac") and not debug: TIMEOUT
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user