diff --git a/Cargo.lock b/Cargo.lock index 45ce84d2f70..cdec7ba310b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1687,6 +1687,7 @@ dependencies = [ "hyper_serde 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "immeta 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1694,6 +1695,7 @@ dependencies = [ "msg 0.0.1", "net_traits 0.0.1", "openssl 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", + "parse-hosts 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "profile_traits 0.0.1", "serde 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1760,7 +1762,6 @@ dependencies = [ "log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "num-traits 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", - "parse-hosts 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)", "servo_config 0.0.1", diff --git a/components/config/opts.rs b/components/config/opts.rs index ca0c24f8d09..e62bade0cdc 100644 --- a/components/config/opts.rs +++ b/components/config/opts.rs @@ -230,6 +230,9 @@ pub struct Opts { /// Print the version and exit. pub is_printing_version: bool, + + /// Path to SSL certificates. + pub certificate_path: Option, } fn print_usage(app: &str, opts: &Options) { @@ -566,6 +569,7 @@ pub fn default_opts() -> Opts { webrender_record: false, precache_shaders: false, signpost: false, + certificate_path: None, } } @@ -615,6 +619,7 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { "A comma-separated string of debug options. Pass help to show available options.", ""); opts.optflag("h", "help", "Print this message"); opts.optopt("", "resources-path", "Path to find static resources", "/home/servo/resources"); + opts.optopt("", "certificate-path", "Path to find SSL certificates", "/home/servo/resources/certs"); opts.optopt("", "content-process" , "Run as a content process and connect to the given pipe", "servo-ipc-channel.abcdefg"); opts.optmulti("", "pref", @@ -868,6 +873,7 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { webrender_record: debug_options.webrender_record, precache_shaders: debug_options.precache_shaders, signpost: debug_options.signpost, + certificate_path: opt_match.opt_str("certificate-path"), }; set_defaults(opts); diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index baea03a2ad2..47f412f28fa 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -20,6 +20,7 @@ hyper_serde = "0.6" hyper-openssl = "0.2.2" immeta = "0.3.1" ipc-channel = "0.7" +lazy_static = "0.2" log = "0.3.5" matches = "0.1" mime = "0.2.1" @@ -27,6 +28,7 @@ mime_guess = "1.8.0" msg = {path = "../msg"} net_traits = {path = "../net_traits"} openssl = "0.9" +parse-hosts = "0.3.0" profile_traits = {path = "../profile_traits"} serde = "0.9" serde_derive = "0.9" diff --git a/components/net/connector.rs b/components/net/connector.rs index 3f0dc0e12a9..79bb2282ea0 100644 --- a/components/net/connector.rs +++ b/components/net/connector.rs @@ -2,21 +2,56 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use hosts::replace_host; use hyper::client::Pool; -use hyper::net::HttpsConnector; +use hyper::error::{Result as HyperResult, Error as HyperError}; +use hyper::net::{NetworkConnector, HttpsStream, HttpStream, SslClient}; use hyper_openssl::OpensslClient; use openssl::ssl::{SSL_OP_NO_COMPRESSION, SSL_OP_NO_SSLV2, SSL_OP_NO_SSLV3}; use openssl::ssl::{SslConnectorBuilder, SslMethod}; -use servo_config::resource_files::resources_dir_path; +use std::io; +use std::net::TcpStream; +use std::path::PathBuf; use std::sync::Arc; -pub type Connector = HttpsConnector; +pub struct HttpsConnector { + ssl: OpensslClient, +} -pub fn create_ssl_client(certificate_file: &str) -> OpensslClient { - let ca_file = &resources_dir_path() - .expect("Need certificate file to make network requests") - .join(certificate_file); +impl HttpsConnector { + fn new(ssl: OpensslClient) -> HttpsConnector { + HttpsConnector { + ssl: ssl, + } + } +} +impl NetworkConnector for HttpsConnector { + type Stream = HttpsStream<::Stream>; + + fn connect(&self, host: &str, port: u16, scheme: &str) -> HyperResult { + if scheme != "http" && scheme != "https" { + return Err(HyperError::Io(io::Error::new(io::ErrorKind::InvalidInput, + "Invalid scheme for Http"))); + } + + // Perform host replacement when making the actual TCP connection. + let addr = &(&*replace_host(host), port); + let stream = HttpStream(try!(TcpStream::connect(addr))); + + if scheme == "http" { + Ok(HttpsStream::Http(stream)) + } else { + // Do not perform host replacement on the host that is used + // for verifying any SSL certificate encountered. + self.ssl.wrap_client(stream, host).map(HttpsStream::Https) + } + } +} + +pub type Connector = HttpsConnector; + +pub fn create_ssl_client(ca_file: &PathBuf) -> OpensslClient { let mut ssl_connector_builder = SslConnectorBuilder::new(SslMethod::tls()).unwrap(); { let context = ssl_connector_builder.builder_mut(); diff --git a/components/net_traits/hosts.rs b/components/net/hosts.rs similarity index 78% rename from components/net_traits/hosts.rs rename to components/net/hosts.rs index 741d9734df4..adc46e870ea 100644 --- a/components/net_traits/hosts.rs +++ b/components/net/hosts.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use parse_hosts::HostsFile; -use servo_url::ServoUrl; use std::borrow::Cow; use std::collections::HashMap; use std::env; @@ -62,19 +61,3 @@ pub fn replace_host(host: &str) -> Cow { .and_then(|table| table.get(host)) .map_or(host.into(), |replaced_host| replaced_host.to_string().into()) } - -pub fn replace_host_in_url(url: ServoUrl) -> ServoUrl { - if let Some(table) = HOST_TABLE.lock().unwrap().as_ref() { - host_replacement(table, url) - } else { - url - } -} - -pub fn host_replacement(host_table: &HashMap, mut url: ServoUrl) -> ServoUrl { - let replacement = url.domain().and_then(|domain| host_table.get(domain)); - if let Some(ip) = replacement { - url.set_ip_host(*ip).unwrap(); - } - url -} diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs index 059c4d1e830..e89bd86d140 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -15,7 +15,6 @@ use hsts::HstsList; use hyper::Error as HttpError; use hyper::LanguageTag; use hyper::client::{Pool, Request as HyperRequest, Response as HyperResponse}; -use hyper::client::pool::PooledStream; use hyper::header::{Accept, AccessControlAllowCredentials, AccessControlAllowHeaders}; use hyper::header::{AccessControlAllowMethods, AccessControlAllowOrigin}; use hyper::header::{AccessControlMaxAge, AccessControlRequestHeaders}; @@ -27,14 +26,11 @@ use hyper::header::{IfUnmodifiedSince, IfModifiedSince, IfNoneMatch, Location}; use hyper::header::{Pragma, Quality, QualityItem, Referer, SetCookie}; use hyper::header::{UserAgent, q, qitem}; use hyper::method::Method; -use hyper::net::{Fresh, HttpStream, HttpsStream, NetworkConnector}; use hyper::status::StatusCode; -use hyper_openssl::SslStream; use hyper_serde::Serde; use log; use msg::constellation_msg::PipelineId; use net_traits::{CookieSource, FetchMetadata, NetworkError, ReferrerPolicy}; -use net_traits::hosts::replace_host; use net_traits::request::{CacheMode, CredentialsMode, Destination, Origin}; use net_traits::request::{RedirectMode, Referrer, Request, RequestMode}; use net_traits::request::{ResponseTainting, Type}; @@ -121,29 +117,6 @@ impl WrappedHttpResponse { } } -struct NetworkHttpRequestFactory { - pub connector: Arc>, -} - -impl NetworkConnector for NetworkHttpRequestFactory { - type Stream = PooledStream>>; - - fn connect(&self, host: &str, port: u16, scheme: &str) -> Result { - self.connector.connect(&replace_host(host), port, scheme) - } -} - -impl NetworkHttpRequestFactory { - fn create(&self, url: ServoUrl, method: Method, headers: Headers) - -> Result, NetworkError> { - let connection = HyperRequest::with_connector(method, url.clone().into_url(), self); - let mut request = connection.map_err(|e| NetworkError::from_hyper_error(&url, e))?; - *request.headers_mut() = headers; - - Ok(request) - } -} - // Step 3 of https://fetch.spec.whatwg.org/#concept-fetch. pub fn set_default_accept(type_: Type, destination: Destination, headers: &mut Headers) { if headers.has::() { @@ -416,7 +389,7 @@ fn auth_from_cache(auth_cache: &RwLock, origin: &ImmutableOrigin) -> } } -fn obtain_response(request_factory: &NetworkHttpRequestFactory, +fn obtain_response(connector: Arc>, url: &ServoUrl, method: &Method, request_headers: &Headers, @@ -467,8 +440,14 @@ fn obtain_response(request_factory: &NetworkHttpRequestFactory, let connect_start = precise_time_ms(); - let request = try!(request_factory.create(url.clone(), method.clone(), - headers.clone())); + let request = HyperRequest::with_connector(method.clone(), + url.clone().into_url(), + &*connector); + let mut request = match request { + Ok(request) => request, + Err(e) => return Err(NetworkError::from_hyper_error(&url, e)), + }; + *request.headers_mut() = headers.clone(); let connect_end = precise_time_ms(); @@ -1090,10 +1069,6 @@ fn http_network_fetch(request: &Request, // TODO be able to tell if the connection is a failure // Step 4 - let factory = NetworkHttpRequestFactory { - connector: context.connector.clone(), - }; - let url = request.current_url(); let request_id = context.devtools_chan.as_ref().map(|_| { @@ -1104,7 +1079,7 @@ fn http_network_fetch(request: &Request, // do not. Once we support other kinds of fetches we'll need to be more fine grained here // since things like image fetches are classified differently by devtools let is_xhr = request.destination == Destination::None; - let wrapped_response = obtain_response(&factory, &url, &request.method, + let wrapped_response = obtain_response(context.connector.clone(), &url, &request.method, &request.headers, &request.body, &request.method, &request.pipeline_id, request.redirect_count + 1, diff --git a/components/net/lib.rs b/components/net/lib.rs index 34018dc6a65..1aa9e632c32 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -16,6 +16,8 @@ extern crate hyper_openssl; extern crate hyper_serde; extern crate immeta; extern crate ipc_channel; +#[macro_use] +extern crate lazy_static; #[macro_use] extern crate log; #[macro_use] #[no_link] extern crate matches; #[macro_use] @@ -24,6 +26,7 @@ extern crate mime_guess; extern crate msg; extern crate net_traits; extern crate openssl; +extern crate parse_hosts; extern crate profile_traits; extern crate serde; #[macro_use] @@ -47,6 +50,7 @@ pub mod cookie; pub mod cookie_storage; mod data_loader; pub mod filemanager_thread; +mod hosts; pub mod hsts; mod http_loader; pub mod image_cache; @@ -65,4 +69,5 @@ pub mod fetch { pub mod test { pub use chrome_loader::resolve_chrome_url; pub use http_loader::HttpState; + pub use hosts::{replace_host_table, parse_hostsfile}; } diff --git a/components/net/resource_thread.rs b/components/net/resource_thread.rs index 312b0ea45a6..44671cd8452 100644 --- a/components/net/resource_thread.rs +++ b/components/net/resource_thread.rs @@ -25,6 +25,8 @@ use net_traits::storage_thread::StorageThreadMsg; use profile_traits::time::ProfilerChan; use serde::{Deserialize, Serialize}; use serde_json; +use servo_config::opts; +use servo_config::resource_files::resources_dir_path; use servo_url::ServoUrl; use std::borrow::{Cow, ToOwned}; use std::collections::HashMap; @@ -108,13 +110,21 @@ fn create_resource_groups(config_dir: Option<&Path>) auth_cache: RwLock::new(auth_cache), hsts_list: RwLock::new(hsts_list), }; - let ssl_client = create_ssl_client("certs"); + + let ca_file = match opts::get().certificate_path { + Some(ref path) => PathBuf::from(path), + None => resources_dir_path() + .expect("Need certificate file to make network requests") + .join("certs"), + }; + let ssl_client = create_ssl_client(&ca_file); + let resource_group = ResourceGroup { http_state: Arc::new(http_state), ssl_client: ssl_client.clone(), connector: create_http_connector(ssl_client.clone()), }; - let private_ssl_client = create_ssl_client("certs"); + let private_ssl_client = create_ssl_client(&ca_file); let private_resource_group = ResourceGroup { http_state: Arc::new(HttpState::new()), ssl_client: private_ssl_client.clone(), diff --git a/components/net/websocket_loader.rs b/components/net/websocket_loader.rs index 8a66024f249..71178bbc7d9 100644 --- a/components/net/websocket_loader.rs +++ b/components/net/websocket_loader.rs @@ -4,6 +4,7 @@ use cookie::Cookie; use fetch::methods::{should_be_blocked_due_to_bad_port, should_be_blocked_due_to_nosniff}; +use hosts::replace_host; use http_loader::{HttpState, is_redirect_status, set_default_accept}; use http_loader::{set_default_accept_language, set_request_cookies}; use hyper::buffer::BufReader; @@ -16,7 +17,6 @@ use hyper::status::StatusCode; use hyper::version::HttpVersion; use net_traits::{CookieSource, MessageData, NetworkError, WebSocketCommunicate, WebSocketConnectData}; use net_traits::{WebSocketDomAction, WebSocketNetworkEvent}; -use net_traits::hosts::replace_host; use net_traits::request::{Destination, Type}; use servo_url::ServoUrl; use std::ascii::AsciiExt; diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml index 2d824212d6c..96c3739b77d 100644 --- a/components/net_traits/Cargo.toml +++ b/components/net_traits/Cargo.toml @@ -22,7 +22,6 @@ lazy_static = "0.2" log = "0.3.5" msg = {path = "../msg"} num-traits = "0.1.32" -parse-hosts = "0.3.0" serde = "0.9" serde_derive = "0.9" servo_config = {path = "../config", features = ["servo"]} diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs index 8966a7ce276..7f6df9eb9ff 100644 --- a/components/net_traits/lib.rs +++ b/components/net_traits/lib.rs @@ -22,7 +22,6 @@ extern crate lazy_static; extern crate log; extern crate msg; extern crate num_traits; -extern crate parse_hosts; extern crate serde; #[macro_use] extern crate serde_derive; @@ -51,7 +50,6 @@ use storage_thread::StorageThreadMsg; pub mod blob_url_store; pub mod filemanager_thread; -pub mod hosts; pub mod image_cache; pub mod net_error_list; pub mod pub_domains; diff --git a/tests/unit/net/fetch.rs b/tests/unit/net/fetch.rs index 73be2a5fbbd..09ddb7ce9bd 100644 --- a/tests/unit/net/fetch.rs +++ b/tests/unit/net/fetch.rs @@ -530,7 +530,8 @@ fn test_fetch_with_hsts() { //takes an address and something that implements hyper::net::Ssl let mut server = Server::https("0.0.0.0:0", ssl).unwrap().handle_threads(handler, 1).unwrap(); - let ssl_client = create_ssl_client("self_signed_certificate_for_testing.crt"); + let ca_file = resources_dir_path().unwrap().join("self_signed_certificate_for_testing.crt"); + let ssl_client = create_ssl_client(&ca_file); let connector = create_http_connector(ssl_client); let context = FetchContext { diff --git a/tests/unit/net/hsts.rs b/tests/unit/net/hsts.rs index 34913354ac1..eca9d2a8d27 100644 --- a/tests/unit/net/hsts.rs +++ b/tests/unit/net/hsts.rs @@ -6,7 +6,6 @@ use net::hsts::{HstsEntry, HstsList}; use net_traits::IncludeSubdomains; use std::collections::HashMap; use time; -use url::Url; #[test] fn test_hsts_entry_is_not_expired_when_it_has_no_timestamp() { diff --git a/tests/unit/net/http_loader.rs b/tests/unit/net/http_loader.rs index 30da574875e..e08ac0b9012 100644 --- a/tests/unit/net/http_loader.rs +++ b/tests/unit/net/http_loader.rs @@ -25,8 +25,8 @@ use msg::constellation_msg::TEST_PIPELINE_ID; use net::cookie::Cookie; use net::cookie_storage::CookieStorage; use net::resource_thread::AuthCacheEntry; +use net::test::replace_host_table; use net_traits::{CookieSource, NetworkError}; -use net_traits::hosts::replace_host_table; use net_traits::request::{Request, RequestInit, RequestMode, CredentialsMode, Destination}; use net_traits::response::ResponseBody; use new_fetch_context; diff --git a/tests/unit/net/lib.rs b/tests/unit/net/lib.rs index 6326faade4d..021db151fe4 100644 --- a/tests/unit/net/lib.rs +++ b/tests/unit/net/lib.rs @@ -42,6 +42,7 @@ use net::test::HttpState; use net_traits::FetchTaskTarget; use net_traits::request::Request; use net_traits::response::Response; +use servo_config::resource_files::resources_dir_path; use servo_url::ServoUrl; use std::sync::Arc; use std::sync::mpsc::{Sender, channel}; @@ -53,7 +54,8 @@ struct FetchResponseCollector { } fn new_fetch_context(dc: Option>) -> FetchContext { - let ssl_client = create_ssl_client("certs"); + let ca_file = resources_dir_path().unwrap().join("certs"); + let ssl_client = create_ssl_client(&ca_file); let connector = create_http_connector(ssl_client); FetchContext { state: Arc::new(HttpState::new()), diff --git a/tests/unit/net/resource_thread.rs b/tests/unit/net/resource_thread.rs index 5062917b8dc..8ad3081c224 100644 --- a/tests/unit/net/resource_thread.rs +++ b/tests/unit/net/resource_thread.rs @@ -4,12 +4,9 @@ use ipc_channel::ipc; use net::resource_thread::new_core_resource_thread; +use net::test::parse_hostsfile; use net_traits::CoreResourceMsg; -use net_traits::hosts::{host_replacement, parse_hostsfile}; use profile_traits::time::ProfilerChan; -use servo_url::ServoUrl; -use std::borrow::ToOwned; -use std::collections::HashMap; use std::net::IpAddr; fn ip(s: &str) -> IpAddr { @@ -143,19 +140,3 @@ fn test_parse_hostsfile_with_end_of_line_whitespace() assert_eq!(ip("2001:db8:0:0:0:ff00:42:8329"), *hosts_table.get("moz.foo.com").unwrap()); assert_eq!(ip("127.0.0.2"), *hosts_table.get("servo.test.server").unwrap()); } - -#[test] -fn test_replace_hosts() { - let mut host_table = HashMap::new(); - host_table.insert("foo.bar.com".to_owned(), ip("127.0.0.1")); - host_table.insert("servo.test.server".to_owned(), ip("127.0.0.2")); - - let url = ServoUrl::parse("http://foo.bar.com:8000/foo").unwrap(); - assert_eq!(host_replacement(&host_table, url).host_str().unwrap(), "127.0.0.1"); - - let url = ServoUrl::parse("http://servo.test.server").unwrap(); - assert_eq!(host_replacement(&host_table, url).host_str().unwrap(), "127.0.0.2"); - - let url = ServoUrl::parse("http://a.foo.bar.com").unwrap(); - assert_eq!(host_replacement(&host_table, url).host_str().unwrap(), "a.foo.bar.com"); -} diff --git a/tests/wpt/harness/wptrunner/browsers/servo.py b/tests/wpt/harness/wptrunner/browsers/servo.py index 2eeb5aaa158..639099a9dd7 100644 --- a/tests/wpt/harness/wptrunner/browsers/servo.py +++ b/tests/wpt/harness/wptrunner/browsers/servo.py @@ -32,7 +32,8 @@ def browser_kwargs(**kwargs): "debug_info": kwargs["debug_info"], "binary_args": kwargs["binary_args"], "user_stylesheets": kwargs.get("user_stylesheets"), - "render_backend": kwargs.get("servo_backend")} + "render_backend": kwargs.get("servo_backend"), + "ca_certificate_path": kwargs["ssl_env"].ca_cert_path()} def executor_kwargs(test_type, server_config, cache_manager, run_info_data, @@ -65,17 +66,19 @@ def render_arg(render_backend): class ServoBrowser(NullBrowser): def __init__(self, logger, binary, debug_info=None, binary_args=None, - user_stylesheets=None, render_backend="webrender"): + user_stylesheets=None, render_backend="webrender", ca_certificate_path=None): NullBrowser.__init__(self, logger) self.binary = binary self.debug_info = debug_info self.binary_args = binary_args or [] self.user_stylesheets = user_stylesheets or [] self.render_backend = render_backend + self.ca_certificate_path = ca_certificate_path def executor_browser(self): return ExecutorBrowser, {"binary": self.binary, "debug_info": self.debug_info, "binary_args": self.binary_args, "user_stylesheets": self.user_stylesheets, - "render_backend": self.render_backend} + "render_backend": self.render_backend, + "ca_certificate_path": self.ca_certificate_path} diff --git a/tests/wpt/harness/wptrunner/executors/executorservo.py b/tests/wpt/harness/wptrunner/executors/executorservo.py index b627223a7df..e4a10f55bfe 100644 --- a/tests/wpt/harness/wptrunner/executors/executorservo.py +++ b/tests/wpt/harness/wptrunner/executors/executorservo.py @@ -86,6 +86,8 @@ class ServoTestharnessExecutor(ProcessTestExecutor): args += ["--user-stylesheet", stylesheet] for pref, value in test.environment.get('prefs', {}).iteritems(): args += ["--pref", "%s=%s" % (pref, value)] + if self.browser.ca_certificate_path: + args += ["--certificate-path", self.browser.ca_certificate_path] args += self.browser.binary_args debug_args, command = browser_command(self.binary, args, self.debug_info) @@ -226,6 +228,9 @@ class ServoRefTestExecutor(ProcessTestExecutor): command += ["--resolution", viewport_size or "800x600"] + if self.browser.ca_certificate_path: + command += ["--certificate-path", self.browser.ca_certificate_path] + if dpi: command += ["--device-pixel-ratio", dpi] diff --git a/tests/wpt/metadata/cors/basic.htm.ini b/tests/wpt/metadata/cors/basic.htm.ini deleted file mode 100644 index 8653d98cf33..00000000000 --- a/tests/wpt/metadata/cors/basic.htm.ini +++ /dev/null @@ -1,8 +0,0 @@ -[basic.htm] - type: testharness - [Cross domain different protocol] - expected: FAIL - - [Same domain different protocol different port] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/api/basic/mode-same-origin-worker.html.ini b/tests/wpt/metadata/fetch/api/basic/mode-same-origin-worker.html.ini index c5ccd4a16f4..6ef33f97272 100644 --- a/tests/wpt/metadata/fetch/api/basic/mode-same-origin-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/basic/mode-same-origin-worker.html.ini @@ -3,3 +3,6 @@ [Fetch http://www1.web-platform.test:8000/fetch/api/resources/top.txt with same-origin mode] expected: FAIL + [Fetch https://web-platform.test:8443/fetch/api/resources/top.txt with same-origin mode] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/basic/mode-same-origin.html.ini b/tests/wpt/metadata/fetch/api/basic/mode-same-origin.html.ini index ed70030d4dc..8e906895520 100644 --- a/tests/wpt/metadata/fetch/api/basic/mode-same-origin.html.ini +++ b/tests/wpt/metadata/fetch/api/basic/mode-same-origin.html.ini @@ -3,3 +3,6 @@ [Fetch http://www1.web-platform.test:8000/fetch/api/resources/top.txt with same-origin mode] expected: FAIL + [Fetch https://web-platform.test:8443/fetch/api/resources/top.txt with same-origin mode] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-basic-worker.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-basic-worker.html.ini index 85f5ab41ac1..77e557902f2 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-basic-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-basic-worker.html.ini @@ -39,3 +39,9 @@ [Cross domain different protocol [cors mode\]] expected: FAIL + [Same domain different protocol different port [server forbid CORS\]] + expected: FAIL + + [Cross domain different protocol [server forbid CORS\]] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-basic.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-basic.html.ini index 0b042261e06..efbdde07df0 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-basic.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-basic.html.ini @@ -39,3 +39,9 @@ [Cross domain different protocol [cors mode\]] expected: FAIL + [Same domain different protocol different port [server forbid CORS\]] + expected: FAIL + + [Cross domain different protocol [server forbid CORS\]] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-no-preflight-worker.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-no-preflight-worker.html.ini deleted file mode 100644 index 1f9dd1a8bdb..00000000000 --- a/tests/wpt/metadata/fetch/api/cors/cors-no-preflight-worker.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[cors-no-preflight-worker.html] - type: testharness - [Cross domain different protocol [GET\]] - expected: FAIL - - [Same domain different protocol different port [GET\]] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/api/cors/cors-no-preflight.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-no-preflight.html.ini deleted file mode 100644 index 5c35af97915..00000000000 --- a/tests/wpt/metadata/fetch/api/cors/cors-no-preflight.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[cors-no-preflight.html] - type: testharness - [Cross domain different protocol [GET\]] - expected: FAIL - - [Same domain different protocol different port [GET\]] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/api/cors/cors-origin-worker.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-origin-worker.html.ini index b2891aad31a..7d62c9b5ec8 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-origin-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-origin-worker.html.ini @@ -9,12 +9,6 @@ [Cross domain different port [origin KO\]] expected: FAIL - [Cross domain different protocol [origin OK\]] - expected: FAIL - - [Same domain different protocol different port [origin OK\]] - expected: FAIL - [Cross domain [POST\] [origin KO\]] expected: FAIL @@ -27,3 +21,9 @@ [Allowed origin: "" [origin KO\]] expected: FAIL + [Cross domain different protocol [origin KO\]] + expected: FAIL + + [Same domain different protocol different port [origin KO\]] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-origin.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-origin.html.ini index 19ca6c11344..edd4929042a 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-origin.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-origin.html.ini @@ -9,12 +9,6 @@ [Cross domain different port [origin KO\]] expected: FAIL - [Cross domain different protocol [origin OK\]] - expected: FAIL - - [Same domain different protocol different port [origin OK\]] - expected: FAIL - [Cross domain [POST\] [origin KO\]] expected: FAIL @@ -27,3 +21,9 @@ [Allowed origin: "" [origin KO\]] expected: FAIL + [Cross domain different protocol [origin KO\]] + expected: FAIL + + [Same domain different protocol different port [origin KO\]] + expected: FAIL + diff --git a/tests/wpt/metadata/html/webappapis/scripting/events/messageevent-constructor.https.html.ini b/tests/wpt/metadata/html/webappapis/scripting/events/messageevent-constructor.https.html.ini index be450cad198..16104b329e4 100644 --- a/tests/wpt/metadata/html/webappapis/scripting/events/messageevent-constructor.https.html.ini +++ b/tests/wpt/metadata/html/webappapis/scripting/events/messageevent-constructor.https.html.ini @@ -1,3 +1,23 @@ [messageevent-constructor.https.html] type: testharness - expected: TIMEOUT + [Default event values] + expected: FAIL + + [MessageEventInit dictionary] + expected: FAIL + + [Passing null for ports member] + expected: FAIL + + [ports attribute should be a FrozenArray] + expected: FAIL + + [initMessageEvent operation] + expected: FAIL + + [All parameters to initMessageEvent should be mandatory] + expected: FAIL + + [Passing ServiceWorker for source member] + expected: FAIL + diff --git a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.serviceworker.https.html.ini b/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.serviceworker.https.html.ini index 48d4cc68a34..62def3928b9 100644 --- a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.serviceworker.https.html.ini +++ b/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-events.serviceworker.https.html.ini @@ -1,3 +1,5 @@ [promise-rejection-events.serviceworker.https.html] type: testharness - expected: TIMEOUT + [Service worker setup] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 23230f046a5..2b3003dc673 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index f414f0c3ad5..91375632d82 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 4b326bafaf2..fd621596869 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index b10a00e8d86..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c4ee3181bbb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d94216fc446..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 86c74ae2daf..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index cc51e438593..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2054a7a0421..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index d5ccce6d65b..5b322864bf6 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 302d79bff12..59d49eb924d 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index ad526b14991..0ef333b8c79 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c8044a2e25f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c98fa074f7a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7141fbbd49f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a1cdc02b771..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index caa94f169ed..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index fd806c372ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..d35262820c7 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini new file mode 100644 index 00000000000..a49f98202fb --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.no-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..fc54928ee94 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini index 3523217b81d..97d4540701a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini index d7f5a039ebf..2bd5fabef3d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini index b032bd4e932..483ff5d7e64 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini index 389ab7760a3..4a1fab4060c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini index 51f66e1d7d6..26ec655164a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.no-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini index 5e50b1eee06..2eec6401c45 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..6d6d60400ed --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini new file mode 100644 index 00000000000..df71adfba09 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.no-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..4e444c8e533 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[upgrade-protocol.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini index f843e6b0ce0..db6fe2446ac 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini index ef363e8e699..f536f1ff8b2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini index 5ae2b5cdcdc..ef87fd00705 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini index c28390b790c..cef0e9929c4 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini index 6147bf3526f..5607a14c367 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.no-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini index 5a317c7258b..50692dc27e9 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8fbf10f0c4f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f4cb779d3c8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index b111d175992..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f4b52a80dbb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 653f7a249b3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 95b86841535..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 93347c0653b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index a857df9ff12..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e495b1c5596..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3fdc40485c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 3653052dad7..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1bff5d0018f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 8488a035493..61119c71a24 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index ac35eee583e..3ffd0cf8e2d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index eabca58f8ea..2fa87ad2a07 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini similarity index 67% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini index 0d233e5647a..5624033b1b1 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini similarity index 66% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini index 0904b71760e..26f40de415b 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini similarity index 67% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini index 09c9f773f82..25317b0d2a2 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 69313c3d3e2..05a4b601d63 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index b2e4228fff2..9eceba897ae 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 2f2eccaf982..bd73ee83bc1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini similarity index 67% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini index c18869f62ba..f04d85202b2 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini similarity index 66% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini index 838688a6bca..4b5805d0141 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini similarity index 67% rename from tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini index 42c403799cf..e7d45335c48 100644 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: ERROR + [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/cross-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/cross-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/cross-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/same-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/same-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-only/meta-referrer/same-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini index ccc77e50b62..e4793698af4 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini index 64dec2cb883..6fc536d83a3 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini index b8740f17198..762144640da 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index be666b7f810..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index ae62e91b8c7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index bb4fa236575..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4a9ccf0d68f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 444985c4dcf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1c4e7070f25..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini index 03981fa9a2c..dd064a7218a 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini index c0626d3cd32..6a8f97e721e 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini index 4e8c665bf45..381a29f9463 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini index 94b93825ee1..ec66e9b234a 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini index 6cf245d2b7b..b8b5d8cb194 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini index aaa1e7f6db0..9e64f8858e3 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini index eccfce7214c..ebccb828fe2 100644 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 27fc456cac6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 9c5602efa8c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 01540878472..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5cb902fbc78..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8d3c19bea35..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 494bdb1a637..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index d58cd3f288c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index aa6c5a8a885..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index fb540d5ac42..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6ae5da8fb3f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index bc4cbe85ea7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0992a1d1ab8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index a45c8558bc0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index b7417294176..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..d87dd4e4eee --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[cross-origin.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini new file mode 100644 index 00000000000..b0ea24eabb5 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[cross-origin.no-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..c617e8b96c4 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[cross-origin.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini index 611839b3a3d..735eac8227e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini index 8de34cab02f..bbaaf66c355 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini index 4f2f3e630b3..681f62b60ca 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini index 4330dc9125e..ccef10efd22 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini index bacc584a4e6..8fd6906acc5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.no-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini similarity index 50% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini index 7fa94339a30..f61e25cba0d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..1e60559836a --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-downgrade.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini new file mode 100644 index 00000000000..fa7bc679eba --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-downgrade.no-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..90c7190b2a6 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-downgrade.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..6558cce0595 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-insecure.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..fc54d662c9c --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-upgrade.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini new file mode 100644 index 00000000000..2ee995be197 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-upgrade.no-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..6d1ed32c1f8 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[same-origin-upgrade.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index 667cee68e23..66027ab9004 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini index 60f04e09f1f..af3d7e5db7d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index 08ea69289c7..218a54983f7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index e20b6e93eb8..59e63fe644d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index 058aa9a766d..a83a421903f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini index f443e012295..3b95a0d0c6c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index c274d016f72..b86a991de81 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index f5b0185cc9f..4403bec3ac6 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini similarity index 52% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini index 8e13f4f6a7a..661d1453ede 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index 27595b9614f..e11fbd9268d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index ef3f743f3ba..99694efe0f2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index 8dbd24c5672..859f78d9fe5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini index eeaa3f90b7c..c2b7eedffa8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini similarity index 51% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index d3ad6b7f0f0..3e6e00d0141 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index eec31a92dfe..dc139384e94 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index fdc8c8e4d61..564185fce11 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index 071d1254096..0d0044da1bb 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 08d607a6b0f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 30c8df96f23..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index f30cc120fca..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index e57f02f19d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 00b9d10f3ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 60d50c506f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index 8af5a559a0e..d526cede1fe 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index 45d9817b973..8dc7427f3f1 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index 35927dab5e8..5484b69d215 100644 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7e90d7ef0ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index a52edf8a18f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6a4d4d2fcc5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index a9ce2c1ad2e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 196ced75a08..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 89de88721a9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index a93e89af5c9..93c86c99dfb 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index bfabfe379ca..0714e29bacf 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index 135d7ef9e4b..d3636c967a9 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f1ce871fd1b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index c48f65bf9e5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index b39540d494d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 82241bc286a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 36aba020c4a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c7e77366b63..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index c7ec0d7e161..b39e42dfdac 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index 82c6d0ba970..0ef34586b5c 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index 449b6ed3997..70a3aafc8e8 100644 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4c726957d19..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 85990819750..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 18da84313a9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 31b9d011457..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index df312380bf4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 95d1c987e69..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 178c2d89598..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 26509a70dcd..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 9610d5eb559..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index aa2b25b4e21..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 1e9591de58b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 72923f1a51b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8087c20b202..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 83001e583dc..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index e5acf187eea..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 9becbc9caaf..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 34c593acb7b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 74b30a154b7..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8d7362a709e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 9d0b06a34f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index a8f02781547..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index c194618335e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index eaf29f29a5f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index b488c51c83d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 27db72207c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 235155dceee..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8e52933843e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/xhr-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 24cb9a31fff..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4b9c14b81f8..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4c5732cee74..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/xhr-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 5a89a25fcd7..cf967852425 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index c128043e5bd..9c3299aeb38 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 8884bc55767..230ced7ee78 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 62a3ad297c6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8cdd582532f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1eac8d3e77c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 580c6efec27..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 76bd9ace891..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index c23091d2554..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 0416cf7b094..ad7e315ebf1 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 5f9d1c53bf5..aa5ef1fcb7a 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 9e3941228ad..7e3b99e44c4 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index aae2dfeb2ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index e1945afa6be..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index cccd6731fb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3175044d9ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 496a7ecdb4c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index b87594d4f01..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index d5c1d27a567..fad6eda38c7 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 367d99cbbc7..603770a709d 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 07c127768c0..d60393cdc52 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 49fa6488bb8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 0a03f864f4b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 75853f5da21..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f4f91a151c5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8f32f494122..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 964b8c91053..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 5987926e09a..977819780ef 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 2fc5069b2cd..66a6cbea13d 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 5d3e97c6fa9..eb40ef0ea18 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9e401a82e6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3efe91fd2b4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3aadfbb2e62..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 28a49843afb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c389157c85c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 55ae5a2cbe5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 5a89a25fcd7..cf967852425 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index c128043e5bd..9c3299aeb38 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 8884bc55767..230ced7ee78 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 62a3ad297c6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8cdd582532f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1eac8d3e77c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 580c6efec27..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 76bd9ace891..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index c23091d2554..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 0416cf7b094..ad7e315ebf1 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 5f9d1c53bf5..aa5ef1fcb7a 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 9e3941228ad..7e3b99e44c4 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index aae2dfeb2ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index e1945afa6be..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index cccd6731fb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3175044d9ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 496a7ecdb4c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index b87594d4f01..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index d5c1d27a567..fad6eda38c7 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 367d99cbbc7..603770a709d 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 07c127768c0..d60393cdc52 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 49fa6488bb8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 0a03f864f4b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 75853f5da21..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f4f91a151c5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8f32f494122..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 964b8c91053..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini index 5987926e09a..977819780ef 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini index 2fc5069b2cd..66a6cbea13d 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini index 5d3e97c6fa9..eb40ef0ea18 100644 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [upgrade-protocol.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9e401a82e6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3efe91fd2b4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3aadfbb2e62..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 28a49843afb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c389157c85c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 55ae5a2cbe5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/xhr-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via xhr-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index d00e6e22ff6..2622de96348 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index 8d87280c79f..0aeefea5e53 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index deab0ea3e40..cbc1265af35 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 02e341ff8cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 795c697e4c0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5de3aae2d72..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index dd3a064397c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 7739b49f4eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 034b14a6f60..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini index 2ba51da7d5d..f1cebfb4127 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini index 063f2d051a6..06951f31294 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini index 16e673924b5..7655368a148 100644 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/__dir__.ini deleted file mode 100644 index e3bc9eaed70..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/4767 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index dea01ab595d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index cb1baa66632..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1baf7f38f04..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via script-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/__dir__.ini deleted file mode 100644 index ce7e7f59d8e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: https://github.com/servo/servo/issues/13503 diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f4c7dfa1dbd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 9262873f31e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 96c57f6daf2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via xhr-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..659c07f1e1d --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini new file mode 100644 index 00000000000..f7c368cf7f3 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.no-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..e3b6fa2d790 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 1ff8ce818c6..7d8126ae8b1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 22fb74a2781..c4dde041832 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 488d29ef46d..98d8056639f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..c1c262c54bb --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.keep-origin-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] + expected: NOTRUN + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini new file mode 100644 index 00000000000..fe475807b7a --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.no-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] + expected: NOTRUN + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..ad3eb60dde4 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.swap-origin-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] + expected: NOTRUN + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/__dir__.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..989cfc7abaa --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.keep-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini new file mode 100644 index 00000000000..0251ece06ad --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.no-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..e926c546ad2 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini @@ -0,0 +1,5 @@ +[generic.swap-origin-redirect.http.html] + type: testharness + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: FAIL + diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 5d94291eb9a..f46d36edec8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 9299241a4e1..f4e7b2f5b0c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini similarity index 95% rename from tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini rename to tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index a075d157d77..18b5776cc11 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,6 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR + expected: TIMEOUT [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] expected: NOTRUN diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini new file mode 100644 index 00000000000..9ce4c02381b --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.keep-origin-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] + expected: NOTRUN + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini new file mode 100644 index 00000000000..00d8d741a0e --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.no-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] + expected: NOTRUN + diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini new file mode 100644 index 00000000000..fb91a36bd97 --- /dev/null +++ b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini @@ -0,0 +1,6 @@ +[generic.swap-origin-redirect.http.html] + type: testharness + expected: ERROR + [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] + expected: NOTRUN + diff --git a/tests/wpt/mozilla/meta/MANIFEST.json b/tests/wpt/mozilla/meta/MANIFEST.json index 3e7ec3422b6..870984d2d50 100644 --- a/tests/wpt/mozilla/meta/MANIFEST.json +++ b/tests/wpt/mozilla/meta/MANIFEST.json @@ -11230,12 +11230,6 @@ {} ] ], - "mozilla/bad_cert_detected.html": [ - [ - "/_mozilla/mozilla/bad_cert_detected.html", - {} - ] - ], "mozilla/binding_keyword.html": [ [ "/_mozilla/mozilla/binding_keyword.html", @@ -19650,6 +19644,12 @@ {} ] ], + "mozilla/secure.https.html": [ + [ + "/_mozilla/mozilla/secure.https.html", + {} + ] + ], "mozilla/send-arraybuffer.htm": [ [ "/_mozilla/mozilla/send-arraybuffer.htm", @@ -24277,10 +24277,6 @@ "170d51460da58c16f5cf94ecda18f18a1c18c116", "support" ], - "mozilla/bad_cert_detected.html": [ - "5d49332d2a6c823bfaf378f84641ce8bba5c8210", - "testharness" - ], "mozilla/binding_keyword.html": [ "c79aa6d506fbabbed0f6f31d1b8600ea6ba8ff41", "testharness" @@ -31149,6 +31145,10 @@ "6cb4fd833674380c660c0f5ff0f5dd5cb18ed1dd", "support" ], + "mozilla/secure.https.html": [ + "fc757effccd93c56ab79b0510a01ae815b7a8714", + "testharness" + ], "mozilla/send-arraybuffer.htm": [ "dc04c6f888458b28bd29a3a43f4dab7f12e72a33", "testharness" diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3fbf793017c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 5725d94996f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a95f8104ff7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8a3484a5c0f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 07dd8402ed5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index f7b86a1d7d1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 790d6b228d7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 930cc8cc11f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index db309f6e28e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4240bf0b470..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 47b8c6a203a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 35867391e26..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7f5dcc22089..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 61b55be9827..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 32d3843a461..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f56ef8adbba..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 40f2a63e730..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3d6fd433573..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4701722ec04..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 521df8a1b07..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 53b70c12d94..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index d4b635ce63b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 01137d6aa87..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6173c37cfbd..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 71c6db96aac..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 89e751e321f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5bd8722c23a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1ee4f5f3040..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 0ac81883ae3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index f03c2773c06..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2a08f0000f1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 694959691d3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d89627acf73..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 65fa3c81967..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index e9d3530d85c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7effcc90102..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4d1c464e1ce..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index ae91e2d7386..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1022b3c8284..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 60bb60a1216..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 21029ba87b4..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 28b7bf9ee9a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c4804478079..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8647e42c3bc..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 89d77582b79..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 49d75a10521..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c42f8b182ab..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index bd00b0fc983..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1522a2fca19..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8409f0f1517..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 93027a3157f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3523217b81d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index d7f5a039ebf..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index b032bd4e932..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 664767cdbf1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 189c7028597..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a6013e21123..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 01ea405804b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index f20b94cbfb0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 05ddfc72b64..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f843e6b0ce0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index ef363e8e699..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5ae2b5cdcdc..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cc8a0f87608..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fb52e7b863c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 44026f69721..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 80997a5ab7b..b4dd011ee48 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 391ea736c36..297c31b8706 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index f3df479daab..9bb73226858 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 55716d574ae..fe77b9d49e9 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 3d073b9b318..ffae99993b6 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index e6ed38aab44..fa971027899 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index f4b69e0bd21..3167485f37b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini index 790547a3cb4..130068cc3d1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index cea4010c1fb..3bfcd2a1997 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index cd112950989..d795d229def 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 8ae2b015d39..9fef9aa38b5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index 2c25814d77f..dbcad7dbbad 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 363f3303671..721e74f4a03 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 27ac8ac9f75..a61c0148e4b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 722ebbd6e01..49875a6991d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index 094cba18fb3..95263583ffe 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini index e81c74cafce..710839dbf4a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index a068d545c67..dad683d6fe1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5003426ff2c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 7e6b1b9877c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 134b396379e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5ba4beb7c02..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 49cacbfddec..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index f71a1d914c3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index d5795172b43..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 3ac446ea64e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0fe0f4eea03..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index a7265203246..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 1f53171de2a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index ba891f92dba..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index fc1b7001fb0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 923c89ec422..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index af4d51c6ea0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0f218286533..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 8c759b4fa2f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 98aab9b3bd3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 1c8832aec8c..18cc91557c3 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 18553d42ab4..b50e8a548b4 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index 20c6df7181a..8a348c82f47 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 7eb99239ceb..aa5b4ad593a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index dc07e502de3..c2be8220516 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index a771f7429e8..873e2bdcbd5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index eb22663e53d..2b26c5271a6 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini index 5ab343296f4..69678ea3fc5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index 7e05a814964..c4e2221408b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 409897a975c..ed6f971c0d2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 1d6e1c1fe57..f687a1b7e55 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index c392b422767..739a4659589 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index fbc094db14f..72e4b86394f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index b8cb9420419..654d033124b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 9b5ebd55291..e3dddc4abca 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index afe5338a5ee..21baf55d21b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini index f2e7d65418d..20f050a2806 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index 544ecd6592f..bafc693a455 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b70573315f0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 0918c8d92ba..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 816cbd641f4..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b53a0e6318b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index a7a97b9921d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 84db8ab8705..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9f95210745d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 0f3134a73a4..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 995ee3ee080..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9542e0a7b64..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index cf085ff04b9..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3690c805ea8..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9f6c941b68c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 2ddead54489..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e950d416a7a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 48cc33cb86c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 10663321ec9..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d63149cef15..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index fe0150442f0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 0a139c71f79..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d107936f5a2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the rel-noreferrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index e5b22967c39..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 995f8914d63..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 14cd819161d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the rel-noreferrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini index 49f6ef7ba27..2c84e0011a9 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini index 441681a46b5..fe4702cbc73 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini index c6911382991..79ca00252d7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini index 56a46c13534..1dcd38315ff 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini index efa882a54c8..46685b6fddc 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini index 9b808033791..36682797611 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini index 086034abc0e..cce018b3f49 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini index 9985cdbddf9..24301e64279 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini index 4704596c51e..c3e5112c916 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index 31ffe5ca164..20a50519515 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini index ac33169c755..d7f969ee38e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index c668c4fe68c..a7bd1d64bca 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 18072bd8209..ccfa0c20542 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index da57cdcdc19..81475477a5b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini index 757ce6d9ecf..d8c85528a3f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index 2182a32faaa..eea2a9e7e2f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index 87e580221f3..4552d54437a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini index a542b21878c..58ddf2b87b5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index d8e8aea1f8c..83bff1b06e5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index f832fe7a754..eb50e15b9e0 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index 21131a7ef63..29fd2be7507 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini index 8ae2f91dec7..09a5fd7f2d8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index c8887a29de7..821d487f9a8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index 6da88c38239..28c74aa74e1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini index 2e7bad284af..03bfe73cc57 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index bdc9ec1db2c..8e7b08dfad2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 623da2035e6..3dbe9405897 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index d62bdfea6dc..eecbda2c8ad 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini index 9ee645d54e0..8a0b9e59963 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index fc31e0cb56a..98384d454c8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index fd2ff6d6784..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 98bcaca66ee..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8feb6c09943..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2a2ab7e9605..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index d5c330450a7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 109a328611f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 69ebc3b3ec3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index a728cfb5763..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0db7a59ba38..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 987c5160faa..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4fd74b4d0c0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index dd2f0834d90..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index f22957656ec..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5352285d445..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index aa244f1d3cf..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 198ef93a340..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4aeda7a2021..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index fb872b0717e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 2a7f2a84135..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1e217a2cd5d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 25a553f933c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 1d155a48087..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index fcc969eace9..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7c4fcc5db84..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index c5098a9d7c2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 5105cb31c0d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index cd4367a1985..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini index dc897a7040d..fab97a17a1b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini index c06ea8fcc80..24102d49616 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini index 188e8165934..538b14568ac 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini index 97bb96b0ce7..e23bc8919f8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini index 1f222096c9d..95200066365 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini index 94347c1fa15..96a61fe3d6a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini index 1420d31b24d..06d1995336c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini index cf83e40c504..158dad674c8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini index 3bbca89e003..6bb8ffee0ea 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index ebb173b57c3..0e01d6773e6 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini index 7ff2fbb2fb3..ca1e8616686 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index 674c9d88faa..c2582454ab0 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index ccea2caf737..ac1e3ceb467 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index 60079fdb5fc..7e8b7638520 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini index 2b1cdc80dc3..8905c1f19d5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index 4e842a05679..ef78600df1b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index fce729fb8c0..3bdeb94127a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini index 3f713480a76..480e06994a5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index d9f97b90e6d..461210460f0 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index be634ec22ee..4fe8e03e38f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index b1e99964cfd..3aedbcdc9d5 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini index dfa61163ae0..91bdd8bfcd8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index 33929677cf2..d2bcad82be8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini index 9f89bdf8b00..399aebdf845 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini index c8600cce581..2410cf0f699 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini index 86413b7c890..8d168d8e214 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-downgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index da4309c2a29..f09eadaca0d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini index a37f43a0f58..0a9f698803d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini index 0a728baf579..bfc2a60e824 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini index 62d60cd1374..a3330d539b3 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-upgrade.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0f4215c381a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 3c7427dbd21..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 85048322a01..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index e932cb8250e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index a358c443efd..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 11f2713441c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index a5b335df3a8..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 9471d529827..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 721eff2eb86..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 61e8a31dab6..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 46f9f274698..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 340930a7867..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index fedc63c2232..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 1e411e72251..a6fda7f430e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 4be334d9a3f..f5d595c6545 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index e9a92542b99..4cfb3119a0e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index a57e7b46d38..44db67618fc 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 676b7ed9c76..2dfb453f3c1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 7691443bbb0..ffbff083d33 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index 3c042c647de..ce3e880354b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini index 986b6781dbd..2289990d498 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index d1244845cc6..9fc54e85758 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 4b2ad37b7c1..b91cd8cfca7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 778922b76ec..c861690d136 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index 0e604ee5949..a611d90d49c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 380b48684cd..18e39adc570 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index aa93b921fb2..7bfe801ee1f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 18e4cbb365c..539f11d0eec 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index 85c0efb8fce..4526b3b24b2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini index b9d41502ee9..bfe391973bb 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index 997f18e51ae..47682921f5f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0190251db1d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index e87d2c349e5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0162dfff19b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 62b591c38a5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 4c28991e0a3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2a8b2d9677a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 6feca1103f0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 51e5b99595d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d5932db6ca5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1970cafb02b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 7e36e93c16b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index ee618ac2315..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f1632ef15c1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index afc1d2c4942..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 91cc3ddfb3e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1b034c16b2d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 3d02d0db0ad..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 60d316f1ba2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 0a9f34c4c94..dcbcc11e90d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 2cfe55c35b0..0b1d57d542e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index 1a06e64eb1e..70cd505a2e1 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index eb7d1017492..602ea74cfaa 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 6abf8bbf7f5..bb502a70e90 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index b88d216923e..d2055141856 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index a512f7dca9d..97e4dd1e130 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini index 865284e84b4..8040747e386 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index 7a55d73862a..d13f59c327d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini index 57ad336a4bb..ed6e688f984 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini index 24523b1c7d2..0764ba3488c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini index 3d4a919fdb8..31dc0a662e0 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini index 1888a1758b1..b1f9ac48d03 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini index 365330861e8..34099172232 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini index 129512b637b..f4bfa3470e7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini index ea3537674ae..14ea4b12823 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini index 725c2616a56..97a1e81e3a7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini index 375c124536d..bb837eacdcc 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [generic.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 75017182745..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 23587bd154a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 9ff72fa7617..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 90ee5ca1fa3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 16e856a7d46..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6616df93bbe..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 90efa0d0ec1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 60348d7978a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 918dec3c704..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 29cd86430f8..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index c5fc89cbc6c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2e0c86f0984..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 32a8d561b73..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 314a6ed3433..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 07cbf044544..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c36354e1218..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 32fbdd1be8c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d3f33cc7eed..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini index 08973f74136..132705e7044 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini index cac08331e12..768edf67219 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini index ad76a077885..ac548cb073b 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini index 54eb563bac5..58fef41694c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini index d2aa836aa7d..4cc45e76e5f 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini index 4ee2ec629a2..3e97d244a22 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini index c317fadcc3c..0a0937dd370 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini index 5876e9b66b2..01adec90b58 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini index 67ec78e7e2c..dc59f194275 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 2eafde98b14..7d281086cd7 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 5fb75af7e66..b7c8de6922e 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index dc3ae11ca4c..c5c45b7d4fb 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 550d9742b5a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 32f816b87d4..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index be13c481990..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3a9de157e34..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index fd29c310a11..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 500ee3a4c83..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 195d8a993ab..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index e8bbcbc3781..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7eec19d482b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 53683c59773..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5da6b778bab..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 234946bca26..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini index 85d263de21b..18e1ed66808 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini index 721c3dcfbcf..d812732462d 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini index dfa125107db..6ec40c483a2 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini index 9a03353dfac..6c0965c61e4 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini index d6ba017e0c1..05ef7b708be 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini index bb2eda3d519..5365dafc6f8 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini index a2fa907f5a2..725864345ae 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.keep-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini index 501da9ee390..bbd8dbd97bd 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.no-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini index f4afb7fcef7..aa045351636 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [cross-origin.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 254ddc059fd..6f9482fff4a 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index d8e8aeb21ef..adedbbd7384 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: ERROR [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini index 26cbc623f1a..f6b4634cf0c 100644 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini @@ -1,6 +1,5 @@ [same-origin-insecure.swap-origin-redirect.http.html] type: testharness - expected: TIMEOUT [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN + expected: FAIL diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index bc1e5404a8a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 6e9806d590d..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 286c484d310..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2cc93659f5a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index c43380e9aea..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5d7089e6623..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 6f6a1906e6b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index c6c0e04b392..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0f38d69b463..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 709e09299d2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index af8330dd16f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8369f22e345..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 21923253063..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index d6c3eaf4167..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8856cf0c0bb..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f38d524bc20..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 924f16a2bf5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 650581c6db2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2c1f2c16bf2..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index aa6e03b2ce7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index cf099dd9220..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 60b2c64527a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 4043164af69..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index f0d1982982b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9d7ca680799..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 2877fad090e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 05f793855af..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5d6e7f8f72f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index fec4f63fc0a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index bab28f82ac8..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5d32ed871c5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 2d73604ffc0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4ca18fa5f50..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b80d2c97b8e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index ced93450d46..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1fa7e0e227e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0fe8cc83edb..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 343d130f446..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7971c4207db..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 88bdb6a1153..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 9c1343dcac9..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c1eba098cb0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5b2da0d1ded..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 500fc3c2fc1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 30bc4017cca..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5ae0f705925..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 93080d5d475..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e5f0f1679b7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1c4635290cb..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 3b09dadf314..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 462659bd713..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index fec6320f111..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 2e397915672..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c54173a645e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f550d571c80..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index aab9e513fd7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3e1a1f08d37..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8b61c027131..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 0205db6f7ec..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c6f40bebd7f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3bf3e6e6e83..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 004b521b870..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c59b71dd1bc..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7879a1ac8d6..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 1b4cc47d529..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 89b94cf7ed7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b8444594a2b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 879d1429c4a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 44ee269caf8..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 599ec04dcaf..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 9da942458de..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 051f05578c1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1b9c66880bc..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f1929e90f80..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2216e541c6e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2d18e1f4272..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 6781d8825cd..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4ab00e106ef..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 389ab7760a3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 51f66e1d7d6..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5a317c7258b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3fbf793017c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 5725d94996f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a95f8104ff7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8a3484a5c0f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 07dd8402ed5..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index f7b86a1d7d1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 790d6b228d7..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 930cc8cc11f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index db309f6e28e..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4240bf0b470..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 47b8c6a203a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 35867391e26..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7f5dcc22089..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 61b55be9827..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 32d3843a461..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c28390b790c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 6147bf3526f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5e50b1eee06..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f56ef8adbba..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 40f2a63e730..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3d6fd433573..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4701722ec04..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 521df8a1b07..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 53b70c12d94..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index d4b635ce63b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 01137d6aa87..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6173c37cfbd..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 71c6db96aac..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 89e751e321f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5bd8722c23a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1ee4f5f3040..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 0ac81883ae3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index f03c2773c06..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2a08f0000f1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 694959691d3..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d89627acf73..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 65fa3c81967..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index e9d3530d85c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7effcc90102..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4d1c464e1ce..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index ae91e2d7386..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1022b3c8284..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 60bb60a1216..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 21029ba87b4..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 28b7bf9ee9a..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c4804478079..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8647e42c3bc..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 89d77582b79..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 49d75a10521..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c42f8b182ab..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index bd00b0fc983..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-csp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1522a2fca19..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8409f0f1517..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 93027a3157f..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 664767cdbf1..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 189c7028597..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a6013e21123..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 01ea405804b..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index f20b94cbfb0..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 05ddfc72b64..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cc8a0f87608..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fb52e7b863c..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 44026f69721..00000000000 --- a/tests/wpt/mozilla/meta/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via link-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/mozilla/tests/mozilla/bad_cert_detected.html b/tests/wpt/mozilla/tests/mozilla/bad_cert_detected.html deleted file mode 100644 index 7b79c46b48d..00000000000 --- a/tests/wpt/mozilla/tests/mozilla/bad_cert_detected.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/tests/wpt/mozilla/tests/mozilla/secure.https.html b/tests/wpt/mozilla/tests/mozilla/secure.https.html new file mode 100644 index 00000000000..3b49f149b65 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/secure.https.html @@ -0,0 +1,8 @@ + + + + +