diff --git a/components/net/fetch/methods.rs b/components/net/fetch/methods.rs index 7d64b57436d..2e99f5f3314 100644 --- a/components/net/fetch/methods.rs +++ b/components/net/fetch/methods.rs @@ -20,6 +20,7 @@ use log::warn; use mime::{self, Mime}; use net_traits::filemanager_thread::{FileTokenCheck, RelativePos}; use net_traits::http_status::HttpStatus; +use net_traits::policy_container::{PolicyContainer, RequestPolicyContainer}; use net_traits::request::{ is_cors_safelisted_method, is_cors_safelisted_request_header, BodyChunkRequest, BodyChunkResponse, CredentialsMode, Destination, Origin, RedirectMode, Referrer, Request, @@ -27,8 +28,8 @@ use net_traits::request::{ }; use net_traits::response::{Response, ResponseBody, ResponseType}; use net_traits::{ - FetchTaskTarget, NetworkError, ReferrerPolicy, ResourceAttribute, ResourceFetchTiming, - ResourceTimeValue, ResourceTimingType, + FetchTaskTarget, NetworkError, ResourceAttribute, ResourceFetchTiming, ResourceTimeValue, + ResourceTimingType, }; use rustls::Certificate; use serde::{Deserialize, Serialize}; @@ -114,52 +115,83 @@ pub async fn fetch(request: &mut Request, target: Target<'_>, context: &FetchCon fetch_with_cors_cache(request, &mut CorsCache::default(), target, context).await; } +/// Continuation of fetch from step 9. +/// +/// pub async fn fetch_with_cors_cache( request: &mut Request, cache: &mut CorsCache, target: Target<'_>, context: &FetchContext, ) { - // Step 1. + // Step 9: If request’s window is "client", then set request’s window to request’s client, if + // request’s client’s global object is a Window object; otherwise "no-window". if request.window == Window::Client { // TODO: Set window to request's client object if client is a Window object } else { request.window = Window::NoWindow; } - // Step 2. + // Step 10: If request’s origin is "client", then set request’s origin to request’s client’s + // origin. if request.origin == Origin::Client { // TODO: set request's origin to request's client's origin unimplemented!() } - // Step 3. - set_default_accept(request); + // Step 11: If all of the following conditions are true: + // - request’s URL’s scheme is an HTTP(S) scheme + // - request’s mode is "same-origin", "cors", or "no-cors" + // - request’s window is an environment settings object + // - request’s method is `GET` + // - request’s unsafe-request flag is not set or request’s header list is empty + // TODO: evaluate these conditions when we have an an environment settings object - // Step 4. - set_default_accept_language(&mut request.headers); + // Step 12: If request’s policy container is "client", then: + if let RequestPolicyContainer::Client = request.policy_container { + // Step 12.1: If request’s client is non-null, then set request’s policy container to a clone + // of request’s client’s policy container. + // TODO: Requires request's client to support PolicyContainer - // Step 5. - // TODO: figure out what a Priority object is. - - // Step 6. - // TODO: handle client hints headers. - - // Step 7. - if request.is_subresource_request() { - // TODO: handle client hints headers. + // Step 12.2: Otherwise, set request’s policy container to a new policy container. + request.policy_container = + RequestPolicyContainer::PolicyContainer(PolicyContainer::default()); } - // Step 8. + // Step 13: If request’s header list does not contain `Accept`: + set_default_accept(request); + + // Step 14: If request’s header list does not contain `Accept-Language`, then user agents should + // append (`Accept-Language, an appropriate header value) to request’s header list. + set_default_accept_language(&mut request.headers); + + // Step 15. If request’s internal priority is null, then use request’s priority, initiator, + // destination, and render-blocking in an implementation-defined manner to set request’s + // internal priority to an implementation-defined object. + // TODO: figure out what a Priority object is. + + // Step 16: If request is a subresource request, then: + if request.is_subresource_request() { + // TODO: requires keepalive. + } + + // Step 17: Run main fetch given fetchParams. main_fetch(request, cache, false, false, target, &mut None, context).await; + + // Step 18: Return fetchParams’s controller. + // TODO: We don't implement fetchParams as defined in the spec } /// -pub fn should_request_be_blocked_by_csp(request: &Request) -> csp::CheckResult { +pub fn should_request_be_blocked_by_csp( + request: &Request, + policy_container: &PolicyContainer, +) -> csp::CheckResult { let origin = match &request.origin { Origin::Client => return csp::CheckResult::Allowed, Origin::Origin(origin) => origin, }; + let csp_request = csp::Request { url: request.url().into_url(), origin: origin.clone().into_url_origin(), @@ -170,8 +202,9 @@ pub fn should_request_be_blocked_by_csp(request: &Request) -> csp::CheckResult { integrity_metadata: request.integrity_metadata.clone(), parser_metadata: csp::ParserMetadata::None, }; + // TODO: Instead of ignoring violations, report them. - request + policy_container .csp_list .as_ref() .map(|c| c.should_request_be_blocked(&csp_request).0) @@ -213,8 +246,15 @@ pub async fn main_fetch( // Step 2.2. // TODO: Report violations. + // The request should have a valid policy_container associated with it. + // TODO: This should not be `Client` here + let policy_container = match &request.policy_container { + RequestPolicyContainer::Client => PolicyContainer::default(), + RequestPolicyContainer::PolicyContainer(container) => container.to_owned(), + }; + // Step 2.4. - if should_request_be_blocked_by_csp(request) == csp::CheckResult::Blocked { + if should_request_be_blocked_by_csp(request, &policy_container) == csp::CheckResult::Blocked { warn!("Request blocked by CSP"); response = Some(Response::network_error(NetworkError::Internal( "Blocked by Content-Security-Policy".into(), @@ -236,16 +276,14 @@ pub async fn main_fetch( // TODO: handle blocking as mixed content. // TODO: handle blocking by content security policy. - // Step 6 - // TODO: handle request's client's referrer policy. - - // Step 7. + // Step 8: If request’s referrer policy is the empty string, then set request’s referrer policy + // to request’s policy container’s referrer policy. request.referrer_policy = request .referrer_policy - .or(Some(ReferrerPolicy::NoReferrerWhenDowngrade)); + .or(Some(policy_container.referrer_policy)); - // Step 8. assert!(request.referrer_policy.is_some()); + let referrer_url = match mem::replace(&mut request.referrer, Referrer::NoReferrer) { Referrer::NoReferrer => None, Referrer::ReferrerUrl(referrer_source) | Referrer::Client(referrer_source) => { diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index 4c68ed3725f..c0e01ef5dd7 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -36,6 +36,7 @@ use metrics::{ ProgressiveWebMetric, }; use mime::{self, Mime}; +use net_traits::policy_container::PolicyContainer; use net_traits::pub_domains::is_pub_domain; use net_traits::request::RequestBuilder; use net_traits::response::HttpsState; @@ -75,7 +76,7 @@ use crate::document_loader::{DocumentLoader, LoadType}; use crate::dom::attr::Attr; use crate::dom::beforeunloadevent::BeforeUnloadEvent; use crate::dom::bindings::callback::ExceptionHandling; -use crate::dom::bindings::cell::{ref_filter_map, DomRefCell, Ref, RefMut}; +use crate::dom::bindings::cell::{DomRefCell, Ref, RefMut}; use crate::dom::bindings::codegen::Bindings::BeforeUnloadEventBinding::BeforeUnloadEvent_Binding::BeforeUnloadEventMethods; use crate::dom::bindings::codegen::Bindings::DocumentBinding::{ DocumentMethods, DocumentReadyState, DocumentVisibilityState, NamedPropertyValue, @@ -377,6 +378,9 @@ pub struct Document { referrer: Option, /// target_element: MutNullableDom, + /// + #[no_trace] + policy_container: DomRefCell, /// #[ignore_malloc_size_of = "Defined in std"] #[no_trace] @@ -446,10 +450,6 @@ pub struct Document { DomRefCell>>, /// List of all WebGPU context IDs that need flushing. dirty_webgpu_contexts: DomRefCell>>, - /// - #[ignore_malloc_size_of = "Defined in rust-content-security-policy"] - #[no_trace] - csp_list: DomRefCell>, /// selection: MutNullableDom, /// A timeline for animations which is used for synchronizing animations. @@ -2175,12 +2175,16 @@ impl Document { } } - /// Add the CSP list and HTTPS state to a given request. + pub fn policy_container(&self) -> Ref { + self.policy_container.borrow() + } + + /// Add the policy container and HTTPS state to a given request. /// /// TODO: Can this hapen for all requests that go through the document? pub(crate) fn prepare_request(&self, request: RequestBuilder) -> RequestBuilder { request - .csp_list(self.get_csp_list().map(|list| list.clone())) + .policy_container(self.policy_container().to_owned()) .https_state(self.https_state.get()) } @@ -3399,6 +3403,7 @@ impl Document { referrer, referrer_policy: Cell::new(referrer_policy), target_element: MutNullableDom::new(None), + policy_container: DomRefCell::new(PolicyContainer::default()), last_click_info: DomRefCell::new(None), ignore_destructive_writes_counter: Default::default(), ignore_opens_during_unload_counter: Default::default(), @@ -3424,7 +3429,6 @@ impl Document { media_controls: DomRefCell::new(HashMap::new()), dirty_webgl_contexts: DomRefCell::new(HashMapTracedValues::new()), dirty_webgpu_contexts: DomRefCell::new(HashMapTracedValues::new()), - csp_list: DomRefCell::new(None), selection: MutNullableDom::new(None), animation_timeline: if pref!(layout.animations.test.enabled) { DomRefCell::new(AnimationTimeline::new_for_testing()) @@ -3495,11 +3499,11 @@ impl Document { } pub fn set_csp_list(&self, csp_list: Option) { - *self.csp_list.borrow_mut() = csp_list; + self.policy_container.borrow_mut().set_csp_list(csp_list); } - pub fn get_csp_list(&self) -> Option> { - ref_filter_map(self.csp_list.borrow(), Option::as_ref) + pub fn get_csp_list(&self) -> Option { + self.policy_container.borrow().csp_list.clone() } /// @@ -4273,6 +4277,7 @@ impl ProfilerMetadataFactory for Document { } } +#[allow(non_snake_case)] impl DocumentMethods for Document { // https://dom.spec.whatwg.org/#dom-document-document fn Constructor( @@ -5619,11 +5624,11 @@ fn update_with_current_instant(marker: &Cell>) { pub fn determine_policy_for_token(token: &str) -> Option { match_ignore_ascii_case! { token, "never" | "no-referrer" => Some(ReferrerPolicy::NoReferrer), - "default" | "no-referrer-when-downgrade" => Some(ReferrerPolicy::NoReferrerWhenDowngrade), + "no-referrer-when-downgrade" => Some(ReferrerPolicy::NoReferrerWhenDowngrade), "origin" => Some(ReferrerPolicy::Origin), "same-origin" => Some(ReferrerPolicy::SameOrigin), "strict-origin" => Some(ReferrerPolicy::StrictOrigin), - "strict-origin-when-cross-origin" => Some(ReferrerPolicy::StrictOriginWhenCrossOrigin), + "default" | "strict-origin-when-cross-origin" => Some(ReferrerPolicy::StrictOriginWhenCrossOrigin), "origin-when-cross-origin" => Some(ReferrerPolicy::OriginWhenCrossOrigin), "always" | "unsafe-url" => Some(ReferrerPolicy::UnsafeUrl), "" => Some(ReferrerPolicy::NoReferrer), diff --git a/components/script/dom/globalscope.rs b/components/script/dom/globalscope.rs index 35000732eb9..194e2439d7e 100644 --- a/components/script/dom/globalscope.rs +++ b/components/script/dom/globalscope.rs @@ -45,6 +45,7 @@ use net_traits::filemanager_thread::{ FileManagerResult, FileManagerThreadMsg, ReadFileProgress, RelativePos, }; use net_traits::image_cache::ImageCache; +use net_traits::policy_container::PolicyContainer; use net_traits::request::{Referrer, RequestBuilder}; use net_traits::response::HttpsState; use net_traits::{ @@ -2373,6 +2374,17 @@ impl GlobalScope { unreachable!(); } + /// + pub fn policy_container(&self) -> PolicyContainer { + if let Some(window) = self.downcast::() { + return window.Document().policy_container().to_owned(); + } + if let Some(worker) = self.downcast::() { + return worker.policy_container().to_owned(); + } + unreachable!(); + } + /// Get the [base url](https://html.spec.whatwg.org/multipage/#api-base-url) /// for this global scope. pub fn api_base_url(&self) -> ServoUrl { @@ -3116,8 +3128,8 @@ impl GlobalScope { /// pub fn get_csp_list(&self) -> Option { - if let Some(window) = self.downcast::() { - return window.Document().get_csp_list().map(|c| c.clone()); + if self.downcast::().is_some() { + return self.policy_container().csp_list; } // TODO: Worker and Worklet global scopes. None diff --git a/components/script/dom/htmlheadelement.rs b/components/script/dom/htmlheadelement.rs index 3e6e9bafb60..3b0f40d2f22 100644 --- a/components/script/dom/htmlheadelement.rs +++ b/components/script/dom/htmlheadelement.rs @@ -95,7 +95,7 @@ impl HTMLHeadElement { let mut csp_list: Option = None; let node = self.upcast::(); - let candinates = node + let candidates = node .traverse_preorder(ShadowIncluding::No) .filter_map(DomRoot::downcast::) .filter(|elem| elem.is::()) @@ -109,7 +109,7 @@ impl HTMLHeadElement { .is_some() }); - for meta in candinates { + for meta in candidates { if let Some(ref content) = meta.get_attribute(&ns!(), &local_name!("content")) { let content = content.value(); let content_val = content.trim(); diff --git a/components/script/dom/htmllinkelement.rs b/components/script/dom/htmllinkelement.rs index f7dcb06b157..b709a1cc203 100644 --- a/components/script/dom/htmllinkelement.rs +++ b/components/script/dom/htmllinkelement.rs @@ -11,6 +11,7 @@ use dom_struct::dom_struct; use embedder_traits::EmbedderMsg; use html5ever::{local_name, namespace_url, ns, LocalName, Prefix}; use js::rust::HandleObject; +use net_traits::policy_container::PolicyContainer; use net_traits::request::{ CorsSettings, Destination, Initiator, Referrer, RequestBuilder, RequestId, }; @@ -76,6 +77,7 @@ struct LinkProcessingOptions { link_type: String, cross_origin: Option, referrer_policy: Option, + policy_container: PolicyContainer, source_set: Option<()>, base_url: ServoUrl, // Some fields that we don't need yet are missing @@ -322,6 +324,7 @@ impl HTMLLinkElement { link_type: String::new(), cross_origin: cors_setting_for_element(element), referrer_policy: referrer_policy_for_element(element), + policy_container: document.policy_container().to_owned(), source_set: None, // FIXME base_url: document.borrow().base_url(), }; @@ -642,7 +645,7 @@ impl LinkProcessingOptions { // Step 5. Let request be the result of creating a potential-CORS request given // url, options's destination, and options's crossorigin. - // FIXME: Step 6. Set request's policy container to options's policy container. + // Step 6. Set request's policy container to options's policy container. // Step 7. Set request's integrity metadata to options's integrity. // FIXME: Step 8. Set request's cryptographic nonce metadata to options's cryptographic nonce metadata. // Step 9. Set request's referrer policy to options's referrer policy. @@ -657,6 +660,7 @@ impl LinkProcessingOptions { Referrer::NoReferrer, ) .integrity_metadata(self.integrity) + .policy_container(self.policy_container) .referrer_policy(self.referrer_policy); // Step 12. Return request. diff --git a/components/script/dom/serviceworkerregistration.rs b/components/script/dom/serviceworkerregistration.rs index c1eb63fa648..c37071f761a 100644 --- a/components/script/dom/serviceworkerregistration.rs +++ b/components/script/dom/serviceworkerregistration.rs @@ -7,6 +7,7 @@ use std::cell::Cell; use base::id::ServiceWorkerRegistrationId; use devtools_traits::WorkerId; use dom_struct::dom_struct; +use net_traits::request::Referrer; use script_traits::{ScopeThings, WorkerScriptLoadOrigin}; use servo_url::ServoUrl; use uuid::Uuid; @@ -112,8 +113,12 @@ impl ServiceWorkerRegistration { pub fn create_scope_things(global: &GlobalScope, script_url: ServoUrl) -> ScopeThings { let worker_load_origin = WorkerScriptLoadOrigin { - referrer_url: None, - referrer_policy: None, + referrer_url: match global.get_referrer() { + Referrer::Client(url) => Some(url), + Referrer::ReferrerUrl(url) => Some(url), + _ => None, + }, + referrer_policy: Some(global.policy_container().referrer_policy), pipeline_id: global.pipeline_id(), }; diff --git a/components/script/dom/workerglobalscope.rs b/components/script/dom/workerglobalscope.rs index b08cf0abc38..2d317c8a131 100644 --- a/components/script/dom/workerglobalscope.rs +++ b/components/script/dom/workerglobalscope.rs @@ -17,6 +17,7 @@ use ipc_channel::ipc::IpcSender; use js::jsval::UndefinedValue; use js::panic::maybe_resume_unwind; use js::rust::{HandleValue, MutableHandleValue, ParentRuntime}; +use net_traits::policy_container::PolicyContainer; use net_traits::request::{ CredentialsMode, Destination, ParserMetadata, RequestBuilder as NetRequestInit, }; @@ -109,6 +110,9 @@ pub struct WorkerGlobalScope { runtime: DomRefCell>, location: MutNullableDom, navigator: MutNullableDom, + #[no_trace] + /// + policy_container: DomRefCell, #[ignore_malloc_size_of = "Defined in ipc-channel"] #[no_trace] @@ -171,6 +175,7 @@ impl WorkerGlobalScope { runtime: DomRefCell::new(Some(runtime)), location: Default::default(), navigator: Default::default(), + policy_container: Default::default(), devtools_receiver, _devtools_sender: init.from_devtools_sender, navigation_start: CrossProcessInstant::now(), @@ -230,6 +235,10 @@ impl WorkerGlobalScope { pub fn pipeline_id(&self) -> PipelineId { self.globalscope.pipeline_id() } + + pub fn policy_container(&self) -> Ref { + self.policy_container.borrow() + } } impl WorkerGlobalScopeMethods for WorkerGlobalScope { diff --git a/components/script/fetch.rs b/components/script/fetch.rs index 0dcddf657a3..b6c2181538d 100644 --- a/components/script/fetch.rs +++ b/components/script/fetch.rs @@ -6,6 +6,7 @@ use std::rc::Rc; use std::sync::{Arc, Mutex}; use ipc_channel::ipc; +use net_traits::policy_container::RequestPolicyContainer; use net_traits::request::{ CorsSettings, CredentialsMode, Destination, Referrer, Request as NetTraitsRequest, RequestBuilder, RequestId, RequestMode, ServiceWorkersMode, @@ -127,7 +128,7 @@ fn request_init_from_request(request: NetTraitsRequest) -> RequestBuilder { url_list: vec![], parser_metadata: request.parser_metadata, initiator: request.initiator, - csp_list: None, + policy_container: request.policy_container, https_state: request.https_state, response_tainting: request.response_tainting, crash: None, @@ -167,7 +168,8 @@ pub fn Fetch( let timing_type = request.timing_type(); let mut request_init = request_init_from_request(request); - request_init.csp_list.clone_from(&global.get_csp_list()); + request_init.policy_container = + RequestPolicyContainer::PolicyContainer(global.policy_container()); // TODO: Step 4. If requestObject’s signal is aborted, then: [..] diff --git a/components/shared/net/lib.rs b/components/shared/net/lib.rs index 72abb691eab..455191aba79 100644 --- a/components/shared/net/lib.rs +++ b/components/shared/net/lib.rs @@ -39,6 +39,7 @@ pub mod blob_url_store; pub mod filemanager_thread; pub mod http_status; pub mod image_cache; +pub mod policy_container; pub mod pub_domains; pub mod quality; pub mod request; @@ -104,7 +105,7 @@ pub struct CustomResponseMediator { /// [Policies](https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-states) /// for providing a referrer header for a request -#[derive(Clone, Copy, Debug, Deserialize, MallocSizeOf, Serialize)] +#[derive(Clone, Copy, Debug, Default, Deserialize, MallocSizeOf, Serialize)] pub enum ReferrerPolicy { /// "no-referrer" NoReferrer, @@ -121,6 +122,7 @@ pub enum ReferrerPolicy { /// "strict-origin" StrictOrigin, /// "strict-origin-when-cross-origin" + #[default] StrictOriginWhenCrossOrigin, } diff --git a/components/shared/net/policy_container.rs b/components/shared/net/policy_container.rs new file mode 100644 index 00000000000..7e71033a436 --- /dev/null +++ b/components/shared/net/policy_container.rs @@ -0,0 +1,51 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ + +use content_security_policy::CspList; +use malloc_size_of_derive::MallocSizeOf; +use serde::{Deserialize, Serialize}; + +use crate::ReferrerPolicy; + +/// When a policy container is associated with a request, it has an additional state of "Client". As +/// per the spec: +/// +/// `"client" is changed to a policy container during fetching. It provides a convenient way for +/// standards to not have to set request’s policy container.` +/// +/// This can be achieved with an `Option` however this struct is used with the intent to reduce +/// ambiguity when mapping our implementation to the spec. +/// +/// +#[derive(Clone, Debug, Default, Deserialize, MallocSizeOf, Serialize)] +pub enum RequestPolicyContainer { + #[default] + Client, + PolicyContainer(PolicyContainer), +} + +/// +#[derive(Clone, Debug, Default, Deserialize, MallocSizeOf, Serialize)] +pub struct PolicyContainer { + #[ignore_malloc_size_of = "Defined in rust-content-security-policy"] + /// + pub csp_list: Option, + /// + pub referrer_policy: ReferrerPolicy, + // https://html.spec.whatwg.org/multipage/#policy-container-embedder-policy + // TODO: Embedder Policy +} + +impl PolicyContainer { + pub fn new(csp_list: Option, referrer_policy: Option) -> Self { + PolicyContainer { + csp_list, + referrer_policy: referrer_policy.unwrap_or_default(), + } + } + + pub fn set_csp_list(&mut self, csp_list: Option) { + self.csp_list = csp_list; + } +} diff --git a/components/shared/net/request.rs b/components/shared/net/request.rs index 362054684c4..3db02c49d79 100644 --- a/components/shared/net/request.rs +++ b/components/shared/net/request.rs @@ -6,7 +6,7 @@ use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::{Arc, Mutex}; use base::id::PipelineId; -use content_security_policy::{self as csp, CspList}; +use content_security_policy::{self as csp}; use http::header::{HeaderName, AUTHORIZATION}; use http::{HeaderMap, Method}; use ipc_channel::ipc::{self, IpcReceiver, IpcSender}; @@ -15,6 +15,7 @@ use mime::Mime; use serde::{Deserialize, Serialize}; use servo_url::{ImmutableOrigin, ServoUrl}; +use crate::policy_container::{PolicyContainer, RequestPolicyContainer}; use crate::response::HttpsState; use crate::{ReferrerPolicy, ResourceTimingType}; @@ -261,17 +262,13 @@ pub struct RequestBuilder { pub credentials_mode: CredentialsMode, pub use_url_credentials: bool, pub origin: ImmutableOrigin, + pub policy_container: RequestPolicyContainer, // XXXManishearth these should be part of the client object pub referrer: Referrer, pub referrer_policy: Option, pub pipeline_id: Option, pub redirect_mode: RedirectMode, pub integrity_metadata: String, - // This is nominally a part of the client's global object. - // It is copied here to avoid having to reach across the thread - // boundary every time a redirect occurs. - #[ignore_malloc_size_of = "Defined in rust-content-security-policy"] - pub csp_list: Option, // to keep track of redirects pub url_list: Vec, pub parser_metadata: ParserMetadata, @@ -300,6 +297,7 @@ impl RequestBuilder { credentials_mode: CredentialsMode::CredentialsSameOrigin, use_url_credentials: false, origin: ImmutableOrigin::new_opaque(), + policy_container: RequestPolicyContainer::default(), referrer, referrer_policy: None, pipeline_id: None, @@ -308,7 +306,6 @@ impl RequestBuilder { url_list: vec![], parser_metadata: ParserMetadata::Default, initiator: Initiator::None, - csp_list: None, https_state: HttpsState::None, response_tainting: ResponseTainting::Basic, crash: None, @@ -410,13 +407,13 @@ impl RequestBuilder { self } - pub fn csp_list(mut self, csp_list: Option) -> RequestBuilder { - self.csp_list = csp_list; + pub fn crash(mut self, crash: Option) -> Self { + self.crash = crash; self } - pub fn crash(mut self, crash: Option) -> Self { - self.crash = crash; + pub fn policy_container(mut self, policy_container: PolicyContainer) -> RequestBuilder { + self.policy_container = RequestPolicyContainer::PolicyContainer(policy_container); self } @@ -452,9 +449,9 @@ impl RequestBuilder { request.url_list = url_list; request.integrity_metadata = self.integrity_metadata; request.parser_metadata = self.parser_metadata; - request.csp_list = self.csp_list; request.response_tainting = self.response_tainting; request.crash = self.crash; + request.policy_container = self.policy_container; request } } @@ -525,11 +522,8 @@ pub struct Request { pub response_tainting: ResponseTainting, /// pub parser_metadata: ParserMetadata, - // This is nominally a part of the client's global object. - // It is copied here to avoid having to reach across the thread - // boundary every time a redirect occurs. - #[ignore_malloc_size_of = "Defined in rust-content-security-policy"] - pub csp_list: Option, + /// + pub policy_container: RequestPolicyContainer, pub https_state: HttpsState, /// Servo internal: if crash details are present, trigger a crash error page with these details. pub crash: Option, @@ -573,7 +567,7 @@ impl Request { parser_metadata: ParserMetadata::Default, redirect_count: 0, response_tainting: ResponseTainting::Basic, - csp_list: None, + policy_container: RequestPolicyContainer::Client, https_state, crash: None, } diff --git a/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini b/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini deleted file mode 100644 index 877c5d64acd..00000000000 --- a/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[referrer-origin-when-cross-origin-worker.html] - type: testharness - [Request's referrer is origin] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin.html.ini b/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin.html.ini deleted file mode 100644 index 54f72fb2059..00000000000 --- a/tests/wpt/meta-legacy-layout/fetch/api/policies/referrer-origin-when-cross-origin.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[referrer-origin-when-cross-origin.html] - type: testharness - [Request's referrer is origin] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini index 04366537f82..f5196b771b1 100644 --- a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini +++ b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini @@ -1,7 +1,4 @@ [referrer-origin-when-cross-origin.sub.html] - [Importing a remote-origin descendant script from a same-origin top-level script with the origin-when-cross-origin policy.] - expected: FAIL - [Importing a same-origin descendant script from a same-origin top-level script with the origin-when-cross-origin policy.] expected: FAIL @@ -10,7 +7,3 @@ [Importing a same-origin descendant script from a remote-origin top-level script with the origin-when-cross-origin policy.] expected: FAIL - - [Importing a remote-origin top-level script with the origin-when-cross-origin policy.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini index 413900f14b9..44a4ddcab2c 100644 --- a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini +++ b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini @@ -2,9 +2,6 @@ [Importing a same-origin descendant script from a same-origin top-level script with the origin policy.] expected: FAIL - [Importing a remote-origin descendant script from a same-origin top-level script with the origin policy.] - expected: FAIL - [Importing a remote-origin descendant script from a remote-origin top-level script with the origin policy.] expected: FAIL @@ -13,7 +10,3 @@ [Importing a same-origin top-level script with the origin policy.] expected: FAIL - - [Importing a remote-origin top-level script with the origin policy.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini index 4bcd91bc962..4f7f174bbb7 100644 --- a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini +++ b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini @@ -5,9 +5,6 @@ [Parent module delivered with `origin` policy importing a same-origin descendant script.] expected: FAIL - [Parent module delivered with `origin-when-cross-origin` policy importing a cross-origin descendant script.] - expected: FAIL - [Remote parent module delivered with `origin-when-cross-origin` policy importing a same-origin-to-parent-module descendant script.] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini index ca205ef4879..87ad8d7b57b 100644 --- a/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini +++ b/tests/wpt/meta-legacy-layout/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini @@ -11,3 +11,5 @@ [Importing a remote-origin descendant script from a same-origin top-level script with the unsafe-url policy.] expected: FAIL + [Importing a remote-origin top-level script with the unsafe-url policy.] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/internal-stylesheet.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/internal-stylesheet.html.ini deleted file mode 100644 index 3c3bef0aea4..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/internal-stylesheet.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[internal-stylesheet.html] - [Image from internal stylesheet.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/presentation-attribute.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/presentation-attribute.html.ini deleted file mode 100644 index dd679361c4b..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/css-integration/image/presentation-attribute.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[presentation-attribute.html] - [Image from presentation attributes.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini index d1db8b199ad..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini index d1db8b199ad..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini index d1db8b199ad..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 30c7a13dd26..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini index d1db8b199ad..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 30c7a13dd26..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/default/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 30c7a13dd26..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini deleted file mode 100644 index 1aa014c710c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/top.meta/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini index c0c4d2fb7cf..2326274aecb 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini @@ -1,37 +1,6 @@ [xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 30c7a13dd26..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini index d428a2da2dc..449f630ec49 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini @@ -1,37 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini index c0c4d2fb7cf..2326274aecb 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini @@ -1,37 +1,6 @@ [xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.] expected: FAIL - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini index 92fcdd0c838..020dd26998d 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini @@ -2,3 +2,5 @@ [Referrer Policy: iframes with document.write()] expected: FAIL + [document.open() should not change the referrer policy of the opened document.] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini index ced92bd6a1a..9f66c01f84c 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini @@ -5,3 +5,5 @@ [Referrer Policy: iframes with javascript url reuse referrer policy 2] expected: FAIL + [Referrer Policy: iframes with javascript url reuse referrer policy] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini new file mode 100644 index 00000000000..9fd9b80a88a --- /dev/null +++ b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini @@ -0,0 +1,3 @@ +[iframe-inheritance-javascript.html] + [Referrer Policy: iframes with javascript url reuse referrer policy 1] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini deleted file mode 100644 index c0f20881f7c..00000000000 --- a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[iframe-inheritance-srcdoc-child.html] - [iframes srcdoc child correctly inherit the ancestor's referrer policy] - expected: FAIL - diff --git a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini index 16ddd043dfa..7d06e4a54b2 100644 --- a/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini +++ b/tests/wpt/meta-legacy-layout/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini @@ -4,7 +4,3 @@ [Even after a navigation from another initiator, srcdoc iframe still inherits referrer policy from the parent.] expected: TIMEOUT - - [Srcdoc iframe inherits referrer policy from parent on creation.] - expected: FAIL - diff --git a/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini b/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini deleted file mode 100644 index 79052934a91..00000000000 --- a/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin-worker.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[referrer-origin-when-cross-origin-worker.html] - [Request's referrer is origin] - expected: FAIL diff --git a/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin.html.ini b/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin.html.ini deleted file mode 100644 index 246d2851542..00000000000 --- a/tests/wpt/meta/fetch/api/policies/referrer-origin-when-cross-origin.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[referrer-origin-when-cross-origin.html] - [Request's referrer is origin] - expected: FAIL diff --git a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini index 2cca9beb52b..f5196b771b1 100644 --- a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini +++ b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html.ini @@ -1,13 +1,7 @@ [referrer-origin-when-cross-origin.sub.html] - [Importing a remote-origin top-level script with the origin-when-cross-origin policy.] - expected: FAIL - [Importing a same-origin descendant script from a same-origin top-level script with the origin-when-cross-origin policy.] expected: FAIL - [Importing a remote-origin descendant script from a same-origin top-level script with the origin-when-cross-origin policy.] - expected: FAIL - [Importing a remote-origin descendant script from a remote-origin top-level script with the origin-when-cross-origin policy.] expected: FAIL diff --git a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini index 18335ebdecd..6e529c3d241 100644 --- a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini +++ b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html.ini @@ -2,15 +2,9 @@ [Importing a same-origin top-level script with the origin policy.] expected: FAIL - [Importing a remote-origin top-level script with the origin policy.] - expected: FAIL - [Importing a same-origin descendant script from a same-origin top-level script with the origin policy.] expected: FAIL - [Importing a remote-origin descendant script from a same-origin top-level script with the origin policy.] - expected: FAIL - [Importing a remote-origin descendant script from a remote-origin top-level script with the origin policy.] expected: FAIL diff --git a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini index 4bcd91bc962..4f7f174bbb7 100644 --- a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini +++ b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-policy-for-descendants.sub.html.ini @@ -5,9 +5,6 @@ [Parent module delivered with `origin` policy importing a same-origin descendant script.] expected: FAIL - [Parent module delivered with `origin-when-cross-origin` policy importing a cross-origin descendant script.] - expected: FAIL - [Remote parent module delivered with `origin-when-cross-origin` policy importing a same-origin-to-parent-module descendant script.] expected: FAIL diff --git a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini index c940fb071a7..1298cb0cc10 100644 --- a/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini +++ b/tests/wpt/meta/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html.ini @@ -10,3 +10,6 @@ [Importing a same-origin descendant script from a remote-origin top-level script with the unsafe-url policy.] expected: FAIL + + [Importing a remote-origin top-level script with the unsafe-url policy.] + expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/css-integration/image/internal-stylesheet.html.ini b/tests/wpt/meta/referrer-policy/css-integration/image/internal-stylesheet.html.ini deleted file mode 100644 index 61467cf8215..00000000000 --- a/tests/wpt/meta/referrer-policy/css-integration/image/internal-stylesheet.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[internal-stylesheet.html] - [Image from internal stylesheet.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/css-integration/image/presentation-attribute.html.ini b/tests/wpt/meta/referrer-policy/css-integration/image/presentation-attribute.html.ini deleted file mode 100644 index 9b8bc9cbd16..00000000000 --- a/tests/wpt/meta/referrer-policy/css-integration/image/presentation-attribute.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[presentation-attribute.html] - [Image from presentation attributes.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/strict-origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini index 98f6ba39414..d372f1a0861 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/script-tag.http.html.ini @@ -10,34 +10,3 @@ [Referrer Policy: Expects stripped-referrer for script-tag to same-https origin and no-redirect redirection from http context.] expected: NOTRUN - - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/default/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin-when-crossorigin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.meta/origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/iframe.meta/strict-origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/iframe.meta/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/req.attr/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/req.attr/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.http-rp/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.http-rp/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/default/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/default/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/default/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin-when-crossorigin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin-when-cross-origin/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini index eff5d7a5e29..117600b73d2 100644 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/top.meta/strict-origin/script-tag-dynamic-import.http.html.ini @@ -1,36 +1,6 @@ [script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini deleted file mode 100644 index 6154178b29f..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/iframe-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[iframe-tag.http.html] - [Referrer Policy: Expects origin for iframe-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for iframe-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini deleted file mode 100644 index 7646779a328..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/img-tag.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[img-tag.http.html] - [Referrer Policy: Expects origin for img-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini deleted file mode 100644 index cb4088843b3..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag-dynamic-import.http.html.ini +++ /dev/null @@ -1,30 +0,0 @@ -[script-tag-dynamic-import.http.html] - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag-dynamic-import to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini deleted file mode 100644 index 568462231b7..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/script-tag.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[script-tag.http.html] - [Referrer Policy: Expects origin for script-tag to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for script-tag to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/top.meta/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/top.meta/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin-when-cross-origin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini index e6935f60c3f..2326274aecb 100644 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/origin/xhr.http.html.ini @@ -1,36 +1,6 @@ [xhr.http.html] - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini index bc742f27463..449f630ec49 100644 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/fetch.http.html.ini @@ -1,36 +1,6 @@ [fetch.http.html] - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for fetch to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for fetch to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini index e6935f60c3f..2326274aecb 100644 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini +++ b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/strict-origin/xhr.http.html.ini @@ -1,36 +1,6 @@ [xhr.http.html] - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - [Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context.] expected: FAIL [Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context.] expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini deleted file mode 100644 index 68c7e9a360c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/fetch.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[fetch.http.html] - [Referrer Policy: Expects origin for fetch to same-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for fetch to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini b/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini deleted file mode 100644 index b30686cae0c..00000000000 --- a/tests/wpt/meta/referrer-policy/gen/worker-classic.http-rp/unset/xhr.http.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[xhr.http.html] - [Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context.] - expected: FAIL - - [Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context.] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini new file mode 100644 index 00000000000..084108037cf --- /dev/null +++ b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-document-write.html.ini @@ -0,0 +1,3 @@ +[iframe-inheritance-document-write.html] + [document.open() should not change the referrer policy of the opened document.] + expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini index ced92bd6a1a..9f66c01f84c 100644 --- a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini +++ b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript-child.html.ini @@ -5,3 +5,5 @@ [Referrer Policy: iframes with javascript url reuse referrer policy 2] expected: FAIL + [Referrer Policy: iframes with javascript url reuse referrer policy] + expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini new file mode 100644 index 00000000000..9fd9b80a88a --- /dev/null +++ b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-javascript.html.ini @@ -0,0 +1,3 @@ +[iframe-inheritance-javascript.html] + [Referrer Policy: iframes with javascript url reuse referrer policy 1] + expected: FAIL diff --git a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini deleted file mode 100644 index c0f20881f7c..00000000000 --- a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[iframe-inheritance-srcdoc-child.html] - [iframes srcdoc child correctly inherit the ancestor's referrer policy] - expected: FAIL - diff --git a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini index 16ddd043dfa..7d06e4a54b2 100644 --- a/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini +++ b/tests/wpt/meta/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc.html.ini @@ -4,7 +4,3 @@ [Even after a navigation from another initiator, srcdoc iframe still inherits referrer policy from the parent.] expected: TIMEOUT - - [Srcdoc iframe inherits referrer policy from parent on creation.] - expected: FAIL -