diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-01-15 16:06:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 16:06:35 -0500 |
commit | 4f45eea1250b0239704be774db23a14e54606464 (patch) | |
tree | 37d279708adc161864c64daa8f3791aa249dc7f0 | |
parent | fde83f733defe87c5450a59ab3d7bfa2bdc4a38a (diff) | |
parent | 6404a0ef530a28b30c8a52fe55c34cc45204ca3b (diff) | |
download | servo-4f45eea1250b0239704be774db23a14e54606464.tar.gz servo-4f45eea1250b0239704be774db23a14e54606464.zip |
Auto merge of #22616 - jdm:google-decode, r=nox
Fix brotli decoding
This replaces our current decoding setup by https://github.com/seanmonstar/reqwest/blob/master/src/async_impl/decoder.rs, and integrates brotli and deflate decoding to maintain our existing support.
---
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #22228
- [x] There are tests for these changes
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22616)
<!-- Reviewable:end -->
-rw-r--r-- | Cargo.lock | 33 | ||||
-rw-r--r-- | components/net/Cargo.toml | 2 | ||||
-rw-r--r-- | components/net/connector.rs | 106 | ||||
-rw-r--r-- | components/net/decoder.rs | 483 | ||||
-rw-r--r-- | components/net/http_loader.rs | 61 | ||||
-rw-r--r-- | components/net/lib.rs | 1 | ||||
-rw-r--r-- | servo-tidy.toml | 2 | ||||
-rw-r--r-- | tests/wpt/metadata/xhr/getresponseheader-chunked-trailer.htm.ini | 6 | ||||
-rw-r--r-- | tests/wpt/mozilla/meta/MANIFEST.json | 24832 | ||||
-rw-r--r-- | tests/wpt/mozilla/tests/mozilla/resources/brotli.py | 34 | ||||
-rw-r--r-- | tests/wpt/mozilla/tests/mozilla/response-data-brotli.htm | 44 |
11 files changed, 12998 insertions, 12606 deletions
diff --git a/Cargo.lock b/Cargo.lock index e0ed721c922..8c79ab85aa4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,17 +305,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "brotli" -version = "3.0.2" +version = "3.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "alloc-no-stdlib 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "alloc-stdlib 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "brotli-decompressor 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "brotli-decompressor 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "brotli-decompressor" -version = "2.0.3" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "alloc-no-stdlib 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -676,6 +676,14 @@ dependencies = [ ] [[package]] +name = "crc32fast" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "crossbeam-channel" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2120,6 +2128,16 @@ dependencies = [ ] [[package]] +name = "libflate" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "libloading" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2546,7 +2564,7 @@ name = "net" version = "0.0.1" dependencies = [ "base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "brotli 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "brotli 3.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "cookie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2563,6 +2581,7 @@ dependencies = [ "immeta 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libflate 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "malloc_size_of 0.0.1", "malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4849,8 +4868,8 @@ dependencies = [ "checksum blurmock 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9c150fd617830fd121919bbd500a784507e8af1bae744efcf587591c65c375d4" "checksum blurz 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f6dae8337ff67fe8ead29a28a0115605753e6a5205d4b6017e9f42f198c3c50a" "checksum boxfnonce 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cbec60c560f322d8e3cd403f91d8908cfd965fff53ba97154bd1b9d90149d98e" -"checksum brotli 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "866aa77580d9501b6d87e0bcbb6605403df764d356b8ee65e1510bcba6a45fc0" -"checksum brotli-decompressor 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "71867b8c3aaff6c493969d2166a9a9ff5321fcc6c6346115dc66b3dd3ff8bd5b" +"checksum brotli 3.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "43b92d759a5f8532e5b0bc06dc31593af01447db9e141c3b67bdb132e58c2844" +"checksum brotli-decompressor 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "87c3078b67cd0fad2263321042a60f620186cce666bedba14c6bf09ace508ce9" "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" "checksum byte-slice-cast 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "28346c117b50270785fbc123bd6e4ecad20d0c6d5f43d081dc80a3abcc62be64" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" @@ -4880,6 +4899,7 @@ dependencies = [ "checksum core-graphics 0.17.3 (registry+https://github.com/rust-lang/crates.io-index)" = "56790968ab1c8a1202a102e6de05fc6e1ec87da99e4e93e9a7d13efbfc1e95a9" "checksum core-text 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a6705907bc253cee90b8551017836ce50904be305c99fec5ea74a8d72d799e58" "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" +"checksum crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192" "checksum crossbeam-channel 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "548dfc2fa4933009668d4a51f9ef074b8af8f2d6a6410225d76d6b1c3c56ca6f" "checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3" "checksum crossbeam-deque 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3486aefc4c0487b9cb52372c97df0a48b8c249514af1ee99703bf70d2f2ceda1" @@ -5000,6 +5020,7 @@ dependencies = [ "checksum leaky-cow 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40a8225d44241fd324a8af2806ba635fc7c8a7e9a7de4d5cf3ef54e71f5926fc" "checksum libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)" = "10923947f84a519a45c8fefb7dd1b3e8c08747993381adee176d7a82b4195311" "checksum libdbus-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "99c78106156a964aadc1c59f7798276967be6705243b60f3ab7e131e3841db88" +"checksum libflate 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "bff3ac7d6f23730d3b533c35ed75eef638167634476a499feef16c428d74b57b" "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" "checksum libz-sys 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "87f737ad6cc6fd6eefe3d9dc5412f1573865bded441300904d2f42269e140f16" "checksum line_drawing 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5cc7ad3d82c845bdb5dde34ffdcc7a5fb4d2996e1e1ee0f19c33bc80e15196b9" diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 8840d09a2e5..943e693da1d 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -22,6 +22,7 @@ crossbeam-channel = "0.3" devtools_traits = {path = "../devtools_traits"} embedder_traits = { path = "../embedder_traits" } flate2 = "1" +futures = "0.1" headers-core = "0.0.1" headers-ext = "0.0.3" http = "0.1" @@ -31,6 +32,7 @@ hyper-openssl = "0.7" immeta = "0.4" ipc-channel = "0.11" lazy_static = "1" +libflate = "0.1" log = "0.4" malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = "0.1" diff --git a/components/net/connector.rs b/components/net/connector.rs index c93f82df5e2..1306c2d5609 100644 --- a/components/net/connector.rs +++ b/components/net/connector.rs @@ -3,9 +3,6 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::hosts::replace_host; -use crate::http_loader::Decoder; -use flate2::read::GzDecoder; -use hyper::body::Payload; use hyper::client::connect::{Connect, Destination}; use hyper::client::HttpConnector as HyperHttpConnector; use hyper::rt::Future; @@ -13,9 +10,7 @@ use hyper::{Body, Client}; use hyper_openssl::HttpsConnector; use openssl::ssl::{SslConnector, SslConnectorBuilder, SslMethod, SslOptions}; use openssl::x509; -use std::io::{Cursor, Read}; use tokio::prelude::future::Executor; -use tokio::prelude::{Async, Stream}; pub const BUF_SIZE: usize = 32768; @@ -47,105 +42,6 @@ impl Connect for HttpConnector { } pub type Connector = HttpsConnector<HttpConnector>; -pub struct WrappedBody { - pub body: Body, - pub decoder: Decoder, -} - -impl WrappedBody { - pub fn new(body: Body) -> Self { - Self::new_with_decoder(body, Decoder::Plain) - } - - pub fn new_with_decoder(body: Body, decoder: Decoder) -> Self { - WrappedBody { body, decoder } - } -} - -impl Payload for WrappedBody { - type Data = <Body as Payload>::Data; - type Error = <Body as Payload>::Error; - fn poll_data(&mut self) -> Result<Async<Option<Self::Data>>, Self::Error> { - self.body.poll_data() - } -} - -impl Stream for WrappedBody { - type Item = <Body as Stream>::Item; - type Error = <Body as Stream>::Error; - fn poll(&mut self) -> Result<Async<Option<Self::Item>>, Self::Error> { - self.body.poll().map(|res| { - res.map(|maybe_chunk| { - if let Some(chunk) = maybe_chunk { - match self.decoder { - Decoder::Plain => Some(chunk), - Decoder::Gzip(Some(ref mut decoder)) => { - let mut buf = vec![0; BUF_SIZE]; - decoder.get_mut().get_mut().extend(chunk.as_ref()); - let len = decoder.read(&mut buf).ok()?; - buf.truncate(len); - Some(buf.into()) - }, - Decoder::Gzip(None) => { - let mut buf = vec![0; BUF_SIZE]; - let mut decoder = GzDecoder::new(Cursor::new(chunk.into_bytes())); - let len = decoder.read(&mut buf).ok()?; - buf.truncate(len); - self.decoder = Decoder::Gzip(Some(decoder)); - Some(buf.into()) - }, - Decoder::Deflate(ref mut decoder) => { - let mut buf = vec![0; BUF_SIZE]; - decoder.get_mut().get_mut().extend(chunk.as_ref()); - let len = decoder.read(&mut buf).ok()?; - buf.truncate(len); - Some(buf.into()) - }, - Decoder::Brotli(ref mut decoder) => { - let mut buf = vec![0; BUF_SIZE]; - decoder.get_mut().get_mut().extend(chunk.as_ref()); - let len = decoder.read(&mut buf).ok()?; - buf.truncate(len); - Some(buf.into()) - }, - } - } else { - // Hyper is done downloading but we still have uncompressed data - match self.decoder { - Decoder::Gzip(Some(ref mut decoder)) => { - let mut buf = vec![0; BUF_SIZE]; - let len = decoder.read(&mut buf).ok()?; - if len == 0 { - return None; - } - buf.truncate(len); - Some(buf.into()) - }, - Decoder::Deflate(ref mut decoder) => { - let mut buf = vec![0; BUF_SIZE]; - let len = decoder.read(&mut buf).ok()?; - if len == 0 { - return None; - } - buf.truncate(len); - Some(buf.into()) - }, - Decoder::Brotli(ref mut decoder) => { - let mut buf = vec![0; BUF_SIZE]; - let len = decoder.read(&mut buf).ok()?; - if len == 0 { - return None; - } - buf.truncate(len); - Some(buf.into()) - }, - _ => None, - } - } - }) - }) - } -} pub fn create_ssl_connector_builder(certs: &str) -> SslConnectorBuilder { // certs include multiple certificates. We could add all of them at once, @@ -189,7 +85,7 @@ pub fn create_ssl_connector_builder(certs: &str) -> SslConnectorBuilder { pub fn create_http_client<E>( ssl_connector_builder: SslConnectorBuilder, executor: E, -) -> Client<Connector, WrappedBody> +) -> Client<Connector, Body> where E: Executor<Box<dyn Future<Error = (), Item = ()> + Send + 'static>> + Sync + Send + 'static, { diff --git a/components/net/decoder.rs b/components/net/decoder.rs new file mode 100644 index 00000000000..bad25eb10cd --- /dev/null +++ b/components/net/decoder.rs @@ -0,0 +1,483 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ + +//! Adapted from an implementation in reqwest. + +/*! +A potentially non-blocking response decoder. + +The decoder wraps a stream of chunks and produces a new stream of decompressed chunks. +The decompressed chunks aren't guaranteed to align to the compressed ones. + +If the response is plaintext then no additional work is carried out. +Chunks are just passed along. + +If the response is gzip, then the chunks are decompressed into a buffer. +Slices of that buffer are emitted as new chunks. + +This module consists of a few main types: + +- `ReadableChunks` is a `Read`-like wrapper around a stream +- `Decoder` is a layer over `ReadableChunks` that applies the right decompression + +The following types directly support the gzip compression case: + +- `Pending` is a non-blocking constructor for a `Decoder` in case the body needs to be checked for EOF +- `Peeked` is a buffer that keeps a few bytes available so `libflate`s `read_exact` calls won't fail +*/ + +use crate::connector::BUF_SIZE; +use brotli::Decompressor; +use bytes::{Buf, BufMut, BytesMut}; +use flate2::read::DeflateDecoder; +use futures::{Async, Future, Poll, Stream}; +use hyper::header::{HeaderValue, CONTENT_ENCODING, TRANSFER_ENCODING}; +use hyper::{self, Body, Chunk, Response}; +use libflate::non_blocking::gzip; +use std::cmp; +use std::fmt; +use std::io::{self, Read}; +use std::mem; + +pub enum Error { + Io(io::Error), + Hyper(hyper::error::Error), +} + +impl From<io::Error> for Error { + fn from(err: io::Error) -> Error { + Error::Io(err) + } +} + +impl From<hyper::error::Error> for Error { + fn from(err: hyper::error::Error) -> Error { + Error::Hyper(err) + } +} + +const INIT_BUFFER_SIZE: usize = 8192; + +/// A response decompressor over a non-blocking stream of chunks. +/// +/// The inner decoder may be constructed asynchronously. +pub struct Decoder { + inner: Inner, +} + +#[derive(PartialEq)] +enum DecoderType { + Gzip, + Brotli, + Deflate, +} + +enum Inner { + /// A `PlainText` decoder just returns the response content as is. + PlainText(Body), + /// A `Gzip` decoder will uncompress the gzipped response content before returning it. + Gzip(Gzip), + /// A `Delfate` decoder will uncompress the inflated response content before returning it. + Deflate(Deflate), + /// A `Brotli` decoder will uncompress the brotli-encoded response content before returning it. + Brotli(Brotli), + /// A decoder that doesn't have a value yet. + Pending(Pending), +} + +/// A future attempt to poll the response body for EOF so we know whether to use gzip or not. +struct Pending { + body: ReadableChunks<Body>, + type_: DecoderType, +} + +/// A gzip decoder that reads from a `libflate::gzip::Decoder` into a `BytesMut` and emits the results +/// as a `Chunk`. +struct Gzip { + inner: Box<gzip::Decoder<Peeked<ReadableChunks<Body>>>>, + buf: BytesMut, +} + +impl fmt::Debug for Decoder { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + f.debug_struct("Decoder").finish() + } +} + +impl Decoder { + /// A plain text decoder. + /// + /// This decoder will emit the underlying chunks as-is. + #[inline] + fn plain_text(body: Body) -> Decoder { + Decoder { + inner: Inner::PlainText(body), + } + } + + /// A pending decoder. + /// + /// This decoder will buffer and decompress chunks that are encoded in the expected format. + #[inline] + fn pending(body: Body, type_: DecoderType) -> Decoder { + Decoder { + inner: Inner::Pending(Pending { + body: ReadableChunks::new(body), + type_: type_, + }), + } + } + + /// Constructs a Decoder from a hyper request. + /// + /// A decoder is just a wrapper around the hyper request that knows + /// how to decode the content body of the request. + /// + /// Uses the correct variant by inspecting the Content-Encoding header. + pub fn detect(response: Response<Body>) -> Response<Decoder> { + let values = response + .headers() + .get_all(CONTENT_ENCODING) + .iter() + .chain(response.headers().get_all(TRANSFER_ENCODING).iter()); + let decoder = values.fold(None, |acc, enc| { + acc.or_else(|| { + if enc == HeaderValue::from_static("gzip") { + Some(DecoderType::Gzip) + } else if enc == HeaderValue::from_static("br") { + Some(DecoderType::Brotli) + } else if enc == HeaderValue::from_static("deflate") { + Some(DecoderType::Deflate) + } else { + None + } + }) + }); + match decoder { + Some(type_) => response.map(|r| Decoder::pending(r, type_)), + None => response.map(Decoder::plain_text), + } + } +} + +impl Stream for Decoder { + type Item = Chunk; + type Error = Error; + + fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> { + // Do a read or poll for a pending decoder value. + let new_value = match self.inner { + Inner::Pending(ref mut future) => match future.poll() { + Ok(Async::Ready(inner)) => inner, + Ok(Async::NotReady) => return Ok(Async::NotReady), + Err(e) => return Err(e.into()), + }, + Inner::PlainText(ref mut body) => return body.poll().map_err(|e| e.into()), + Inner::Gzip(ref mut decoder) => return decoder.poll(), + Inner::Brotli(ref mut decoder) => return decoder.poll(), + Inner::Deflate(ref mut decoder) => return decoder.poll(), + }; + + self.inner = new_value; + self.poll() + } +} + +impl Future for Pending { + type Item = Inner; + type Error = hyper::error::Error; + + fn poll(&mut self) -> Poll<Self::Item, Self::Error> { + let body_state = match self.body.poll_stream() { + Ok(Async::Ready(state)) => state, + Ok(Async::NotReady) => return Ok(Async::NotReady), + Err(e) => return Err(e), + }; + + let body = mem::replace(&mut self.body, ReadableChunks::new(Body::empty())); + // libflate does a read_exact([0; 2]), so its impossible to tell + // if the stream was empty, or truly had an UnexpectedEof. + // Therefore, we need to check for EOF first. + match body_state { + StreamState::Eof => Ok(Async::Ready(Inner::PlainText(Body::empty()))), + StreamState::HasMore => Ok(Async::Ready(match self.type_ { + DecoderType::Gzip => Inner::Gzip(Gzip::new(body)), + DecoderType::Brotli => Inner::Brotli(Brotli::new(body)), + DecoderType::Deflate => Inner::Deflate(Deflate::new(body)), + })), + } + } +} + +impl Gzip { + fn new(stream: ReadableChunks<Body>) -> Self { + Gzip { + buf: BytesMut::with_capacity(INIT_BUFFER_SIZE), + inner: Box::new(gzip::Decoder::new(Peeked::new(stream))), + } + } +} + +#[allow(unsafe_code)] +fn poll_with_read(reader: &mut Read, buf: &mut BytesMut) -> Poll<Option<Chunk>, Error> { + if buf.remaining_mut() == 0 { + buf.reserve(INIT_BUFFER_SIZE); + } + + // The buffer contains uninitialised memory so getting a readable slice is unsafe. + // We trust the reader not to read from the memory given. + // + // To be safe, this memory could be zeroed before passing to the reader. + // Otherwise we might need to deal with the case where the reader panics. + let read = { + let mut buf = unsafe { buf.bytes_mut() }; + reader.read(&mut buf) + }; + + match read { + Ok(read) if read == 0 => Ok(Async::Ready(None)), + Ok(read) => { + unsafe { buf.advance_mut(read) }; + let chunk = Chunk::from(buf.split_to(read).freeze()); + + Ok(Async::Ready(Some(chunk))) + }, + Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => Ok(Async::NotReady), + Err(e) => Err(e.into()), + } +} + +impl Stream for Gzip { + type Item = Chunk; + type Error = Error; + + fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> { + poll_with_read(&mut self.inner, &mut self.buf) + } +} + +/// A brotli decoder that reads from a `brotli::Decompressor` into a `BytesMut` and emits the results +/// as a `Chunk`. +struct Brotli { + inner: Box<Decompressor<Peeked<ReadableChunks<Body>>>>, + buf: BytesMut, +} + +impl Brotli { + fn new(stream: ReadableChunks<Body>) -> Self { + Self { + buf: BytesMut::with_capacity(INIT_BUFFER_SIZE), + inner: Box::new(Decompressor::new(Peeked::new(stream), BUF_SIZE)), + } + } +} + +impl Stream for Brotli { + type Item = Chunk; + type Error = Error; + + fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> { + poll_with_read(&mut self.inner, &mut self.buf) + } +} + +/// A deflate decoder that reads from a `deflate::Decoder` into a `BytesMut` and emits the results +/// as a `Chunk`. +struct Deflate { + inner: Box<DeflateDecoder<Peeked<ReadableChunks<Body>>>>, + buf: BytesMut, +} + +impl Deflate { + fn new(stream: ReadableChunks<Body>) -> Self { + Self { + buf: BytesMut::with_capacity(INIT_BUFFER_SIZE), + inner: Box::new(DeflateDecoder::new(Peeked::new(stream))), + } + } +} + +impl Stream for Deflate { + type Item = Chunk; + type Error = Error; + + fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> { + poll_with_read(&mut self.inner, &mut self.buf) + } +} + +/// A `Read`able wrapper over a stream of chunks. +pub struct ReadableChunks<S> { + state: ReadState, + stream: S, +} + +enum ReadState { + /// A chunk is ready to be read from. + Ready(Chunk), + /// The next chunk isn't ready yet. + NotReady, + /// The stream has finished. + Eof, +} + +enum StreamState { + /// More bytes can be read from the stream. + HasMore, + /// No more bytes can be read from the stream. + Eof, +} + +/// A buffering reader that ensures `Read`s return at least a few bytes. +struct Peeked<R> { + state: PeekedState, + peeked_buf: [u8; 10], + pos: usize, + inner: R, +} + +enum PeekedState { + /// The internal buffer hasn't filled yet. + NotReady, + /// The internal buffer can be read. + Ready(usize), +} + +impl<R> Peeked<R> { + #[inline] + fn new(inner: R) -> Self { + Peeked { + state: PeekedState::NotReady, + peeked_buf: [0; 10], + inner: inner, + pos: 0, + } + } + + #[inline] + fn ready(&mut self) { + self.state = PeekedState::Ready(self.pos); + self.pos = 0; + } + + #[inline] + fn not_ready(&mut self) { + self.state = PeekedState::NotReady; + self.pos = 0; + } +} + +impl<R: Read> Read for Peeked<R> { + #[inline] + fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { + loop { + match self.state { + PeekedState::Ready(peeked_buf_len) => { + let len = cmp::min(buf.len(), peeked_buf_len - self.pos); + let start = self.pos; + let end = self.pos + len; + + buf[..len].copy_from_slice(&self.peeked_buf[start..end]); + self.pos += len; + if self.pos == peeked_buf_len { + self.not_ready(); + } + + return Ok(len); + }, + PeekedState::NotReady => { + let read = self.inner.read(&mut self.peeked_buf[self.pos..]); + + match read { + Ok(0) => self.ready(), + Ok(read) => { + self.pos += read; + if self.pos == self.peeked_buf.len() { + self.ready(); + } + }, + Err(e) => return Err(e), + } + }, + }; + } + } +} + +impl<S> ReadableChunks<S> { + #[inline] + fn new(stream: S) -> Self { + ReadableChunks { + state: ReadState::NotReady, + stream: stream, + } + } +} + +impl<S> fmt::Debug for ReadableChunks<S> { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + f.debug_struct("ReadableChunks").finish() + } +} + +impl<S> Read for ReadableChunks<S> +where + S: Stream<Item = Chunk, Error = hyper::error::Error>, +{ + fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { + loop { + let ret; + match self.state { + ReadState::Ready(ref mut chunk) => { + let len = cmp::min(buf.len(), chunk.remaining()); + + buf[..len].copy_from_slice(&chunk[..len]); + chunk.advance(len); + if chunk.is_empty() { + ret = len; + } else { + return Ok(len); + } + }, + ReadState::NotReady => match self.poll_stream() { + Ok(Async::Ready(StreamState::HasMore)) => continue, + Ok(Async::Ready(StreamState::Eof)) => return Ok(0), + Ok(Async::NotReady) => return Err(io::ErrorKind::WouldBlock.into()), + Err(e) => { + return Err(io::Error::new(io::ErrorKind::Other, e)); + }, + }, + ReadState::Eof => return Ok(0), + } + self.state = ReadState::NotReady; + return Ok(ret); + } + } +} + +impl<S> ReadableChunks<S> +where + S: Stream<Item = Chunk, Error = hyper::error::Error>, +{ + /// Poll the readiness of the inner reader. + /// + /// This function will update the internal state and return a simplified + /// version of the `ReadState`. + fn poll_stream(&mut self) -> Poll<StreamState, hyper::error::Error> { + match self.stream.poll() { + Ok(Async::Ready(Some(chunk))) => { + self.state = ReadState::Ready(chunk); + + Ok(Async::Ready(StreamState::HasMore)) + }, + Ok(Async::Ready(None)) => { + self.state = ReadState::Eof; + + Ok(Async::Ready(StreamState::Eof)) + }, + Ok(Async::NotReady) => Ok(Async::NotReady), + Err(e) => Err(e), + } + } +} diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs index 1290d7754b3..db8c607ef1a 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -2,9 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -use crate::connector::{create_http_client, Connector, WrappedBody, BUF_SIZE}; +use crate::connector::{create_http_client, Connector}; use crate::cookie; use crate::cookie_storage::CookieStorage; +use crate::decoder::Decoder; use crate::fetch::cors_cache::CorsCache; use crate::fetch::methods::{ is_cors_safelisted_method, is_cors_safelisted_request_header, main_fetch, @@ -13,14 +14,11 @@ use crate::fetch::methods::{Data, DoneChannel, FetchContext, Target}; use crate::hsts::HstsList; use crate::http_cache::HttpCache; use crate::resource_thread::AuthCache; -use brotli::Decompressor; -use bytes::Bytes; use crossbeam_channel::{unbounded, Sender}; use devtools_traits::{ ChromeToDevtoolsControlMsg, DevtoolsControlMsg, HttpRequest as DevtoolsHttpRequest, }; use devtools_traits::{HttpResponse as DevtoolsHttpResponse, NetworkEvent}; -use flate2::read::{DeflateDecoder, GzDecoder}; use headers_core::HeaderMapExt; use headers_ext::{AccessControlAllowCredentials, AccessControlAllowHeaders}; use headers_ext::{ @@ -49,7 +47,6 @@ use openssl::ssl::SslConnectorBuilder; use servo_url::{ImmutableOrigin, ServoUrl}; use std::collections::{HashMap, HashSet}; use std::error::Error; -use std::io::Cursor; use std::iter::FromIterator; use std::mem; use std::ops::Deref; @@ -71,7 +68,7 @@ pub struct HttpState { pub http_cache: RwLock<HttpCache>, pub auth_cache: RwLock<AuthCache>, pub history_states: RwLock<HashMap<HistoryStateId, Vec<u8>>>, - pub client: Client<Connector, WrappedBody>, + pub client: Client<Connector, Body>, } impl HttpState { @@ -266,31 +263,6 @@ fn set_cookies_from_headers( } } -impl Decoder { - fn from_http_response(response: &HyperResponse<Body>) -> Decoder { - if let Some(encoding) = response.headers().typed_get::<ContentEncoding>() { - if encoding.contains("gzip") { - Decoder::Gzip(None) - } else if encoding.contains("deflate") { - Decoder::Deflate(DeflateDecoder::new(Cursor::new(Bytes::new()))) - } else if encoding.contains("br") { - Decoder::Brotli(Decompressor::new(Cursor::new(Bytes::new()), BUF_SIZE)) - } else { - Decoder::Plain - } - } else { - Decoder::Plain - } - } -} - -pub enum Decoder { - Gzip(Option<GzDecoder<Cursor<Bytes>>>), - Deflate(DeflateDecoder<Cursor<Bytes>>), - Brotli(Decompressor<Cursor<Bytes>>), - Plain, -} - fn prepare_devtools_request( request_id: String, url: ServoUrl, @@ -367,7 +339,7 @@ fn auth_from_cache( } fn obtain_response( - client: &Client<Connector, WrappedBody>, + client: &Client<Connector, Body>, url: &ServoUrl, method: &Method, request_headers: &HeaderMap, @@ -379,10 +351,7 @@ fn obtain_response( is_xhr: bool, ) -> Box< dyn Future< - Item = ( - HyperResponse<WrappedBody>, - Option<ChromeToDevtoolsControlMsg>, - ), + Item = (HyperResponse<Decoder>, Option<ChromeToDevtoolsControlMsg>), Error = NetworkError, >, > { @@ -423,7 +392,7 @@ fn obtain_response( .replace("{", "%7B") .replace("}", "%7D"), ) - .body(WrappedBody::new(request_body.clone().into())); + .body(request_body.clone().into()); let mut request = match request { Ok(request) => request, @@ -474,11 +443,7 @@ fn obtain_response( debug!("Not notifying devtools (no request_id)"); None }; - let decoder = Decoder::from_http_response(&res); - Ok(( - res.map(move |r| WrappedBody::new_with_decoder(r, decoder)), - msg, - )) + Ok((Decoder::detect(res), msg)) }) .map_err(move |e| NetworkError::from_hyper_error(&e)), ) @@ -1265,6 +1230,7 @@ fn http_network_fetch( } *res_body.lock().unwrap() = ResponseBody::Receiving(vec![]); + let res_body2 = res_body.clone(); if let Some(ref sender) = devtools_sender { if let Some(m) = msg { @@ -1285,6 +1251,7 @@ fn http_network_fetch( } let done_sender2 = done_sender.clone(); + let done_sender3 = done_sender.clone(); HANDLE.lock().unwrap().spawn( res.into_body() .map_err(|_| ()) @@ -1311,7 +1278,15 @@ fn http_network_fetch( let _ = done_sender2.send(Data::Done); future::ok(()) }) - .map_err(|_| ()), + .map_err(move |_| { + let mut body = res_body2.lock().unwrap(); + let completed_body = match *body { + ResponseBody::Receiving(ref mut body) => mem::replace(body, vec![]), + _ => vec![], + }; + *body = ResponseBody::Done(completed_body); + let _ = done_sender3.send(Data::Done); + }), ); // TODO these substeps aren't possible yet diff --git a/components/net/lib.rs b/components/net/lib.rs index d5943fa380c..fb3c6fff78b 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -21,6 +21,7 @@ pub mod connector; pub mod cookie; pub mod cookie_storage; mod data_loader; +mod decoder; pub mod filemanager_thread; mod hosts; pub mod hsts; diff --git a/servo-tidy.toml b/servo-tidy.toml index f56879c309d..cdb7176e348 100644 --- a/servo-tidy.toml +++ b/servo-tidy.toml @@ -51,6 +51,8 @@ files = [ "./resources/hsts_preload.json", "./tests/wpt/metadata/MANIFEST.json", "./tests/wpt/mozilla/meta/MANIFEST.json", + # Long encoded string + "./tests/wpt/mozilla/tests/mozilla/resources/brotli.py", "./tests/wpt/webgl/meta/MANIFEST.json", "./support/android/openssl.sh", # Upstream code from Khronos/WebGL uses tabs for indentation diff --git a/tests/wpt/metadata/xhr/getresponseheader-chunked-trailer.htm.ini b/tests/wpt/metadata/xhr/getresponseheader-chunked-trailer.htm.ini deleted file mode 100644 index 586a42bd464..00000000000 --- a/tests/wpt/metadata/xhr/getresponseheader-chunked-trailer.htm.ini +++ /dev/null @@ -1,6 +0,0 @@ -[getresponseheader-chunked-trailer.htm] - type: testharness - expected: TIMEOUT - [XMLHttpRequest: getResponseHeader() and HTTP trailer] - expected: TIMEOUT - diff --git a/tests/wpt/mozilla/meta/MANIFEST.json b/tests/wpt/mozilla/meta/MANIFEST.json index 9dfbd8de91e..86ac13bc878 100644 --- a/tests/wpt/mozilla/meta/MANIFEST.json +++ b/tests/wpt/mozilla/meta/MANIFEST.json @@ -3,33073 +3,33073 @@ "reftest": { "css/abs-overflow-stackingcontext.html": [ [ - "/_mozilla/css/abs-overflow-stackingcontext.html", + "/_mozilla/css/abs-overflow-stackingcontext.html", [ [ - "/_mozilla/css/abs-overflow-stackingcontext_ref.html", + "/_mozilla/css/abs-overflow-stackingcontext_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/abs_float_pref_width.html": [ [ - "/_mozilla/css/abs_float_pref_width.html", + "/_mozilla/css/abs_float_pref_width.html", [ [ - "/_mozilla/css/abs_float_pref_width-ref.html", + "/_mozilla/css/abs_float_pref_width-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/abs_rel_explicit_height.html": [ [ - "/_mozilla/css/abs_rel_explicit_height.html", + "/_mozilla/css/abs_rel_explicit_height.html", [ [ - "/_mozilla/css/abs_rel_explicit_height_ref.html", + "/_mozilla/css/abs_rel_explicit_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_clipping_of_own_contents.html": [ [ - "/_mozilla/css/absolute_clipping_of_own_contents.html", + "/_mozilla/css/absolute_clipping_of_own_contents.html", [ [ - "/_mozilla/css/absolute_clipping_of_own_contents_ref.html", + "/_mozilla/css/absolute_clipping_of_own_contents_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_content_height.html": [ [ - "/_mozilla/css/absolute_content_height.html", + "/_mozilla/css/absolute_content_height.html", [ [ - "/_mozilla/css/absolute_content_height_ref.html", + "/_mozilla/css/absolute_content_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_css_width.html": [ [ - "/_mozilla/css/absolute_css_width.html", + "/_mozilla/css/absolute_css_width.html", [ [ - "/_mozilla/css/absolute_css_width_ref.html", + "/_mozilla/css/absolute_css_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_div_with_padding.html": [ [ - "/_mozilla/css/absolute_div_with_padding.html", + "/_mozilla/css/absolute_div_with_padding.html", [ [ - "/_mozilla/css/absolute_div_with_padding_ref.html", + "/_mozilla/css/absolute_div_with_padding_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_hypothetical_float.html": [ [ - "/_mozilla/css/absolute_hypothetical_float.html", + "/_mozilla/css/absolute_hypothetical_float.html", [ [ - "/_mozilla/css/absolute_hypothetical_float_ref.html", + "/_mozilla/css/absolute_hypothetical_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_hypothetical_with_intervening_inline_block_a.html": [ [ - "/_mozilla/css/absolute_hypothetical_with_intervening_inline_block_a.html", + "/_mozilla/css/absolute_hypothetical_with_intervening_inline_block_a.html", [ [ - "/_mozilla/css/absolute_hypothetical_with_intervening_inline_block_ref.html", + "/_mozilla/css/absolute_hypothetical_with_intervening_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_ib_split_a.html": [ [ - "/_mozilla/css/absolute_ib_split_a.html", + "/_mozilla/css/absolute_ib_split_a.html", [ [ - "/_mozilla/css/absolute_ib_split_ref.html", + "/_mozilla/css/absolute_ib_split_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_img_with_padding.html": [ [ - "/_mozilla/css/absolute_img_with_padding.html", + "/_mozilla/css/absolute_img_with_padding.html", [ [ - "/_mozilla/css/absolute_img_with_padding_ref.html", + "/_mozilla/css/absolute_img_with_padding_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_inline_containing_block_a.html": [ [ - "/_mozilla/css/absolute_inline_containing_block_a.html", + "/_mozilla/css/absolute_inline_containing_block_a.html", [ [ - "/_mozilla/css/absolute_inline_containing_block_ref.html", + "/_mozilla/css/absolute_inline_containing_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_line_height_after_float.html": [ [ - "/_mozilla/css/absolute_line_height_after_float.html", + "/_mozilla/css/absolute_line_height_after_float.html", [ [ - "/_mozilla/css/absolute_line_height_after_float_ref.html", + "/_mozilla/css/absolute_line_height_after_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_table.html": [ [ - "/_mozilla/css/absolute_table.html", + "/_mozilla/css/absolute_table.html", [ [ - "/_mozilla/css/absolute_table_ref.html", + "/_mozilla/css/absolute_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/absolute_z_index_auto_paint_order_a.html": [ [ - "/_mozilla/css/absolute_z_index_auto_paint_order_a.html", + "/_mozilla/css/absolute_z_index_auto_paint_order_a.html", [ [ - "/_mozilla/css/absolute_z_index_auto_paint_order_ref.html", + "/_mozilla/css/absolute_z_index_auto_paint_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/acid1_a.html": [ [ - "/_mozilla/css/acid1_a.html", + "/_mozilla/css/acid1_a.html", [ [ - "/_mozilla/css/acid1_b.html", + "/_mozilla/css/acid1_b.html", "==" ] - ], + ], {} ] - ], + ], "css/acid2-wrapper.html": [ [ - "/_mozilla/css/acid2-wrapper.html", + "/_mozilla/css/acid2-wrapper.html", [ [ - "/_mozilla/css/acid2_ref_broken.html", + "/_mozilla/css/acid2_ref_broken.html", "==" ] - ], + ], { "timeout": "long" } ] - ], + ], "css/acid2_noscroll.html": [ [ - "/_mozilla/css/acid2_noscroll.html", + "/_mozilla/css/acid2_noscroll.html", [ [ - "/_mozilla/css/acid2_ref_broken.html", + "/_mozilla/css/acid2_ref_broken.html", "==" ] - ], + ], {} ] - ], + ], "css/acid2_ref.html": [ [ - "/_mozilla/css/acid2_ref.html", + "/_mozilla/css/acid2_ref.html", [ [ - "/_mozilla/css/acid2_ref_broken.html", + "/_mozilla/css/acid2_ref_broken.html", "==" ] - ], + ], {} ] - ], + ], "css/after_block_iteration.html": [ [ - "/_mozilla/css/after_block_iteration.html", + "/_mozilla/css/after_block_iteration.html", [ [ - "/_mozilla/css/after_block_iteration_ref.html", + "/_mozilla/css/after_block_iteration_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/alpha_gif_a.html": [ [ - "/_mozilla/css/alpha_gif_a.html", + "/_mozilla/css/alpha_gif_a.html", [ [ - "/_mozilla/css/alpha_gif_b.html", + "/_mozilla/css/alpha_gif_b.html", "==" ] - ], + ], {} ] - ], + ], "css/alpha_png_a.html": [ [ - "/_mozilla/css/alpha_png_a.html", + "/_mozilla/css/alpha_png_a.html", [ [ - "/_mozilla/css/alpha_png_b.html", + "/_mozilla/css/alpha_png_b.html", "==" ] - ], + ], {} ] - ], + ], "css/anon_block_inherit_a.html": [ [ - "/_mozilla/css/anon_block_inherit_a.html", + "/_mozilla/css/anon_block_inherit_a.html", [ [ - "/_mozilla/css/anon_block_inherit_b.html", + "/_mozilla/css/anon_block_inherit_b.html", "==" ] - ], + ], {} ] - ], + ], "css/append_style_a.html": [ [ - "/_mozilla/css/append_style_a.html", + "/_mozilla/css/append_style_a.html", [ [ - "/_mozilla/css/append_style_b.html", + "/_mozilla/css/append_style_b.html", "==" ] - ], + ], {} ] - ], + ], "css/attr_exists_selector.html": [ [ - "/_mozilla/css/attr_exists_selector.html", + "/_mozilla/css/attr_exists_selector.html", [ [ - "/_mozilla/css/attr_exists_selector_ref.html", + "/_mozilla/css/attr_exists_selector_ref.html", "==" - ], + ], [ - "/_mozilla/css/noteq_attr_exists_selector.html", + "/_mozilla/css/noteq_attr_exists_selector.html", "!=" ] - ], + ], {} ] - ], + ], "css/attr_selector_case_sensitivity.html": [ [ - "/_mozilla/css/attr_selector_case_sensitivity.html", + "/_mozilla/css/attr_selector_case_sensitivity.html", [ [ - "/_mozilla/css/attr_selector_case_sensitivity_ref.html", + "/_mozilla/css/attr_selector_case_sensitivity_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background.html": [ [ - "/_mozilla/css/background.html", + "/_mozilla/css/background.html", [ [ - "/_mozilla/css/background_ref.html", + "/_mozilla/css/background_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_border_padding_crash.html": [ [ - "/_mozilla/css/background_border_padding_crash.html", + "/_mozilla/css/background_border_padding_crash.html", [ [ - "/_mozilla/css/background_border_padding_crash-ref.html", + "/_mozilla/css/background_border_padding_crash-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_clip_a.html": [ [ - "/_mozilla/css/background_clip_a.html", + "/_mozilla/css/background_clip_a.html", [ [ - "/_mozilla/css/background_clip_ref.html", + "/_mozilla/css/background_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_external_stylesheet.html": [ [ - "/_mozilla/css/background_external_stylesheet.html", + "/_mozilla/css/background_external_stylesheet.html", [ [ - "/_mozilla/css/background_rust_ref.html", + "/_mozilla/css/background_rust_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_image_a.html": [ [ - "/_mozilla/css/background_image_a.html", + "/_mozilla/css/background_image_a.html", [ [ - "/_mozilla/css/background_image_ref.html", + "/_mozilla/css/background_image_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_image_position_a.html": [ [ - "/_mozilla/css/background_image_position_a.html", + "/_mozilla/css/background_image_position_a.html", [ [ - "/_mozilla/css/background_image_position_ref.html", + "/_mozilla/css/background_image_position_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_none_a.html": [ [ - "/_mozilla/css/background_none_a.html", + "/_mozilla/css/background_none_a.html", [ [ - "/_mozilla/css/background_none_b.html", + "/_mozilla/css/background_none_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_origin_a.html": [ [ - "/_mozilla/css/background_origin_a.html", + "/_mozilla/css/background_origin_a.html", [ [ - "/_mozilla/css/background_origin_ref.html", + "/_mozilla/css/background_origin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_position_a.html": [ [ - "/_mozilla/css/background_position_a.html", + "/_mozilla/css/background_position_a.html", [ [ - "/_mozilla/css/background_position_b.html", + "/_mozilla/css/background_position_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_position_keyword.html": [ [ - "/_mozilla/css/background_position_keyword.html", + "/_mozilla/css/background_position_keyword.html", [ [ - "/_mozilla/css/background_position_b.html", + "/_mozilla/css/background_position_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_position_percent.html": [ [ - "/_mozilla/css/background_position_percent.html", + "/_mozilla/css/background_position_percent.html", [ [ - "/_mozilla/css/background_position_b.html", + "/_mozilla/css/background_position_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_position_shorthand.html": [ [ - "/_mozilla/css/background_position_shorthand.html", + "/_mozilla/css/background_position_shorthand.html", [ [ - "/_mozilla/css/background_position_shorthand_ref.html", + "/_mozilla/css/background_position_shorthand_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_repeat_both_a.html": [ [ - "/_mozilla/css/background_repeat_both_a.html", + "/_mozilla/css/background_repeat_both_a.html", [ [ - "/_mozilla/css/background_repeat_both_b.html", + "/_mozilla/css/background_repeat_both_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_repeat_none_a.html": [ [ - "/_mozilla/css/background_repeat_none_a.html", + "/_mozilla/css/background_repeat_none_a.html", [ [ - "/_mozilla/css/background_repeat_none_b.html", + "/_mozilla/css/background_repeat_none_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_repeat_x_a.html": [ [ - "/_mozilla/css/background_repeat_x_a.html", + "/_mozilla/css/background_repeat_x_a.html", [ [ - "/_mozilla/css/background_repeat_x_b.html", + "/_mozilla/css/background_repeat_x_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_repeat_y_a.html": [ [ - "/_mozilla/css/background_repeat_y_a.html", + "/_mozilla/css/background_repeat_y_a.html", [ [ - "/_mozilla/css/background_repeat_y_b.html", + "/_mozilla/css/background_repeat_y_b.html", "==" ] - ], + ], {} ] - ], + ], "css/background_size_a.html": [ [ - "/_mozilla/css/background_size_a.html", + "/_mozilla/css/background_size_a.html", [ [ - "/_mozilla/css/background_size_ref.html", + "/_mozilla/css/background_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_size_shorthand_a.html": [ [ - "/_mozilla/css/background_size_shorthand_a.html", + "/_mozilla/css/background_size_shorthand_a.html", [ [ - "/_mozilla/css/background_size_shorthand_ref.html", + "/_mozilla/css/background_size_shorthand_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_size_zero_a.html": [ [ - "/_mozilla/css/background_size_zero_a.html", + "/_mozilla/css/background_size_zero_a.html", [ [ - "/_mozilla/css/background_size_zero_ref.html", + "/_mozilla/css/background_size_zero_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/background_style_attr.html": [ [ - "/_mozilla/css/background_style_attr.html", + "/_mozilla/css/background_style_attr.html", [ [ - "/_mozilla/css/background_rust_ref.html", + "/_mozilla/css/background_rust_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/basic_width_px.html": [ [ - "/_mozilla/css/basic_width_px.html", + "/_mozilla/css/basic_width_px.html", [ [ - "/_mozilla/css/basic_width_em.html", + "/_mozilla/css/basic_width_em.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_a.html": [ [ - "/_mozilla/css/block_formatting_context_a.html", + "/_mozilla/css/block_formatting_context_a.html", [ [ - "/_mozilla/css/block_formatting_context_ref.html", + "/_mozilla/css/block_formatting_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_cleared_float_a.html": [ [ - "/_mozilla/css/block_formatting_context_cleared_float_a.html", + "/_mozilla/css/block_formatting_context_cleared_float_a.html", [ [ - "/_mozilla/css/block_formatting_context_cleared_float_ref.html", + "/_mozilla/css/block_formatting_context_cleared_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_complex_a.html": [ [ - "/_mozilla/css/block_formatting_context_complex_a.html", + "/_mozilla/css/block_formatting_context_complex_a.html", [ [ - "/_mozilla/css/block_formatting_context_complex_ref.html", + "/_mozilla/css/block_formatting_context_complex_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_containing_floats_a.html": [ [ - "/_mozilla/css/block_formatting_context_containing_floats_a.html", + "/_mozilla/css/block_formatting_context_containing_floats_a.html", [ [ - "/_mozilla/css/block_formatting_context_containing_floats_ref.html", + "/_mozilla/css/block_formatting_context_containing_floats_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_float_inorder_interaction_a.html": [ [ - "/_mozilla/css/block_formatting_context_float_inorder_interaction_a.html", + "/_mozilla/css/block_formatting_context_float_inorder_interaction_a.html", [ [ - "/_mozilla/css/block_formatting_context_float_inorder_interaction_ref.html", + "/_mozilla/css/block_formatting_context_float_inorder_interaction_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_float_placement_a.html": [ [ - "/_mozilla/css/block_formatting_context_float_placement_a.html", + "/_mozilla/css/block_formatting_context_float_placement_a.html", [ [ - "/_mozilla/css/block_formatting_context_float_placement_ref.html", + "/_mozilla/css/block_formatting_context_float_placement_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_margin_collapse_a.html": [ [ - "/_mozilla/css/block_formatting_context_margin_collapse_a.html", + "/_mozilla/css/block_formatting_context_margin_collapse_a.html", [ [ - "/_mozilla/css/block_formatting_context_margin_collapse_ref.html", + "/_mozilla/css/block_formatting_context_margin_collapse_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_margin_inout_a.html": [ [ - "/_mozilla/css/block_formatting_context_margin_inout_a.html", + "/_mozilla/css/block_formatting_context_margin_inout_a.html", [ [ - "/_mozilla/css/block_formatting_context_margin_inout_ref.html", + "/_mozilla/css/block_formatting_context_margin_inout_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_max_width_a.html": [ [ - "/_mozilla/css/block_formatting_context_max_width_a.html", + "/_mozilla/css/block_formatting_context_max_width_a.html", [ [ - "/_mozilla/css/block_formatting_context_max_width_ref.html", + "/_mozilla/css/block_formatting_context_max_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_negative_margins_a.html": [ [ - "/_mozilla/css/block_formatting_context_negative_margins_a.html", + "/_mozilla/css/block_formatting_context_negative_margins_a.html", [ [ - "/_mozilla/css/block_formatting_context_negative_margins_ref.html", + "/_mozilla/css/block_formatting_context_negative_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_overflow_a.html": [ [ - "/_mozilla/css/block_formatting_context_overflow_a.html", + "/_mozilla/css/block_formatting_context_overflow_a.html", [ [ - "/_mozilla/css/block_formatting_context_overflow_ref.html", + "/_mozilla/css/block_formatting_context_overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_relative_a.html": [ [ - "/_mozilla/css/block_formatting_context_relative_a.html", + "/_mozilla/css/block_formatting_context_relative_a.html", [ [ - "/_mozilla/css/block_formatting_context_ref.html", + "/_mozilla/css/block_formatting_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_translation_a.html": [ [ - "/_mozilla/css/block_formatting_context_translation_a.html", + "/_mozilla/css/block_formatting_context_translation_a.html", [ [ - "/_mozilla/css/block_formatting_context_translation_ref.html", + "/_mozilla/css/block_formatting_context_translation_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_formatting_context_with_margin_a.html": [ [ - "/_mozilla/css/block_formatting_context_with_margin_a.html", + "/_mozilla/css/block_formatting_context_with_margin_a.html", [ [ - "/_mozilla/css/block_formatting_context_with_margin_ref.html", + "/_mozilla/css/block_formatting_context_with_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_image.html": [ [ - "/_mozilla/css/block_image.html", + "/_mozilla/css/block_image.html", [ [ - "/_mozilla/css/500x300_green.html", + "/_mozilla/css/500x300_green.html", "==" - ], + ], [ - "/_mozilla/css/noteq_500x300_white.html", + "/_mozilla/css/noteq_500x300_white.html", "!=" ] - ], + ], {} ] - ], + ], "css/block_replaced_content_a.html": [ [ - "/_mozilla/css/block_replaced_content_a.html", + "/_mozilla/css/block_replaced_content_a.html", [ [ - "/_mozilla/css/block_replaced_content_ref.html", + "/_mozilla/css/block_replaced_content_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/block_replaced_content_b.html": [ [ - "/_mozilla/css/block_replaced_content_b.html", + "/_mozilla/css/block_replaced_content_b.html", [ [ - "/_mozilla/css/block_replaced_content_ref.html", + "/_mozilla/css/block_replaced_content_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/blur_a.html": [ [ - "/_mozilla/css/blur_a.html", + "/_mozilla/css/blur_a.html", [ [ - "/_mozilla/css/blur_ref.html", + "/_mozilla/css/blur_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/border-image-linear-gradient.html": [ [ - "/_mozilla/css/border-image-linear-gradient.html", + "/_mozilla/css/border-image-linear-gradient.html", [ [ - "/_mozilla/css/border-image-linear-gradient-ref.html", + "/_mozilla/css/border-image-linear-gradient-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_black_ridge_a.html": [ [ - "/_mozilla/css/border_black_ridge_a.html", + "/_mozilla/css/border_black_ridge_a.html", [ [ - "/_mozilla/css/border_black_groove.html", + "/_mozilla/css/border_black_groove.html", "!=" ] - ], + ], {} ] - ], + ], "css/border_black_ridge_b.html": [ [ - "/_mozilla/css/border_black_ridge_b.html", + "/_mozilla/css/border_black_ridge_b.html", [ [ - "/_mozilla/css/border_black_solid.html", + "/_mozilla/css/border_black_solid.html", "!=" ] - ], + ], {} ] - ], + ], "css/border_code_tag.html": [ [ - "/_mozilla/css/border_code_tag.html", + "/_mozilla/css/border_code_tag.html", [ [ - "/_mozilla/css/border_code_tag_ref.html", + "/_mozilla/css/border_code_tag_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_collapse_missing_cell_a.html": [ [ - "/_mozilla/css/border_collapse_missing_cell_a.html", + "/_mozilla/css/border_collapse_missing_cell_a.html", [ [ - "/_mozilla/css/border_collapse_missing_cell_ref.html", + "/_mozilla/css/border_collapse_missing_cell_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_collapse_row_a.html": [ [ - "/_mozilla/css/border_collapse_row_a.html", + "/_mozilla/css/border_collapse_row_a.html", [ [ - "/_mozilla/css/border_collapse_row_ref.html", + "/_mozilla/css/border_collapse_row_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_collapse_rowgroup_a.html": [ [ - "/_mozilla/css/border_collapse_rowgroup_a.html", + "/_mozilla/css/border_collapse_rowgroup_a.html", [ [ - "/_mozilla/css/border_collapse_rowgroup_ref.html", + "/_mozilla/css/border_collapse_rowgroup_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_collapse_simple_a.html": [ [ - "/_mozilla/css/border_collapse_simple_a.html", + "/_mozilla/css/border_collapse_simple_a.html", [ [ - "/_mozilla/css/border_collapse_simple_ref.html", + "/_mozilla/css/border_collapse_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_inline_split.html": [ [ - "/_mozilla/css/border_inline_split.html", + "/_mozilla/css/border_inline_split.html", [ [ - "/_mozilla/css/border_inline_split_ref.html", + "/_mozilla/css/border_inline_split_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_asymmetric_sizes_a.html": [ [ - "/_mozilla/css/border_radius_asymmetric_sizes_a.html", + "/_mozilla/css/border_radius_asymmetric_sizes_a.html", [ [ - "/_mozilla/css/border_radius_asymmetric_sizes_ref.html", + "/_mozilla/css/border_radius_asymmetric_sizes_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_clip_a.html": [ [ - "/_mozilla/css/border_radius_clip_a.html", + "/_mozilla/css/border_radius_clip_a.html", [ [ - "/_mozilla/css/border_radius_clip_ref.html", + "/_mozilla/css/border_radius_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_clipping_contents_a.html": [ [ - "/_mozilla/css/border_radius_clipping_contents_a.html", + "/_mozilla/css/border_radius_clipping_contents_a.html", [ [ - "/_mozilla/css/border_radius_clipping_contents_ref.html", + "/_mozilla/css/border_radius_clipping_contents_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_dashed_a.html": [ [ - "/_mozilla/css/border_radius_dashed_a.html", + "/_mozilla/css/border_radius_dashed_a.html", [ [ - "/_mozilla/css/border_radius_dashed_ref.html", + "/_mozilla/css/border_radius_dashed_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/border_radius_elliptical_a.html": [ [ - "/_mozilla/css/border_radius_elliptical_a.html", + "/_mozilla/css/border_radius_elliptical_a.html", [ [ - "/_mozilla/css/border_radius_elliptical_ref.html", + "/_mozilla/css/border_radius_elliptical_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_in_border_radius_a.html": [ [ - "/_mozilla/css/border_radius_in_border_radius_a.html", + "/_mozilla/css/border_radius_in_border_radius_a.html", [ [ - "/_mozilla/css/border_radius_in_border_radius_ref.html", + "/_mozilla/css/border_radius_in_border_radius_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_overlapping_a.html": [ [ - "/_mozilla/css/border_radius_overlapping_a.html", + "/_mozilla/css/border_radius_overlapping_a.html", [ [ - "/_mozilla/css/border_radius_overlapping_ref.html", + "/_mozilla/css/border_radius_overlapping_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_shorthand_a.html": [ [ - "/_mozilla/css/border_radius_shorthand_a.html", + "/_mozilla/css/border_radius_shorthand_a.html", [ [ - "/_mozilla/css/border_radius_shorthand_ref.html", + "/_mozilla/css/border_radius_shorthand_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_radius_zero_sizes_a.html": [ [ - "/_mozilla/css/border_radius_zero_sizes_a.html", + "/_mozilla/css/border_radius_zero_sizes_a.html", [ [ - "/_mozilla/css/border_radius_zero_sizes_ref.html", + "/_mozilla/css/border_radius_zero_sizes_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_rounding_1px_invisible_issue_7184_a.html": [ [ - "/_mozilla/css/border_rounding_1px_invisible_issue_7184_a.html", + "/_mozilla/css/border_rounding_1px_invisible_issue_7184_a.html", [ [ - "/_mozilla/css/border_rounding_1px_invisible_issue_7184_ref.html", + "/_mozilla/css/border_rounding_1px_invisible_issue_7184_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_spacing_a.html": [ [ - "/_mozilla/css/border_spacing_a.html", + "/_mozilla/css/border_spacing_a.html", [ [ - "/_mozilla/css/border_spacing_ref.html", + "/_mozilla/css/border_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_spacing_auto_layout_a.html": [ [ - "/_mozilla/css/border_spacing_auto_layout_a.html", + "/_mozilla/css/border_spacing_auto_layout_a.html", [ [ - "/_mozilla/css/border_spacing_ref.html", + "/_mozilla/css/border_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_spacing_empty_table.html": [ [ - "/_mozilla/css/border_spacing_empty_table.html", + "/_mozilla/css/border_spacing_empty_table.html", [ [ - "/_mozilla/css/border_spacing_empty_table_ref.html", + "/_mozilla/css/border_spacing_empty_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_spacing_fixed_layout_a.html": [ [ - "/_mozilla/css/border_spacing_fixed_layout_a.html", + "/_mozilla/css/border_spacing_fixed_layout_a.html", [ [ - "/_mozilla/css/border_spacing_ref.html", + "/_mozilla/css/border_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/border_style_none_a.html": [ [ - "/_mozilla/css/border_style_none_a.html", + "/_mozilla/css/border_style_none_a.html", [ [ - "/_mozilla/css/border_style_none_b.html", + "/_mozilla/css/border_style_none_b.html", "==" ] - ], + ], {} ] - ], + ], "css/borders_a.html": [ [ - "/_mozilla/css/borders_a.html", + "/_mozilla/css/borders_a.html", [ [ - "/_mozilla/css/borders_b.html", + "/_mozilla/css/borders_b.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_bg.html": [ [ - "/_mozilla/css/box_shadow_bg.html", + "/_mozilla/css/box_shadow_bg.html", [ [ - "/_mozilla/css/box_shadow_bg_ref.html", + "/_mozilla/css/box_shadow_bg_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_blur_a.html": [ [ - "/_mozilla/css/box_shadow_blur_a.html", + "/_mozilla/css/box_shadow_blur_a.html", [ [ - "/_mozilla/css/box_shadow_blur_ref.html", + "/_mozilla/css/box_shadow_blur_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/box_shadow_blur_fixed.html": [ [ - "/_mozilla/css/box_shadow_blur_fixed.html", + "/_mozilla/css/box_shadow_blur_fixed.html", [ [ - "/_mozilla/css/box_shadow_blur_fixed_ref.html", + "/_mozilla/css/box_shadow_blur_fixed_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_border_box_a.html": [ [ - "/_mozilla/css/box_shadow_border_box_a.html", + "/_mozilla/css/box_shadow_border_box_a.html", [ [ - "/_mozilla/css/box_shadow_border_box_ref.html", + "/_mozilla/css/box_shadow_border_box_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_default_color_a.html": [ [ - "/_mozilla/css/box_shadow_default_color_a.html", + "/_mozilla/css/box_shadow_default_color_a.html", [ [ - "/_mozilla/css/box_shadow_default_color_ref.html", + "/_mozilla/css/box_shadow_default_color_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_inset_a.html": [ [ - "/_mozilla/css/box_shadow_inset_a.html", + "/_mozilla/css/box_shadow_inset_a.html", [ [ - "/_mozilla/css/box_shadow_inset_ref.html", + "/_mozilla/css/box_shadow_inset_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_inset_bg.html": [ [ - "/_mozilla/css/box_shadow_inset_bg.html", + "/_mozilla/css/box_shadow_inset_bg.html", [ [ - "/_mozilla/css/box_shadow_inset_bg_ref.html", + "/_mozilla/css/box_shadow_inset_bg_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_inset_parsing_a.html": [ [ - "/_mozilla/css/box_shadow_inset_parsing_a.html", + "/_mozilla/css/box_shadow_inset_parsing_a.html", [ [ - "/_mozilla/css/box_shadow_inset_parsing_ref.html", + "/_mozilla/css/box_shadow_inset_parsing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_paint_order_a.html": [ [ - "/_mozilla/css/box_shadow_paint_order_a.html", + "/_mozilla/css/box_shadow_paint_order_a.html", [ [ - "/_mozilla/css/box_shadow_paint_order_ref.html", + "/_mozilla/css/box_shadow_paint_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_shadow_spread_a.html": [ [ - "/_mozilla/css/box_shadow_spread_a.html", + "/_mozilla/css/box_shadow_spread_a.html", [ [ - "/_mozilla/css/box_shadow_spread_ref.html", + "/_mozilla/css/box_shadow_spread_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_sizing_border_box_a.html": [ [ - "/_mozilla/css/box_sizing_border_box_a.html", + "/_mozilla/css/box_sizing_border_box_a.html", [ [ - "/_mozilla/css/box_sizing_border_box_ref.html", + "/_mozilla/css/box_sizing_border_box_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/box_sizing_sanity_check_a.html": [ [ - "/_mozilla/css/box_sizing_sanity_check_a.html", + "/_mozilla/css/box_sizing_sanity_check_a.html", [ [ - "/_mozilla/css/box_sizing_sanity_check_ref.html", + "/_mozilla/css/box_sizing_sanity_check_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/br.html": [ [ - "/_mozilla/css/br.html", + "/_mozilla/css/br.html", [ [ - "/_mozilla/css/br-ref.html", + "/_mozilla/css/br-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/bug-1361013-cousin-sharing.html": [ [ - "/_mozilla/css/bug-1361013-cousin-sharing.html", + "/_mozilla/css/bug-1361013-cousin-sharing.html", [ [ - "/_mozilla/css/bug-1361013-cousin-sharing-ref.html", + "/_mozilla/css/bug-1361013-cousin-sharing-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/button_css_width.html": [ [ - "/_mozilla/css/button_css_width.html", + "/_mozilla/css/button_css_width.html", [ [ - "/_mozilla/css/button_css_width_ref.html", + "/_mozilla/css/button_css_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/button_whitespace_a.html": [ [ - "/_mozilla/css/button_whitespace_a.html", + "/_mozilla/css/button_whitespace_a.html", [ [ - "/_mozilla/css/button_whitespace_ref.html", + "/_mozilla/css/button_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/calc-basic.html": [ [ - "/_mozilla/css/calc-basic.html", + "/_mozilla/css/calc-basic.html", [ [ - "/_mozilla/css/calc-basic-ref.html", + "/_mozilla/css/calc-basic-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/canvas_as_block_element_a.html": [ [ - "/_mozilla/css/canvas_as_block_element_a.html", + "/_mozilla/css/canvas_as_block_element_a.html", [ [ - "/_mozilla/css/canvas_as_block_element_ref.html", + "/_mozilla/css/canvas_as_block_element_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/canvas_linear_gradient_a.html": [ [ - "/_mozilla/css/canvas_linear_gradient_a.html", + "/_mozilla/css/canvas_linear_gradient_a.html", [ [ - "/_mozilla/css/canvas_linear_gradient_ref.html", + "/_mozilla/css/canvas_linear_gradient_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/canvas_over_area.html": [ [ - "/_mozilla/css/canvas_over_area.html", + "/_mozilla/css/canvas_over_area.html", [ [ - "/_mozilla/css/canvas_over_area_ref.html", + "/_mozilla/css/canvas_over_area_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/canvas_radial_gradient_a.html": [ [ - "/_mozilla/css/canvas_radial_gradient_a.html", + "/_mozilla/css/canvas_radial_gradient_a.html", [ [ - "/_mozilla/css/canvas_radial_gradient_ref.html", + "/_mozilla/css/canvas_radial_gradient_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/case-insensitive-font-family.html": [ [ - "/_mozilla/css/case-insensitive-font-family.html", + "/_mozilla/css/case-insensitive-font-family.html", [ [ - "/_mozilla/css/case-insensitive-font-family-ref.html", + "/_mozilla/css/case-insensitive-font-family-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/class-namespaces.html": [ [ - "/_mozilla/css/class-namespaces.html", + "/_mozilla/css/class-namespaces.html", [ [ - "/_mozilla/css/class-namespaces-ref.html", + "/_mozilla/css/class-namespaces-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/clear_generated_content_table_a.html": [ [ - "/_mozilla/css/clear_generated_content_table_a.html", + "/_mozilla/css/clear_generated_content_table_a.html", [ [ - "/_mozilla/css/clear_generated_content_table_ref.html", + "/_mozilla/css/clear_generated_content_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/clip_a.html": [ [ - "/_mozilla/css/clip_a.html", + "/_mozilla/css/clip_a.html", [ [ - "/_mozilla/css/clip_ref.html", + "/_mozilla/css/clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/complex_glyphs_a.html": [ [ - "/_mozilla/css/complex_glyphs_a.html", + "/_mozilla/css/complex_glyphs_a.html", [ [ - "/_mozilla/css/complex_glyphs_ref.html", + "/_mozilla/css/complex_glyphs_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/content_color.html": [ [ - "/_mozilla/css/content_color.html", + "/_mozilla/css/content_color.html", [ [ - "/_mozilla/css/content_color_ref.html", + "/_mozilla/css/content_color_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/counters_nested_a.html": [ [ - "/_mozilla/css/counters_nested_a.html", + "/_mozilla/css/counters_nested_a.html", [ [ - "/_mozilla/css/counters_nested_ref.html", + "/_mozilla/css/counters_nested_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/counters_simple_a.html": [ [ - "/_mozilla/css/counters_simple_a.html", + "/_mozilla/css/counters_simple_a.html", [ [ - "/_mozilla/css/counters_simple_ref.html", + "/_mozilla/css/counters_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-bottom.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-bottom.html", + "/_mozilla/css/css-position-3/position-sticky-bottom.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-bottom-ref.html", + "/_mozilla/css/css-position-3/position-sticky-bottom-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-flexbox.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-flexbox.html", + "/_mozilla/css/css-position-3/position-sticky-flexbox.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-flexbox-ref.html", + "/_mozilla/css/css-position-3/position-sticky-flexbox-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-grid.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-grid.html", + "/_mozilla/css/css-position-3/position-sticky-grid.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-grid-ref.html", + "/_mozilla/css/css-position-3/position-sticky-grid-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-inflow-position.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-inflow-position.html", + "/_mozilla/css/css-position-3/position-sticky-inflow-position.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-inflow-position-ref.html", + "/_mozilla/css/css-position-3/position-sticky-inflow-position-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-inline.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-inline.html", + "/_mozilla/css/css-position-3/position-sticky-inline.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-inline-ref.html", + "/_mozilla/css/css-position-3/position-sticky-inline-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-left.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-left.html", + "/_mozilla/css/css-position-3/position-sticky-left.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-left-ref.html", + "/_mozilla/css/css-position-3/position-sticky-left-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-margins.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-margins.html", + "/_mozilla/css/css-position-3/position-sticky-margins.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-margins-ref.html", + "/_mozilla/css/css-position-3/position-sticky-margins-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-bottom.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-bottom.html", + "/_mozilla/css/css-position-3/position-sticky-nested-bottom.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-bottom-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-bottom-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-inline.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-inline.html", + "/_mozilla/css/css-position-3/position-sticky-nested-inline.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-inline-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-inline-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-left.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-left.html", + "/_mozilla/css/css-position-3/position-sticky-nested-left.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-left-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-left-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-right.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-right.html", + "/_mozilla/css/css-position-3/position-sticky-nested-right.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-right-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-right-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-table.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-table.html", + "/_mozilla/css/css-position-3/position-sticky-nested-table.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-table-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-table-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-nested-top.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-top.html", + "/_mozilla/css/css-position-3/position-sticky-nested-top.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-nested-top-ref.html", + "/_mozilla/css/css-position-3/position-sticky-nested-top-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-overflow-padding.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-overflow-padding.html", + "/_mozilla/css/css-position-3/position-sticky-overflow-padding.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-overflow-padding-ref.html", + "/_mozilla/css/css-position-3/position-sticky-overflow-padding-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-right.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-right.html", + "/_mozilla/css/css-position-3/position-sticky-right.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-right-ref.html", + "/_mozilla/css/css-position-3/position-sticky-right-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-stacking-context.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-stacking-context.html", + "/_mozilla/css/css-position-3/position-sticky-stacking-context.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-stacking-context-ref.html", + "/_mozilla/css/css-position-3/position-sticky-stacking-context-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-tfoot-bottom.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tfoot-bottom.html", + "/_mozilla/css/css-position-3/position-sticky-table-tfoot-bottom.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tfoot-bottom-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-tfoot-bottom-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-th-bottom.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-bottom.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-bottom.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-bottom-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-bottom-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-th-left.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-left.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-left.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-left-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-left-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-th-right.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-right.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-right.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-right-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-right-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-th-top.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-top.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-top.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-th-top-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-th-top-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-thead-top.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-thead-top.html", + "/_mozilla/css/css-position-3/position-sticky-table-thead-top.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-thead-top-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-thead-top-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-tr-bottom.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tr-bottom.html", + "/_mozilla/css/css-position-3/position-sticky-table-tr-bottom.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tr-bottom-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-tr-bottom-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-table-tr-top.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tr-top.html", + "/_mozilla/css/css-position-3/position-sticky-table-tr-top.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-table-tr-top-ref.html", + "/_mozilla/css/css-position-3/position-sticky-table-tr-top-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-top.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-top.html", + "/_mozilla/css/css-position-3/position-sticky-top.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-top-ref.html", + "/_mozilla/css/css-position-3/position-sticky-top-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/css-position-3/position-sticky-writing-modes.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-writing-modes.html", + "/_mozilla/css/css-position-3/position-sticky-writing-modes.html", [ [ - "/_mozilla/css/css-position-3/position-sticky-writing-modes-ref.html", + "/_mozilla/css/css-position-3/position-sticky-writing-modes-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/data_img_a.html": [ [ - "/_mozilla/css/data_img_a.html", + "/_mozilla/css/data_img_a.html", [ [ - "/_mozilla/css/data_img_b.html", + "/_mozilla/css/data_img_b.html", "==" ] - ], + ], {} ] - ], + ], "css/deferred-paint.html": [ [ - "/_mozilla/css/deferred-paint.html", + "/_mozilla/css/deferred-paint.html", [ [ - "/_mozilla/css/deferred-paint-ref.html", + "/_mozilla/css/deferred-paint-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/direction_style_caching.html": [ [ - "/_mozilla/css/direction_style_caching.html", + "/_mozilla/css/direction_style_caching.html", [ [ - "/_mozilla/css/direction_style_caching_ref.html", + "/_mozilla/css/direction_style_caching_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/dirty_viewport.html": [ [ - "/_mozilla/css/dirty_viewport.html", + "/_mozilla/css/dirty_viewport.html", [ [ - "/_mozilla/css/dirty_viewport_ref.html", + "/_mozilla/css/dirty_viewport_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/display_table_cell_intrinsic_width_a.html": [ [ - "/_mozilla/css/display_table_cell_intrinsic_width_a.html", + "/_mozilla/css/display_table_cell_intrinsic_width_a.html", [ [ - "/_mozilla/css/display_table_cell_intrinsic_width_ref.html", + "/_mozilla/css/display_table_cell_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/ellipsis_font_panic.html": [ [ - "/_mozilla/css/ellipsis_font_panic.html", + "/_mozilla/css/ellipsis_font_panic.html", [ [ - "/_mozilla/css/ellipsis_font_panic-ref.html", + "/_mozilla/css/ellipsis_font_panic-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/empty_cells_a.html": [ [ - "/_mozilla/css/empty_cells_a.html", + "/_mozilla/css/empty_cells_a.html", [ [ - "/_mozilla/css/empty_cells_ref.html", + "/_mozilla/css/empty_cells_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/external_media_query_link.html": [ [ - "/_mozilla/css/external_media_query_link.html", + "/_mozilla/css/external_media_query_link.html", [ [ - "/_mozilla/css/external_media_query_ref.html", + "/_mozilla/css/external_media_query_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/external_media_query_style.html": [ [ - "/_mozilla/css/external_media_query_style.html", + "/_mozilla/css/external_media_query_style.html", [ [ - "/_mozilla/css/external_media_query_ref.html", + "/_mozilla/css/external_media_query_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/filter_inline_a.html": [ [ - "/_mozilla/css/filter_inline_a.html", + "/_mozilla/css/filter_inline_a.html", [ [ - "/_mozilla/css/filter_inline_ref.html", + "/_mozilla/css/filter_inline_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/filter_opacity_a.html": [ [ - "/_mozilla/css/filter_opacity_a.html", + "/_mozilla/css/filter_opacity_a.html", [ [ - "/_mozilla/css/filter_opacity_ref.html", + "/_mozilla/css/filter_opacity_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/filter_sepia_a.html": [ [ - "/_mozilla/css/filter_sepia_a.html", + "/_mozilla/css/filter_sepia_a.html", [ [ - "/_mozilla/css/filter_sepia_ref.html", + "/_mozilla/css/filter_sepia_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/first_child_pseudo_a.html": [ [ - "/_mozilla/css/first_child_pseudo_a.html", + "/_mozilla/css/first_child_pseudo_a.html", [ [ - "/_mozilla/css/first_child_pseudo_b.html", + "/_mozilla/css/first_child_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/first_of_type_pseudo_a.html": [ [ - "/_mozilla/css/first_of_type_pseudo_a.html", + "/_mozilla/css/first_of_type_pseudo_a.html", [ [ - "/_mozilla/css/first_of_type_pseudo_b.html", + "/_mozilla/css/first_of_type_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/fixed_percent.html": [ [ - "/_mozilla/css/fixed_percent.html", + "/_mozilla/css/fixed_percent.html", [ [ - "/_mozilla/css/fixed_percent_ref.html", + "/_mozilla/css/fixed_percent_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/fixed_position_css_clip.html": [ [ - "/_mozilla/css/fixed_position_css_clip.html", + "/_mozilla/css/fixed_position_css_clip.html", [ [ - "/_mozilla/css/fixed_position_css_clip_ref.html", + "/_mozilla/css/fixed_position_css_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/fixed_width_overrides_child_intrinsic_width_a.html": [ [ - "/_mozilla/css/fixed_width_overrides_child_intrinsic_width_a.html", + "/_mozilla/css/fixed_width_overrides_child_intrinsic_width_a.html", [ [ - "/_mozilla/css/fixed_width_overrides_child_intrinsic_width_ref.html", + "/_mozilla/css/fixed_width_overrides_child_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/flex-zero_lines.html": [ [ - "/_mozilla/css/flex-zero_lines.html", + "/_mozilla/css/flex-zero_lines.html", [ [ - "/_mozilla/css/flex-zero_lines_ref.html", + "/_mozilla/css/flex-zero_lines_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/flex_column_direction.html": [ [ - "/_mozilla/css/flex_column_direction.html", + "/_mozilla/css/flex_column_direction.html", [ [ - "/_mozilla/css/flex_column_direction_ref.html", + "/_mozilla/css/flex_column_direction_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/flex_nochild.html": [ [ - "/_mozilla/css/flex_nochild.html", + "/_mozilla/css/flex_nochild.html", [ [ - "/_mozilla/css/flex_nochild-ref.html", + "/_mozilla/css/flex_nochild-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/flex_root_percent_size.html": [ [ - "/_mozilla/css/flex_root_percent_size.html", + "/_mozilla/css/flex_root_percent_size.html", [ [ - "/_mozilla/css/flex_root_percent_size_ref.html", + "/_mozilla/css/flex_root_percent_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/flex_row_direction.html": [ [ - "/_mozilla/css/flex_row_direction.html", + "/_mozilla/css/flex_row_direction.html", [ [ - "/_mozilla/css/flex_row_direction_ref.html", + "/_mozilla/css/flex_row_direction_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_clearance_a.html": [ [ - "/_mozilla/css/float_clearance_a.html", + "/_mozilla/css/float_clearance_a.html", [ [ - "/_mozilla/css/float_clearance_ref.html", + "/_mozilla/css/float_clearance_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_clearance_intrinsic_width_a.html": [ [ - "/_mozilla/css/float_clearance_intrinsic_width_a.html", + "/_mozilla/css/float_clearance_intrinsic_width_a.html", [ [ - "/_mozilla/css/float_clearance_intrinsic_width_ref.html", + "/_mozilla/css/float_clearance_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_cleared_with_just_height.html": [ [ - "/_mozilla/css/float_cleared_with_just_height.html", + "/_mozilla/css/float_cleared_with_just_height.html", [ [ - "/_mozilla/css/float_cleared_with_just_height_ref.html", + "/_mozilla/css/float_cleared_with_just_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_intrinsic_height.html": [ [ - "/_mozilla/css/float_intrinsic_height.html", + "/_mozilla/css/float_intrinsic_height.html", [ [ - "/_mozilla/css/float_intrinsic_height_ref.html", + "/_mozilla/css/float_intrinsic_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_intrinsic_width_a.html": [ [ - "/_mozilla/css/float_intrinsic_width_a.html", + "/_mozilla/css/float_intrinsic_width_a.html", [ [ - "/_mozilla/css/float_intrinsic_width_ref.html", + "/_mozilla/css/float_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_overflow_area_a.html": [ [ - "/_mozilla/css/float_overflow_area_a.html", + "/_mozilla/css/float_overflow_area_a.html", [ [ - "/_mozilla/css/float_overflow_area_ref.html", + "/_mozilla/css/float_overflow_area_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_positioned_pseudo_stacking_context.html": [ [ - "/_mozilla/css/float_positioned_pseudo_stacking_context.html", + "/_mozilla/css/float_positioned_pseudo_stacking_context.html", [ [ - "/_mozilla/css/float_positioned_pseudo_stacking_context_ref.html", + "/_mozilla/css/float_positioned_pseudo_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_right_intrinsic_width_a.html": [ [ - "/_mozilla/css/float_right_intrinsic_width_a.html", + "/_mozilla/css/float_right_intrinsic_width_a.html", [ [ - "/_mozilla/css/float_right_intrinsic_width_ref.html", + "/_mozilla/css/float_right_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_speculation_negative_inline_margins_a.html": [ [ - "/_mozilla/css/float_speculation_negative_inline_margins_a.html", + "/_mozilla/css/float_speculation_negative_inline_margins_a.html", [ [ - "/_mozilla/css/float_speculation_negative_inline_margins_ref.html", + "/_mozilla/css/float_speculation_negative_inline_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_table_a.html": [ [ - "/_mozilla/css/float_table_a.html", + "/_mozilla/css/float_table_a.html", [ [ - "/_mozilla/css/float_table_ref.html", + "/_mozilla/css/float_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/float_under_top_margin_a.html": [ [ - "/_mozilla/css/float_under_top_margin_a.html", + "/_mozilla/css/float_under_top_margin_a.html", [ [ - "/_mozilla/css/float_under_top_margin_ref.html", + "/_mozilla/css/float_under_top_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floated_generated_content_a.html": [ [ - "/_mozilla/css/floated_generated_content_a.html", + "/_mozilla/css/floated_generated_content_a.html", [ [ - "/_mozilla/css/floated_generated_content_b.html", + "/_mozilla/css/floated_generated_content_b.html", "==" ] - ], + ], {} ] - ], + ], "css/floated_list_item_a.html": [ [ - "/_mozilla/css/floated_list_item_a.html", + "/_mozilla/css/floated_list_item_a.html", [ [ - "/_mozilla/css/floated_list_item_ref.html", + "/_mozilla/css/floated_list_item_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floated_negative_margins_a.html": [ [ - "/_mozilla/css/floated_negative_margins_a.html", + "/_mozilla/css/floated_negative_margins_a.html", [ [ - "/_mozilla/css/floated_negative_margins_ref.html", + "/_mozilla/css/floated_negative_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floated_table_with_margin_a.html": [ [ - "/_mozilla/css/floated_table_with_margin_a.html", + "/_mozilla/css/floated_table_with_margin_a.html", [ [ - "/_mozilla/css/floated_table_with_margin_ref.html", + "/_mozilla/css/floated_table_with_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floats_inline_margins_a.html": [ [ - "/_mozilla/css/floats_inline_margins_a.html", + "/_mozilla/css/floats_inline_margins_a.html", [ [ - "/_mozilla/css/floats_inline_margins_ref.html", + "/_mozilla/css/floats_inline_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floats_margin_collapse_a.html": [ [ - "/_mozilla/css/floats_margin_collapse_a.html", + "/_mozilla/css/floats_margin_collapse_a.html", [ [ - "/_mozilla/css/floats_margin_collapse_ref.html", + "/_mozilla/css/floats_margin_collapse_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floats_margin_collapse_with_clearance_a.html": [ [ - "/_mozilla/css/floats_margin_collapse_with_clearance_a.html", + "/_mozilla/css/floats_margin_collapse_with_clearance_a.html", [ [ - "/_mozilla/css/floats_margin_collapse_with_clearance_ref.html", + "/_mozilla/css/floats_margin_collapse_with_clearance_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/floats_percentage_width_a.html": [ [ - "/_mozilla/css/floats_percentage_width_a.html", + "/_mozilla/css/floats_percentage_width_a.html", [ [ - "/_mozilla/css/floats_percentage_width_ref.html", + "/_mozilla/css/floats_percentage_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/focus_selector.html": [ [ - "/_mozilla/css/focus_selector.html", + "/_mozilla/css/focus_selector.html", [ [ - "/_mozilla/css/focus_selector_ref.html", + "/_mozilla/css/focus_selector_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_advance.html": [ [ - "/_mozilla/css/font_advance.html", + "/_mozilla/css/font_advance.html", [ [ - "/_mozilla/css/font_advance_ref.html", + "/_mozilla/css/font_advance_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_color_attribute_a.html": [ [ - "/_mozilla/css/font_color_attribute_a.html", + "/_mozilla/css/font_color_attribute_a.html", [ [ - "/_mozilla/css/font_color_attribute_ref.html", + "/_mozilla/css/font_color_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_color_attribute_change.html": [ [ - "/_mozilla/css/font_color_attribute_change.html", + "/_mozilla/css/font_color_attribute_change.html", [ [ - "/_mozilla/css/font_color_attribute_change_ref.html", + "/_mozilla/css/font_color_attribute_change_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_face_attribute.html": [ [ - "/_mozilla/css/font_face_attribute.html", + "/_mozilla/css/font_face_attribute.html", [ [ - "/_mozilla/css/font_face_attribute_ref.html", + "/_mozilla/css/font_face_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_fallback_01.html": [ [ - "/_mozilla/css/font_fallback_01.html", + "/_mozilla/css/font_fallback_01.html", [ [ - "/_mozilla/css/font_fallback_failed_ref.html", + "/_mozilla/css/font_fallback_failed_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/font_fallback_02.html": [ [ - "/_mozilla/css/font_fallback_02.html", + "/_mozilla/css/font_fallback_02.html", [ [ - "/_mozilla/css/font_fallback_failed_ref.html", + "/_mozilla/css/font_fallback_failed_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/font_fallback_03.html": [ [ - "/_mozilla/css/font_fallback_03.html", + "/_mozilla/css/font_fallback_03.html", [ [ - "/_mozilla/css/font_fallback_failed_ref.html", + "/_mozilla/css/font_fallback_failed_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/font_size.html": [ [ - "/_mozilla/css/font_size.html", + "/_mozilla/css/font_size.html", [ [ - "/_mozilla/css/font_size_ref.html", + "/_mozilla/css/font_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/font_style.html": [ [ - "/_mozilla/css/font_style.html", + "/_mozilla/css/font_style.html", [ [ - "/_mozilla/css/font_style_ref.html", + "/_mozilla/css/font_style_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/height_compute_reset.html": [ [ - "/_mozilla/css/height_compute_reset.html", + "/_mozilla/css/height_compute_reset.html", [ [ - "/_mozilla/css/height_compute.html", + "/_mozilla/css/height_compute.html", "==" ] - ], + ], {} ] - ], + ], "css/hide_after_create.html": [ [ - "/_mozilla/css/hide_after_create.html", + "/_mozilla/css/hide_after_create.html", [ [ - "/_mozilla/css/hide_after_create_ref.html", + "/_mozilla/css/hide_after_create_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/bg_color.html": [ [ - "/_mozilla/css/iframe/bg_color.html", + "/_mozilla/css/iframe/bg_color.html", [ [ - "/_mozilla/css/iframe/bg_color_ref.html", + "/_mozilla/css/iframe/bg_color_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/frameborder_a.html": [ [ - "/_mozilla/css/iframe/frameborder_a.html", + "/_mozilla/css/iframe/frameborder_a.html", [ [ - "/_mozilla/css/iframe/frameborder_ref.html", + "/_mozilla/css/iframe/frameborder_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/hide_after_load.html": [ [ - "/_mozilla/css/iframe/hide_after_load.html", + "/_mozilla/css/iframe/hide_after_load.html", [ [ - "/_mozilla/css/iframe/hide_after_load_ref.html", + "/_mozilla/css/iframe/hide_after_load_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/hide_and_show.html": [ [ - "/_mozilla/css/iframe/hide_and_show.html", + "/_mozilla/css/iframe/hide_and_show.html", [ [ - "/_mozilla/css/iframe/hide_and_show_ref.html", + "/_mozilla/css/iframe/hide_and_show_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/hide_layers1.html": [ [ - "/_mozilla/css/iframe/hide_layers1.html", + "/_mozilla/css/iframe/hide_layers1.html", [ [ - "/_mozilla/css/iframe/hide_layers_ref.html", + "/_mozilla/css/iframe/hide_layers_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/hide_layers2.html": [ [ - "/_mozilla/css/iframe/hide_layers2.html", + "/_mozilla/css/iframe/hide_layers2.html", [ [ - "/_mozilla/css/iframe/hide_layers_ref.html", + "/_mozilla/css/iframe/hide_layers_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/multiple_external.html": [ [ - "/_mozilla/css/iframe/multiple_external.html", + "/_mozilla/css/iframe/multiple_external.html", [ [ - "/_mozilla/css/iframe/multiple_external_ref.html", + "/_mozilla/css/iframe/multiple_external_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/navigation.html": [ [ - "/_mozilla/css/iframe/navigation.html", + "/_mozilla/css/iframe/navigation.html", [ [ - "/_mozilla/css/iframe/navigation_ref.html", + "/_mozilla/css/iframe/navigation_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/overflow.html": [ [ - "/_mozilla/css/iframe/overflow.html", + "/_mozilla/css/iframe/overflow.html", [ [ - "/_mozilla/css/iframe/overflow_ref.html", + "/_mozilla/css/iframe/overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/positioning_margin.html": [ [ - "/_mozilla/css/iframe/positioning_margin.html", + "/_mozilla/css/iframe/positioning_margin.html", [ [ - "/_mozilla/css/iframe/positioning_margin_ref.html", + "/_mozilla/css/iframe/positioning_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple.html": [ [ - "/_mozilla/css/iframe/simple.html", + "/_mozilla/css/iframe/simple.html", [ [ - "/_mozilla/css/iframe/simple_ref.html", + "/_mozilla/css/iframe/simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_default.html": [ [ - "/_mozilla/css/iframe/simple_inline_default.html", + "/_mozilla/css/iframe/simple_inline_default.html", [ [ - "/_mozilla/css/iframe/simple_inline_default_ref.html", + "/_mozilla/css/iframe/simple_inline_default_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_height.html": [ [ - "/_mozilla/css/iframe/simple_inline_height.html", + "/_mozilla/css/iframe/simple_inline_height.html", [ [ - "/_mozilla/css/iframe/simple_inline_height_ref.html", + "/_mozilla/css/iframe/simple_inline_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_max.html": [ [ - "/_mozilla/css/iframe/simple_inline_max.html", + "/_mozilla/css/iframe/simple_inline_max.html", [ [ - "/_mozilla/css/iframe/simple_inline_max_ref.html", + "/_mozilla/css/iframe/simple_inline_max_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_min.html": [ [ - "/_mozilla/css/iframe/simple_inline_min.html", + "/_mozilla/css/iframe/simple_inline_min.html", [ [ - "/_mozilla/css/iframe/simple_inline_min_ref.html", + "/_mozilla/css/iframe/simple_inline_min_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_width.html": [ [ - "/_mozilla/css/iframe/simple_inline_width.html", + "/_mozilla/css/iframe/simple_inline_width.html", [ [ - "/_mozilla/css/iframe/simple_inline_width_ref.html", + "/_mozilla/css/iframe/simple_inline_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_width_height.html": [ [ - "/_mozilla/css/iframe/simple_inline_width_height.html", + "/_mozilla/css/iframe/simple_inline_width_height.html", [ [ - "/_mozilla/css/iframe/simple_inline_width_height_ref.html", + "/_mozilla/css/iframe/simple_inline_width_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/simple_inline_width_percentage.html": [ [ - "/_mozilla/css/iframe/simple_inline_width_percentage.html", + "/_mozilla/css/iframe/simple_inline_width_percentage.html", [ [ - "/_mozilla/css/iframe/simple_inline_width_percentage_ref.html", + "/_mozilla/css/iframe/simple_inline_width_percentage_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/size_attributes.html": [ [ - "/_mozilla/css/iframe/size_attributes.html", + "/_mozilla/css/iframe/size_attributes.html", [ [ - "/_mozilla/css/iframe/size_attributes_ref.html", + "/_mozilla/css/iframe/size_attributes_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/size_attributes_vertical_writing_mode.html": [ [ - "/_mozilla/css/iframe/size_attributes_vertical_writing_mode.html", + "/_mozilla/css/iframe/size_attributes_vertical_writing_mode.html", [ [ - "/_mozilla/css/iframe/size_attributes_vertical_writing_mode_ref.html", + "/_mozilla/css/iframe/size_attributes_vertical_writing_mode_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/stacking_context.html": [ [ - "/_mozilla/css/iframe/stacking_context.html", + "/_mozilla/css/iframe/stacking_context.html", [ [ - "/_mozilla/css/iframe/stacking_context_ref.html", + "/_mozilla/css/iframe/stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/iframe/stacking_context_position_a.html": [ [ - "/_mozilla/css/iframe/stacking_context_position_a.html", + "/_mozilla/css/iframe/stacking_context_position_a.html", [ [ - "/_mozilla/css/iframe/stacking_context_position_ref.html", + "/_mozilla/css/iframe/stacking_context_position_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/image_percentage_dimen.html": [ [ - "/_mozilla/css/image_percentage_dimen.html", + "/_mozilla/css/image_percentage_dimen.html", [ [ - "/_mozilla/css/image_percentage_dimen_ref.html", + "/_mozilla/css/image_percentage_dimen_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/image_percentage_height.html": [ [ - "/_mozilla/css/image_percentage_height.html", + "/_mozilla/css/image_percentage_height.html", [ [ - "/_mozilla/css/image_percentage_height_ref.html", + "/_mozilla/css/image_percentage_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/image_rendering_auto_a.html": [ [ - "/_mozilla/css/image_rendering_auto_a.html", + "/_mozilla/css/image_rendering_auto_a.html", [ [ - "/_mozilla/css/image_rendering_pixelated_ref.html", + "/_mozilla/css/image_rendering_pixelated_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/image_rendering_pixelated_a.html": [ [ - "/_mozilla/css/image_rendering_pixelated_a.html", + "/_mozilla/css/image_rendering_pixelated_a.html", [ [ - "/_mozilla/css/image_rendering_pixelated_ref.html", + "/_mozilla/css/image_rendering_pixelated_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_block_display_a.html": [ [ - "/_mozilla/css/img_block_display_a.html", + "/_mozilla/css/img_block_display_a.html", [ [ - "/_mozilla/css/img_block_display_ref.html", + "/_mozilla/css/img_block_display_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_block_maxwidth_a.html": [ [ - "/_mozilla/css/img_block_maxwidth_a.html", + "/_mozilla/css/img_block_maxwidth_a.html", [ [ - "/_mozilla/css/img_block_maxwidth_ref.html", + "/_mozilla/css/img_block_maxwidth_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_block_maxwidth_b.html": [ [ - "/_mozilla/css/img_block_maxwidth_b.html", + "/_mozilla/css/img_block_maxwidth_b.html", [ [ - "/_mozilla/css/img_block_maxwidth_ref.html", + "/_mozilla/css/img_block_maxwidth_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_dynamic_remove.html": [ [ - "/_mozilla/css/img_dynamic_remove.html", + "/_mozilla/css/img_dynamic_remove.html", [ [ - "/_mozilla/css/img_dynamic_remove_ref.html", + "/_mozilla/css/img_dynamic_remove_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_padding_a.html": [ [ - "/_mozilla/css/img_padding_a.html", + "/_mozilla/css/img_padding_a.html", [ [ - "/_mozilla/css/img_padding_b.html", + "/_mozilla/css/img_padding_b.html", "==" ] - ], + ], {} ] - ], + ], "css/img_simple.html": [ [ - "/_mozilla/css/img_simple.html", + "/_mozilla/css/img_simple.html", [ [ - "/_mozilla/css/img_simple_ref.html", + "/_mozilla/css/img_simple_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/img_size_a.html": [ [ - "/_mozilla/css/img_size_a.html", + "/_mozilla/css/img_size_a.html", [ [ - "/_mozilla/css/img_size_b.html", + "/_mozilla/css/img_size_b.html", "==" ] - ], + ], {} ] - ], + ], "css/img_width_attribute_intrinsic_width_a.html": [ [ - "/_mozilla/css/img_width_attribute_intrinsic_width_a.html", + "/_mozilla/css/img_width_attribute_intrinsic_width_a.html", [ [ - "/_mozilla/css/img_width_attribute_intrinsic_width_ref.html", + "/_mozilla/css/img_width_attribute_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/img_width_style_intrinsic_width_a.html": [ [ - "/_mozilla/css/img_width_style_intrinsic_width_a.html", + "/_mozilla/css/img_width_style_intrinsic_width_a.html", [ [ - "/_mozilla/css/img_width_style_intrinsic_width_ref.html", + "/_mozilla/css/img_width_style_intrinsic_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_float_a.html": [ [ - "/_mozilla/css/incremental_float_a.html", + "/_mozilla/css/incremental_float_a.html", [ [ - "/_mozilla/css/incremental_float_ref.html", + "/_mozilla/css/incremental_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_inline_layout_a.html": [ [ - "/_mozilla/css/incremental_inline_layout_a.html", + "/_mozilla/css/incremental_inline_layout_a.html", [ [ - "/_mozilla/css/incremental_inline_layout_ref.html", + "/_mozilla/css/incremental_inline_layout_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_letter_spacing_a.html": [ [ - "/_mozilla/css/incremental_letter_spacing_a.html", + "/_mozilla/css/incremental_letter_spacing_a.html", [ [ - "/_mozilla/css/incremental_letter_spacing_ref.html", + "/_mozilla/css/incremental_letter_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_position.html": [ [ - "/_mozilla/css/incremental_position.html", + "/_mozilla/css/incremental_position.html", [ [ - "/_mozilla/css/incremental_position_ref.html", + "/_mozilla/css/incremental_position_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_text_color_a.html": [ [ - "/_mozilla/css/incremental_text_color_a.html", + "/_mozilla/css/incremental_text_color_a.html", [ [ - "/_mozilla/css/incremental_text_color_ref.html", + "/_mozilla/css/incremental_text_color_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_trailing_whitespace_a.html": [ [ - "/_mozilla/css/incremental_trailing_whitespace_a.html", + "/_mozilla/css/incremental_trailing_whitespace_a.html", [ [ - "/_mozilla/css/incremental_trailing_whitespace_ref.html", + "/_mozilla/css/incremental_trailing_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/incremental_visibility_a.html": [ [ - "/_mozilla/css/incremental_visibility_a.html", + "/_mozilla/css/incremental_visibility_a.html", [ [ - "/_mozilla/css/incremental_visibility_ref.html", + "/_mozilla/css/incremental_visibility_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_hypothetical_baseline_a.html": [ [ - "/_mozilla/css/inline_absolute_hypothetical_baseline_a.html", + "/_mozilla/css/inline_absolute_hypothetical_baseline_a.html", [ [ - "/_mozilla/css/inline_absolute_hypothetical_baseline_ref.html", + "/_mozilla/css/inline_absolute_hypothetical_baseline_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_hypothetical_clip_a.html": [ [ - "/_mozilla/css/inline_absolute_hypothetical_clip_a.html", + "/_mozilla/css/inline_absolute_hypothetical_clip_a.html", [ [ - "/_mozilla/css/inline_absolute_hypothetical_clip_ref.html", + "/_mozilla/css/inline_absolute_hypothetical_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_hypothetical_line_metrics_a.html": [ [ - "/_mozilla/css/inline_absolute_hypothetical_line_metrics_a.html", + "/_mozilla/css/inline_absolute_hypothetical_line_metrics_a.html", [ [ - "/_mozilla/css/inline_absolute_hypothetical_line_metrics_ref.html", + "/_mozilla/css/inline_absolute_hypothetical_line_metrics_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_hypothetical_margin_a.html": [ [ - "/_mozilla/css/inline_absolute_hypothetical_margin_a.html", + "/_mozilla/css/inline_absolute_hypothetical_margin_a.html", [ [ - "/_mozilla/css/inline_absolute_hypothetical_margin_ref.html", + "/_mozilla/css/inline_absolute_hypothetical_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_hypothetical_metrics_a.html": [ [ - "/_mozilla/css/inline_absolute_hypothetical_metrics_a.html", + "/_mozilla/css/inline_absolute_hypothetical_metrics_a.html", [ [ - "/_mozilla/css/inline_absolute_hypothetical_metrics_ref.html", + "/_mozilla/css/inline_absolute_hypothetical_metrics_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_absolute_out_of_flow_a.html": [ [ - "/_mozilla/css/inline_absolute_out_of_flow_a.html", + "/_mozilla/css/inline_absolute_out_of_flow_a.html", [ [ - "/_mozilla/css/inline_absolute_out_of_flow_ref.html", + "/_mozilla/css/inline_absolute_out_of_flow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_background_a.html": [ [ - "/_mozilla/css/inline_background_a.html", + "/_mozilla/css/inline_background_a.html", [ [ - "/_mozilla/css/inline_background_ref.html", + "/_mozilla/css/inline_background_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/inline_block_absolute_hypothetical_a.html": [ [ - "/_mozilla/css/inline_block_absolute_hypothetical_a.html", + "/_mozilla/css/inline_block_absolute_hypothetical_a.html", [ [ - "/_mozilla/css/inline_block_absolute_hypothetical_ref.html", + "/_mozilla/css/inline_block_absolute_hypothetical_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_baseline_a.html": [ [ - "/_mozilla/css/inline_block_baseline_a.html", + "/_mozilla/css/inline_block_baseline_a.html", [ [ - "/_mozilla/css/inline_block_baseline_ref.html", + "/_mozilla/css/inline_block_baseline_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_block_direction_margins_a.html": [ [ - "/_mozilla/css/inline_block_block_direction_margins_a.html", + "/_mozilla/css/inline_block_block_direction_margins_a.html", [ [ - "/_mozilla/css/inline_block_block_direction_margins_ref.html", + "/_mozilla/css/inline_block_block_direction_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_border_a.html": [ [ - "/_mozilla/css/inline_block_border_a.html", + "/_mozilla/css/inline_block_border_a.html", [ [ - "/_mozilla/css/inline_block_border_ref.html", + "/_mozilla/css/inline_block_border_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_border_intrinsic_size_a.html": [ [ - "/_mozilla/css/inline_block_border_intrinsic_size_a.html", + "/_mozilla/css/inline_block_border_intrinsic_size_a.html", [ [ - "/_mozilla/css/inline_block_border_intrinsic_size_ref.html", + "/_mozilla/css/inline_block_border_intrinsic_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_centering_a.html": [ [ - "/_mozilla/css/inline_block_centering_a.html", + "/_mozilla/css/inline_block_centering_a.html", [ [ - "/_mozilla/css/inline_block_centering_ref.html", + "/_mozilla/css/inline_block_centering_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_explicit_height_a.html": [ [ - "/_mozilla/css/inline_block_explicit_height_a.html", + "/_mozilla/css/inline_block_explicit_height_a.html", [ [ - "/_mozilla/css/inline_block_explicit_height_ref.html", + "/_mozilla/css/inline_block_explicit_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_height_with_out_of_flow_child_a.html": [ [ - "/_mozilla/css/inline_block_height_with_out_of_flow_child_a.html", + "/_mozilla/css/inline_block_height_with_out_of_flow_child_a.html", [ [ - "/_mozilla/css/inline_block_height_with_out_of_flow_child_ref.html", + "/_mozilla/css/inline_block_height_with_out_of_flow_child_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_img_a.html": [ [ - "/_mozilla/css/inline_block_img_a.html", + "/_mozilla/css/inline_block_img_a.html", [ [ - "/_mozilla/css/inline_block_img_ref.html", + "/_mozilla/css/inline_block_img_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_margin_a.html": [ [ - "/_mozilla/css/inline_block_margin_a.html", + "/_mozilla/css/inline_block_margin_a.html", [ [ - "/_mozilla/css/inline_block_margin_ref.html", + "/_mozilla/css/inline_block_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_margin_auto_a.html": [ [ - "/_mozilla/css/inline_block_margin_auto_a.html", + "/_mozilla/css/inline_block_margin_auto_a.html", [ [ - "/_mozilla/css/inline_block_margin_auto_ref.html", + "/_mozilla/css/inline_block_margin_auto_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_margin_auto_zero_a.html": [ [ - "/_mozilla/css/inline_block_margin_auto_zero_a.html", + "/_mozilla/css/inline_block_margin_auto_zero_a.html", [ [ - "/_mozilla/css/inline_block_margin_auto_zero_ref.html", + "/_mozilla/css/inline_block_margin_auto_zero_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_min_width.html": [ [ - "/_mozilla/css/inline_block_min_width.html", + "/_mozilla/css/inline_block_min_width.html", [ [ - "/_mozilla/css/inline_block_min_width_ref.html", + "/_mozilla/css/inline_block_min_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_nested_margin.html": [ [ - "/_mozilla/css/inline_block_nested_margin.html", + "/_mozilla/css/inline_block_nested_margin.html", [ [ - "/_mozilla/css/inline_block_nested_margin_ref.html", + "/_mozilla/css/inline_block_nested_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_opacity_change.html": [ [ - "/_mozilla/css/inline_block_opacity_change.html", + "/_mozilla/css/inline_block_opacity_change.html", [ [ - "/_mozilla/css/inline_block_opacity_change_ref.html", + "/_mozilla/css/inline_block_opacity_change_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_overflow_hidden_a.html": [ [ - "/_mozilla/css/inline_block_overflow_hidden_a.html", + "/_mozilla/css/inline_block_overflow_hidden_a.html", [ [ - "/_mozilla/css/inline_block_overflow_hidden_ref.html", + "/_mozilla/css/inline_block_overflow_hidden_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_parent_padding_a.html": [ [ - "/_mozilla/css/inline_block_parent_padding_a.html", + "/_mozilla/css/inline_block_parent_padding_a.html", [ [ - "/_mozilla/css/inline_block_parent_padding_ref.html", + "/_mozilla/css/inline_block_parent_padding_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_parent_width.html": [ [ - "/_mozilla/css/inline_block_parent_width.html", + "/_mozilla/css/inline_block_parent_width.html", [ [ - "/_mozilla/css/inline_block_parent_width_ref.html", + "/_mozilla/css/inline_block_parent_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_parent_width_percentage.html": [ [ - "/_mozilla/css/inline_block_parent_width_percentage.html", + "/_mozilla/css/inline_block_parent_width_percentage.html", [ [ - "/_mozilla/css/inline_block_parent_width_ref.html", + "/_mozilla/css/inline_block_parent_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_percentage_height_a.html": [ [ - "/_mozilla/css/inline_block_percentage_height_a.html", + "/_mozilla/css/inline_block_percentage_height_a.html", [ [ - "/_mozilla/css/inline_block_percentage_height_ref.html", + "/_mozilla/css/inline_block_percentage_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_percentage_margin.html": [ [ - "/_mozilla/css/inline_block_percentage_margin.html", + "/_mozilla/css/inline_block_percentage_margin.html", [ [ - "/_mozilla/css/inline_block_percentage_margin_ref.html", + "/_mozilla/css/inline_block_percentage_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_stacking_context_a.html": [ [ - "/_mozilla/css/inline_block_stacking_context_a.html", + "/_mozilla/css/inline_block_stacking_context_a.html", [ [ - "/_mozilla/css/inline_block_stacking_context_ref.html", + "/_mozilla/css/inline_block_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_block_with_margin_a.html": [ [ - "/_mozilla/css/inline_block_with_margin_a.html", + "/_mozilla/css/inline_block_with_margin_a.html", [ [ - "/_mozilla/css/inline_block_with_margin_ref.html", + "/_mozilla/css/inline_block_with_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_border_baseline_a.html": [ [ - "/_mozilla/css/inline_border_baseline_a.html", + "/_mozilla/css/inline_border_baseline_a.html", [ [ - "/_mozilla/css/inline_border_baseline_ref.html", + "/_mozilla/css/inline_border_baseline_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_element_border_a.html": [ [ - "/_mozilla/css/inline_element_border_a.html", + "/_mozilla/css/inline_element_border_a.html", [ [ - "/_mozilla/css/inline_element_border_ref.html", + "/_mozilla/css/inline_element_border_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_element_padding_margin.html": [ [ - "/_mozilla/css/inline_element_padding_margin.html", + "/_mozilla/css/inline_element_padding_margin.html", [ [ - "/_mozilla/css/inline_element_padding_margin_ref.html", + "/_mozilla/css/inline_element_padding_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_font_size_zero_a.html": [ [ - "/_mozilla/css/inline_font_size_zero_a.html", + "/_mozilla/css/inline_font_size_zero_a.html", [ [ - "/_mozilla/css/inline_font_size_zero_ref.html", + "/_mozilla/css/inline_font_size_zero_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_hypothetical_box_a.html": [ [ - "/_mozilla/css/inline_hypothetical_box_a.html", + "/_mozilla/css/inline_hypothetical_box_a.html", [ [ - "/_mozilla/css/inline_hypothetical_box_ref.html", + "/_mozilla/css/inline_hypothetical_box_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_margin_multiple_fragments_a.html": [ [ - "/_mozilla/css/inline_margin_multiple_fragments_a.html", + "/_mozilla/css/inline_margin_multiple_fragments_a.html", [ [ - "/_mozilla/css/inline_margin_multiple_fragments_ref.html", + "/_mozilla/css/inline_margin_multiple_fragments_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_margin_nbsp.html": [ [ - "/_mozilla/css/inline_margin_nbsp.html", + "/_mozilla/css/inline_margin_nbsp.html", [ [ - "/_mozilla/css/inline_margin_nbsp_ref.html", + "/_mozilla/css/inline_margin_nbsp_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_margins_a.html": [ [ - "/_mozilla/css/inline_margins_a.html", + "/_mozilla/css/inline_margins_a.html", [ [ - "/_mozilla/css/inline_margins_ref.html", + "/_mozilla/css/inline_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_margins_intrinsic_size_a.html": [ [ - "/_mozilla/css/inline_margins_intrinsic_size_a.html", + "/_mozilla/css/inline_margins_intrinsic_size_a.html", [ [ - "/_mozilla/css/inline_margins_intrinsic_size_ref.html", + "/_mozilla/css/inline_margins_intrinsic_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_padding_a.html": [ [ - "/_mozilla/css/inline_padding_a.html", + "/_mozilla/css/inline_padding_a.html", [ [ - "/_mozilla/css/inline_padding_b.html", + "/_mozilla/css/inline_padding_b.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_stacking_context.html": [ [ - "/_mozilla/css/inline_stacking_context.html", + "/_mozilla/css/inline_stacking_context.html", [ [ - "/_mozilla/css/inline_stacking_context_ref.html", + "/_mozilla/css/inline_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_text_align_a.html": [ [ - "/_mozilla/css/inline_text_align_a.html", + "/_mozilla/css/inline_text_align_a.html", [ [ - "/_mozilla/css/inline_text_align_b.html", + "/_mozilla/css/inline_text_align_b.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_whitespace_a.html": [ [ - "/_mozilla/css/inline_whitespace_a.html", + "/_mozilla/css/inline_whitespace_a.html", [ [ - "/_mozilla/css/inline_whitespace_ref.html", + "/_mozilla/css/inline_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inline_whitespace_b.html": [ [ - "/_mozilla/css/inline_whitespace_b.html", + "/_mozilla/css/inline_whitespace_b.html", [ [ - "/_mozilla/css/inline_whitespace_ref.html", + "/_mozilla/css/inline_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_alignment_a.html": [ [ - "/_mozilla/css/input_alignment_a.html", + "/_mozilla/css/input_alignment_a.html", [ [ - "/_mozilla/css/input_alignment_ref.html", + "/_mozilla/css/input_alignment_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_button_margins_a.html": [ [ - "/_mozilla/css/input_button_margins_a.html", + "/_mozilla/css/input_button_margins_a.html", [ [ - "/_mozilla/css/input_button_margins_ref.html", + "/_mozilla/css/input_button_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_button_size_a.html": [ [ - "/_mozilla/css/input_button_size_a.html", + "/_mozilla/css/input_button_size_a.html", [ [ - "/_mozilla/css/input_button_size_ref.html", + "/_mozilla/css/input_button_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_empty_equiv.html": [ [ - "/_mozilla/css/input_empty_equiv.html", + "/_mozilla/css/input_empty_equiv.html", [ [ - "/_mozilla/css/input_empty_equiv_ref.html", + "/_mozilla/css/input_empty_equiv_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_height_a.html": [ [ - "/_mozilla/css/input_height_a.html", + "/_mozilla/css/input_height_a.html", [ [ - "/_mozilla/css/input_height_ref.html", + "/_mozilla/css/input_height_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/input_insertion_point_empty_a.html": [ [ - "/_mozilla/css/input_insertion_point_empty_a.html", + "/_mozilla/css/input_insertion_point_empty_a.html", [ [ - "/_mozilla/css/input_insertion_point_empty_ref.html", + "/_mozilla/css/input_insertion_point_empty_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/input_line_height.html": [ [ - "/_mozilla/css/input_line_height.html", + "/_mozilla/css/input_line_height.html", [ [ - "/_mozilla/css/input_line_height_ref.html", + "/_mozilla/css/input_line_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_placeholder.html": [ [ - "/_mozilla/css/input_placeholder.html", + "/_mozilla/css/input_placeholder.html", [ [ - "/_mozilla/css/input_placeholder_ref.html", + "/_mozilla/css/input_placeholder_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_selection_a.html": [ [ - "/_mozilla/css/input_selection_a.html", + "/_mozilla/css/input_selection_a.html", [ [ - "/_mozilla/css/input_selection_ref.html", + "/_mozilla/css/input_selection_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_selection_incremental_a.html": [ [ - "/_mozilla/css/input_selection_incremental_a.html", + "/_mozilla/css/input_selection_incremental_a.html", [ [ - "/_mozilla/css/input_selection_incremental_ref.html", + "/_mozilla/css/input_selection_incremental_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/input_whitespace.html": [ [ - "/_mozilla/css/input_whitespace.html", + "/_mozilla/css/input_whitespace.html", [ [ - "/_mozilla/css/input_whitespace_ref.html", + "/_mozilla/css/input_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inset.html": [ [ - "/_mozilla/css/inset.html", + "/_mozilla/css/inset.html", [ [ - "/_mozilla/css/inset_ref.html", + "/_mozilla/css/inset_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/inset_blackborder.html": [ [ - "/_mozilla/css/inset_blackborder.html", + "/_mozilla/css/inset_blackborder.html", [ [ - "/_mozilla/css/blackborder_ref.html", + "/_mozilla/css/blackborder_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/intrinsic_border_box.html": [ [ - "/_mozilla/css/intrinsic_border_box.html", + "/_mozilla/css/intrinsic_border_box.html", [ [ - "/_mozilla/css/intrinsic_border_box_ref.html", + "/_mozilla/css/intrinsic_border_box_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/issue-1324.html": [ [ - "/_mozilla/css/issue-1324.html", + "/_mozilla/css/issue-1324.html", [ [ - "/_mozilla/css/issue-1324-ref.html", + "/_mozilla/css/issue-1324-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/jpeg_normal.html": [ [ - "/_mozilla/css/jpeg_normal.html", + "/_mozilla/css/jpeg_normal.html", [ [ - "/_mozilla/css/jpeg_ref.html", + "/_mozilla/css/jpeg_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/jpeg_progressive.html": [ [ - "/_mozilla/css/jpeg_progressive.html", + "/_mozilla/css/jpeg_progressive.html", [ [ - "/_mozilla/css/jpeg_ref.html", + "/_mozilla/css/jpeg_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/jumpiness_a.html": [ [ - "/_mozilla/css/jumpiness_a.html", + "/_mozilla/css/jumpiness_a.html", [ [ - "/_mozilla/css/jumpiness_ref.html", + "/_mozilla/css/jumpiness_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/last_child_pseudo_a.html": [ [ - "/_mozilla/css/last_child_pseudo_a.html", + "/_mozilla/css/last_child_pseudo_a.html", [ [ - "/_mozilla/css/last_child_pseudo_b.html", + "/_mozilla/css/last_child_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/last_of_type_pseudo_a.html": [ [ - "/_mozilla/css/last_of_type_pseudo_a.html", + "/_mozilla/css/last_of_type_pseudo_a.html", [ [ - "/_mozilla/css/last_of_type_pseudo_b.html", + "/_mozilla/css/last_of_type_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/layerization_layer_size.html": [ [ - "/_mozilla/css/layerization_layer_size.html", + "/_mozilla/css/layerization_layer_size.html", [ [ - "/_mozilla/css/layerization_layer_size_ref.html", + "/_mozilla/css/layerization_layer_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/layerization_z_order_a.html": [ [ - "/_mozilla/css/layerization_z_order_a.html", + "/_mozilla/css/layerization_z_order_a.html", [ [ - "/_mozilla/css/layerization_z_order_ref.html", + "/_mozilla/css/layerization_z_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_cellspacing_attribute_a.html": [ [ - "/_mozilla/css/legacy_cellspacing_attribute_a.html", + "/_mozilla/css/legacy_cellspacing_attribute_a.html", [ [ - "/_mozilla/css/border_spacing_ref.html", + "/_mozilla/css/border_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_input_size_attribute_override_a.html": [ [ - "/_mozilla/css/legacy_input_size_attribute_override_a.html", + "/_mozilla/css/legacy_input_size_attribute_override_a.html", [ [ - "/_mozilla/css/legacy_input_size_attribute_override_ref.html", + "/_mozilla/css/legacy_input_size_attribute_override_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_table_border_attribute_a.html": [ [ - "/_mozilla/css/legacy_table_border_attribute_a.html", + "/_mozilla/css/legacy_table_border_attribute_a.html", [ [ - "/_mozilla/css/legacy_table_border_attribute_ref.html", + "/_mozilla/css/legacy_table_border_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_td_bgcolor_attribute_a.html": [ [ - "/_mozilla/css/legacy_td_bgcolor_attribute_a.html", + "/_mozilla/css/legacy_td_bgcolor_attribute_a.html", [ [ - "/_mozilla/css/legacy_td_bgcolor_attribute_ref.html", + "/_mozilla/css/legacy_td_bgcolor_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_td_width_attribute_a.html": [ [ - "/_mozilla/css/legacy_td_width_attribute_a.html", + "/_mozilla/css/legacy_td_width_attribute_a.html", [ [ - "/_mozilla/css/legacy_td_width_attribute_ref.html", + "/_mozilla/css/legacy_td_width_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/legacy_th_width_attribute_a.html": [ [ - "/_mozilla/css/legacy_th_width_attribute_a.html", + "/_mozilla/css/legacy_th_width_attribute_a.html", [ [ - "/_mozilla/css/legacy_td_width_attribute_ref.html", + "/_mozilla/css/legacy_td_width_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/letter_spacing_a.html": [ [ - "/_mozilla/css/letter_spacing_a.html", + "/_mozilla/css/letter_spacing_a.html", [ [ - "/_mozilla/css/letter_spacing_ref.html", + "/_mozilla/css/letter_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/li_absolute_containing_block_a.html": [ [ - "/_mozilla/css/li_absolute_containing_block_a.html", + "/_mozilla/css/li_absolute_containing_block_a.html", [ [ - "/_mozilla/css/li_absolute_containing_block_ref.html", + "/_mozilla/css/li_absolute_containing_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/line_break_nowrap.html": [ [ - "/_mozilla/css/line_break_nowrap.html", + "/_mozilla/css/line_break_nowrap.html", [ [ - "/_mozilla/css/line_break_nowrap_ref.html", + "/_mozilla/css/line_break_nowrap_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/line_breaking_whitespace_collapse_a.html": [ [ - "/_mozilla/css/line_breaking_whitespace_collapse_a.html", + "/_mozilla/css/line_breaking_whitespace_collapse_a.html", [ [ - "/_mozilla/css/line_breaking_whitespace_collapse_ref.html", + "/_mozilla/css/line_breaking_whitespace_collapse_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/line_height_a.html": [ [ - "/_mozilla/css/line_height_a.html", + "/_mozilla/css/line_height_a.html", [ [ - "/_mozilla/css/line_height_ref.html", + "/_mozilla/css/line_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/line_height_float_placement_a.html": [ [ - "/_mozilla/css/line_height_float_placement_a.html", + "/_mozilla/css/line_height_float_placement_a.html", [ [ - "/_mozilla/css/line_height_float_placement_ref.html", + "/_mozilla/css/line_height_float_placement_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/linear_gradients_corners_a.html": [ [ - "/_mozilla/css/linear_gradients_corners_a.html", + "/_mozilla/css/linear_gradients_corners_a.html", [ [ - "/_mozilla/css/linear_gradients_corners_ref.html", + "/_mozilla/css/linear_gradients_corners_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/linear_gradients_lengths_a.html": [ [ - "/_mozilla/css/linear_gradients_lengths_a.html", + "/_mozilla/css/linear_gradients_lengths_a.html", [ [ - "/_mozilla/css/linear_gradients_lengths_ref.html", + "/_mozilla/css/linear_gradients_lengths_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/linear_gradients_non_square_a.html": [ [ - "/_mozilla/css/linear_gradients_non_square_a.html", + "/_mozilla/css/linear_gradients_non_square_a.html", [ [ - "/_mozilla/css/linear_gradients_non_square_ref.html", + "/_mozilla/css/linear_gradients_non_square_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/linear_gradients_parsing_a.html": [ [ - "/_mozilla/css/linear_gradients_parsing_a.html", + "/_mozilla/css/linear_gradients_parsing_a.html", [ [ - "/_mozilla/css/linear_gradients_parsing_ref.html", + "/_mozilla/css/linear_gradients_parsing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/linear_gradients_reverse_a.html": [ [ - "/_mozilla/css/linear_gradients_reverse_a.html", + "/_mozilla/css/linear_gradients_reverse_a.html", [ [ - "/_mozilla/css/linear_gradients_reverse_ref.html", + "/_mozilla/css/linear_gradients_reverse_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/linear_gradients_smoke_a.html": [ [ - "/_mozilla/css/linear_gradients_smoke_a.html", + "/_mozilla/css/linear_gradients_smoke_a.html", [ [ - "/_mozilla/css/linear_gradients_smoke_ref.html", + "/_mozilla/css/linear_gradients_smoke_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/linebreak_inline_span_a.html": [ [ - "/_mozilla/css/linebreak_inline_span_a.html", + "/_mozilla/css/linebreak_inline_span_a.html", [ [ - "/_mozilla/css/linebreak_inline_span_b.html", + "/_mozilla/css/linebreak_inline_span_b.html", "==" ] - ], + ], {} ] - ], + ], "css/linebreak_simple_a.html": [ [ - "/_mozilla/css/linebreak_simple_a.html", + "/_mozilla/css/linebreak_simple_a.html", [ [ - "/_mozilla/css/linebreak_simple_b.html", + "/_mozilla/css/linebreak_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/link_style_dynamic_addition.html": [ [ - "/_mozilla/css/link_style_dynamic_addition.html", + "/_mozilla/css/link_style_dynamic_addition.html", [ [ - "/_mozilla/css/link_style_dynamic_addition_ref.html", + "/_mozilla/css/link_style_dynamic_addition_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/link_style_order.html": [ [ - "/_mozilla/css/link_style_order.html", + "/_mozilla/css/link_style_order.html", [ [ - "/_mozilla/css/link_style_order_ref.html", + "/_mozilla/css/link_style_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_item_marker_around_float.html": [ [ - "/_mozilla/css/list_item_marker_around_float.html", + "/_mozilla/css/list_item_marker_around_float.html", [ [ - "/_mozilla/css/list_item_marker_around_float_ref.html", + "/_mozilla/css/list_item_marker_around_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_item_overflow.html": [ [ - "/_mozilla/css/list_item_overflow.html", + "/_mozilla/css/list_item_overflow.html", [ [ - "/_mozilla/css/list_item_overflow_ref.html", + "/_mozilla/css/list_item_overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_style_fixed_inside_a.html": [ [ - "/_mozilla/css/list_style_fixed_inside_a.html", + "/_mozilla/css/list_style_fixed_inside_a.html", [ [ - "/_mozilla/css/list_style_fixed_inside_ref.html", + "/_mozilla/css/list_style_fixed_inside_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_style_image_sizing_a.html": [ [ - "/_mozilla/css/list_style_image_sizing_a.html", + "/_mozilla/css/list_style_image_sizing_a.html", [ [ - "/_mozilla/css/list_style_image_sizing_ref.html", + "/_mozilla/css/list_style_image_sizing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_style_position_a.html": [ [ - "/_mozilla/css/list_style_position_a.html", + "/_mozilla/css/list_style_position_a.html", [ [ - "/_mozilla/css/list_style_position_ref.html", + "/_mozilla/css/list_style_position_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/list_style_type_a.html": [ [ - "/_mozilla/css/list_style_type_a.html", + "/_mozilla/css/list_style_type_a.html", [ [ - "/_mozilla/css/list_style_type_ref.html", + "/_mozilla/css/list_style_type_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/many_brs_a.html": [ [ - "/_mozilla/css/many_brs_a.html", + "/_mozilla/css/many_brs_a.html", [ [ - "/_mozilla/css/many_brs_ref.html", + "/_mozilla/css/many_brs_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/margin_a.html": [ [ - "/_mozilla/css/margin_a.html", + "/_mozilla/css/margin_a.html", [ [ - "/_mozilla/css/margin_b.html", + "/_mozilla/css/margin_b.html", "==" ] - ], + ], {} ] - ], + ], "css/margin_padding_inline_block_a.html": [ [ - "/_mozilla/css/margin_padding_inline_block_a.html", + "/_mozilla/css/margin_padding_inline_block_a.html", [ [ - "/_mozilla/css/margin_padding_inline_block_ref.html", + "/_mozilla/css/margin_padding_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/margins_inside_floats_a.html": [ [ - "/_mozilla/css/margins_inside_floats_a.html", + "/_mozilla/css/margins_inside_floats_a.html", [ [ - "/_mozilla/css/margins_inside_floats_ref.html", + "/_mozilla/css/margins_inside_floats_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/marker_block_direction_placement_a.html": [ [ - "/_mozilla/css/marker_block_direction_placement_a.html", + "/_mozilla/css/marker_block_direction_placement_a.html", [ [ - "/_mozilla/css/marker_block_direction_placement_ref.html", + "/_mozilla/css/marker_block_direction_placement_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/max_inline_block_size.html": [ [ - "/_mozilla/css/max_inline_block_size.html", + "/_mozilla/css/max_inline_block_size.html", [ [ - "/_mozilla/css/max_inline_block_size_ref.html", + "/_mozilla/css/max_inline_block_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/max_inline_block_size_canvas.html": [ [ - "/_mozilla/css/max_inline_block_size_canvas.html", + "/_mozilla/css/max_inline_block_size_canvas.html", [ [ - "/_mozilla/css/max_inline_block_size_ref.html", + "/_mozilla/css/max_inline_block_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/max_inline_block_size_image.html": [ [ - "/_mozilla/css/max_inline_block_size_image.html", + "/_mozilla/css/max_inline_block_size_image.html", [ [ - "/_mozilla/css/max_inline_block_size_ref.html", + "/_mozilla/css/max_inline_block_size_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/max_width_float_simple_a.html": [ [ - "/_mozilla/css/max_width_float_simple_a.html", + "/_mozilla/css/max_width_float_simple_a.html", [ [ - "/_mozilla/css/max_width_float_simple_b.html", + "/_mozilla/css/max_width_float_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/max_width_simple_a.html": [ [ - "/_mozilla/css/max_width_simple_a.html", + "/_mozilla/css/max_width_simple_a.html", [ [ - "/_mozilla/css/max_width_simple_b.html", + "/_mozilla/css/max_width_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/min_max_height_a.html": [ [ - "/_mozilla/css/min_max_height_a.html", + "/_mozilla/css/min_max_height_a.html", [ [ - "/_mozilla/css/min_max_height_b.html", + "/_mozilla/css/min_max_height_b.html", "==" ] - ], + ], {} ] - ], + ], "css/min_width_float_simple_a.html": [ [ - "/_mozilla/css/min_width_float_simple_a.html", + "/_mozilla/css/min_width_float_simple_a.html", [ [ - "/_mozilla/css/min_width_float_simple_b.html", + "/_mozilla/css/min_width_float_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/min_width_percent_root_a.html": [ [ - "/_mozilla/css/min_width_percent_root_a.html", + "/_mozilla/css/min_width_percent_root_a.html", [ [ - "/_mozilla/css/min_width_percent_root_b.html", + "/_mozilla/css/min_width_percent_root_b.html", "==" ] - ], + ], {} ] - ], + ], "css/min_width_simple_a.html": [ [ - "/_mozilla/css/min_width_simple_a.html", + "/_mozilla/css/min_width_simple_a.html", [ [ - "/_mozilla/css/min_width_simple_b.html", + "/_mozilla/css/min_width_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/minimum_line_height_a.html": [ [ - "/_mozilla/css/minimum_line_height_a.html", + "/_mozilla/css/minimum_line_height_a.html", [ [ - "/_mozilla/css/minimum_line_height_b.html", + "/_mozilla/css/minimum_line_height_b.html", "==" ] - ], + ], {} ] - ], + ], "css/mix_blend_mode_a.html": [ [ - "/_mozilla/css/mix_blend_mode_a.html", + "/_mozilla/css/mix_blend_mode_a.html", [ [ - "/_mozilla/css/mix_blend_mode_ref.html", + "/_mozilla/css/mix_blend_mode_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/multiple_backgrounds.html": [ [ - "/_mozilla/css/multiple_backgrounds.html", + "/_mozilla/css/multiple_backgrounds.html", [ [ - "/_mozilla/css/multiple_backgrounds_ref.html", + "/_mozilla/css/multiple_backgrounds_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/multiple_css_class_a.html": [ [ - "/_mozilla/css/multiple_css_class_a.html", + "/_mozilla/css/multiple_css_class_a.html", [ [ - "/_mozilla/css/multiple_css_class_b.html", + "/_mozilla/css/multiple_css_class_b.html", "==" ] - ], + ], {} ] - ], + ], "css/negation-attr-dependence.html": [ [ - "/_mozilla/css/negation-attr-dependence.html", + "/_mozilla/css/negation-attr-dependence.html", [ [ - "/_mozilla/css/negation-attr-dependence-ref.html", + "/_mozilla/css/negation-attr-dependence-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/negative-calc-cv.html": [ [ - "/_mozilla/css/negative-calc-cv.html", + "/_mozilla/css/negative-calc-cv.html", [ [ - "/_mozilla/css/negative-calc-cv-ref.html", + "/_mozilla/css/negative-calc-cv-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/negative_margin_uncle_a.html": [ [ - "/_mozilla/css/negative_margin_uncle_a.html", + "/_mozilla/css/negative_margin_uncle_a.html", [ [ - "/_mozilla/css/negative_margin_uncle_b.html", + "/_mozilla/css/negative_margin_uncle_b.html", "==" ] - ], + ], {} ] - ], + ], "css/negative_margins_a.html": [ [ - "/_mozilla/css/negative_margins_a.html", + "/_mozilla/css/negative_margins_a.html", [ [ - "/_mozilla/css/negative_margins_b.html", + "/_mozilla/css/negative_margins_b.html", "==" ] - ], + ], {} ] - ], + ], "css/no-image.html": [ [ - "/_mozilla/css/no-image.html", + "/_mozilla/css/no-image.html", [ [ - "/_mozilla/css/no-image-ref.html", + "/_mozilla/css/no-image-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/no_image_background_a.html": [ [ - "/_mozilla/css/no_image_background_a.html", + "/_mozilla/css/no_image_background_a.html", [ [ - "/_mozilla/css/no_image_background_ref.html", + "/_mozilla/css/no_image_background_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/non-inline-block-resets-underline-property.html": [ [ - "/_mozilla/css/non-inline-block-resets-underline-property.html", + "/_mozilla/css/non-inline-block-resets-underline-property.html", [ [ - "/_mozilla/css/non-inline-block-resets-underline-property-ref.html", + "/_mozilla/css/non-inline-block-resets-underline-property-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/normalize-rotation.html": [ [ - "/_mozilla/css/normalize-rotation.html", + "/_mozilla/css/normalize-rotation.html", [ [ - "/_mozilla/css/normalize-rotation-ref.html", + "/_mozilla/css/normalize-rotation-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/noscript.html": [ [ - "/_mozilla/css/noscript.html", + "/_mozilla/css/noscript.html", [ [ - "/_mozilla/css/noscript_ref.html", + "/_mozilla/css/noscript_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/nth_child_pseudo_a.html": [ [ - "/_mozilla/css/nth_child_pseudo_a.html", + "/_mozilla/css/nth_child_pseudo_a.html", [ [ - "/_mozilla/css/nth_child_pseudo_b.html", + "/_mozilla/css/nth_child_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/nth_last_child_pseudo_a.html": [ [ - "/_mozilla/css/nth_last_child_pseudo_a.html", + "/_mozilla/css/nth_last_child_pseudo_a.html", [ [ - "/_mozilla/css/nth_last_child_pseudo_b.html", + "/_mozilla/css/nth_last_child_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/nth_last_of_type_pseudo_a.html": [ [ - "/_mozilla/css/nth_last_of_type_pseudo_a.html", + "/_mozilla/css/nth_last_of_type_pseudo_a.html", [ [ - "/_mozilla/css/nth_last_of_type_pseudo_b.html", + "/_mozilla/css/nth_last_of_type_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/nth_of_type_pseudo_a.html": [ [ - "/_mozilla/css/nth_of_type_pseudo_a.html", + "/_mozilla/css/nth_of_type_pseudo_a.html", [ [ - "/_mozilla/css/nth_of_type_pseudo_b.html", + "/_mozilla/css/nth_of_type_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/object_element_a.html": [ [ - "/_mozilla/css/object_element_a.html", + "/_mozilla/css/object_element_a.html", [ [ - "/_mozilla/css/object_element_b.html", + "/_mozilla/css/object_element_b.html", "==" ] - ], + ], {} ] - ], + ], "css/octicons_a.html": [ [ - "/_mozilla/css/octicons_a.html", + "/_mozilla/css/octicons_a.html", [ [ - "/_mozilla/css/octicons_ref.html", + "/_mozilla/css/octicons_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/ol_japanese_iroha_a.html": [ [ - "/_mozilla/css/ol_japanese_iroha_a.html", + "/_mozilla/css/ol_japanese_iroha_a.html", [ [ - "/_mozilla/css/ol_japanese_iroha_ref.html", + "/_mozilla/css/ol_japanese_iroha_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/ol_japanese_iroha_bullet_styles.html": [ [ - "/_mozilla/css/ol_japanese_iroha_bullet_styles.html", + "/_mozilla/css/ol_japanese_iroha_bullet_styles.html", [ [ - "/_mozilla/css/ol_japanese_iroha_ref.html", + "/_mozilla/css/ol_japanese_iroha_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/ol_simple_a.html": [ [ - "/_mozilla/css/ol_simple_a.html", + "/_mozilla/css/ol_simple_a.html", [ [ - "/_mozilla/css/ol_simple_ref.html", + "/_mozilla/css/ol_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/only_child_pseudo_a.html": [ [ - "/_mozilla/css/only_child_pseudo_a.html", + "/_mozilla/css/only_child_pseudo_a.html", [ [ - "/_mozilla/css/only_child_pseudo_b.html", + "/_mozilla/css/only_child_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/only_of_type_pseudo_a.html": [ [ - "/_mozilla/css/only_of_type_pseudo_a.html", + "/_mozilla/css/only_of_type_pseudo_a.html", [ [ - "/_mozilla/css/only_of_type_pseudo_b.html", + "/_mozilla/css/only_of_type_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/opacity_simple_a.html": [ [ - "/_mozilla/css/opacity_simple_a.html", + "/_mozilla/css/opacity_simple_a.html", [ [ - "/_mozilla/css/opacity_simple_ref.html", + "/_mozilla/css/opacity_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/opacity_stacking_context_a.html": [ [ - "/_mozilla/css/opacity_stacking_context_a.html", + "/_mozilla/css/opacity_stacking_context_a.html", [ [ - "/_mozilla/css/opacity_stacking_context_ref.html", + "/_mozilla/css/opacity_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/outline_offset_a.html": [ [ - "/_mozilla/css/outline_offset_a.html", + "/_mozilla/css/outline_offset_a.html", [ [ - "/_mozilla/css/outline_offset_ref.html", + "/_mozilla/css/outline_offset_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/outlines_simple_a.html": [ [ - "/_mozilla/css/outlines_simple_a.html", + "/_mozilla/css/outlines_simple_a.html", [ [ - "/_mozilla/css/outlines_simple_ref.html", + "/_mozilla/css/outlines_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/outlines_wrap_a.html": [ [ - "/_mozilla/css/outlines_wrap_a.html", + "/_mozilla/css/outlines_wrap_a.html", [ [ - "/_mozilla/css/outlines_wrap_ref.html", + "/_mozilla/css/outlines_wrap_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/outset.html": [ [ - "/_mozilla/css/outset.html", + "/_mozilla/css/outset.html", [ [ - "/_mozilla/css/outset_ref.html", + "/_mozilla/css/outset_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/outset_blackborder.html": [ [ - "/_mozilla/css/outset_blackborder.html", + "/_mozilla/css/outset_blackborder.html", [ [ - "/_mozilla/css/blackborder_ref.html", + "/_mozilla/css/blackborder_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/overconstrained_block.html": [ [ - "/_mozilla/css/overconstrained_block.html", + "/_mozilla/css/overconstrained_block.html", [ [ - "/_mozilla/css/overconstrained_block_ref.html", + "/_mozilla/css/overconstrained_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_auto.html": [ [ - "/_mozilla/css/overflow_auto.html", + "/_mozilla/css/overflow_auto.html", [ [ - "/_mozilla/css/overflow_simple_b.html", + "/_mozilla/css/overflow_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_auto_stacking_order_a.html": [ [ - "/_mozilla/css/overflow_auto_stacking_order_a.html", + "/_mozilla/css/overflow_auto_stacking_order_a.html", [ [ - "/_mozilla/css/overflow_auto_stacking_order_ref.html", + "/_mozilla/css/overflow_auto_stacking_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_border_radius.html": [ [ - "/_mozilla/css/overflow_border_radius.html", + "/_mozilla/css/overflow_border_radius.html", [ [ - "/_mozilla/css/overflow_border_radius_ref.html", + "/_mozilla/css/overflow_border_radius_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_clipping.html": [ [ - "/_mozilla/css/overflow_clipping.html", + "/_mozilla/css/overflow_clipping.html", [ [ - "/_mozilla/css/overflow_clipping_ref.html", + "/_mozilla/css/overflow_clipping_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_hidden_clip.html": [ [ - "/_mozilla/css/overflow_hidden_clip.html", + "/_mozilla/css/overflow_hidden_clip.html", [ [ - "/_mozilla/css/overflow_hidden_clip_ref.html", + "/_mozilla/css/overflow_hidden_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_position_abs_inline_block.html": [ [ - "/_mozilla/css/overflow_position_abs_inline_block.html", + "/_mozilla/css/overflow_position_abs_inline_block.html", [ [ - "/_mozilla/css/overflow_position_abs_inline_block_ref.html", + "/_mozilla/css/overflow_position_abs_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_position_abs_inside_normal_a.html": [ [ - "/_mozilla/css/overflow_position_abs_inside_normal_a.html", + "/_mozilla/css/overflow_position_abs_inside_normal_a.html", [ [ - "/_mozilla/css/overflow_position_abs_inside_normal_b.html", + "/_mozilla/css/overflow_position_abs_inside_normal_b.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_position_abs_simple_a.html": [ [ - "/_mozilla/css/overflow_position_abs_simple_a.html", + "/_mozilla/css/overflow_position_abs_simple_a.html", [ [ - "/_mozilla/css/overflow_position_abs_simple_b.html", + "/_mozilla/css/overflow_position_abs_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_position_rel_inline_block.html": [ [ - "/_mozilla/css/overflow_position_rel_inline_block.html", + "/_mozilla/css/overflow_position_rel_inline_block.html", [ [ - "/_mozilla/css/overflow_position_rel_inline_block_ref.html", + "/_mozilla/css/overflow_position_rel_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_scroll.html": [ [ - "/_mozilla/css/overflow_scroll.html", + "/_mozilla/css/overflow_scroll.html", [ [ - "/_mozilla/css/overflow_simple_b.html", + "/_mozilla/css/overflow_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_simple_a.html": [ [ - "/_mozilla/css/overflow_simple_a.html", + "/_mozilla/css/overflow_simple_a.html", [ [ - "/_mozilla/css/overflow_simple_b.html", + "/_mozilla/css/overflow_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_transformed_sc.html": [ [ - "/_mozilla/css/overflow_transformed_sc.html", + "/_mozilla/css/overflow_transformed_sc.html", [ [ - "/_mozilla/css/overflow_transformed_sc_ref.html", + "/_mozilla/css/overflow_transformed_sc_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_transformed_sc_rotate.html": [ [ - "/_mozilla/css/overflow_transformed_sc_rotate.html", + "/_mozilla/css/overflow_transformed_sc_rotate.html", [ [ - "/_mozilla/css/overflow_transformed_sc_rotate_ref.html", + "/_mozilla/css/overflow_transformed_sc_rotate_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_wrap_a.html": [ [ - "/_mozilla/css/overflow_wrap_a.html", + "/_mozilla/css/overflow_wrap_a.html", [ [ - "/_mozilla/css/overflow_wrap_ref.html", + "/_mozilla/css/overflow_wrap_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/overflow_xy_a.html": [ [ - "/_mozilla/css/overflow_xy_a.html", + "/_mozilla/css/overflow_xy_a.html", [ [ - "/_mozilla/css/overflow_xy_ref.html", + "/_mozilla/css/overflow_xy_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/per_glyph_font_fallback_a.html": [ [ - "/_mozilla/css/per_glyph_font_fallback_a.html", + "/_mozilla/css/per_glyph_font_fallback_a.html", [ [ - "/_mozilla/css/per_glyph_font_fallback_ref.html", + "/_mozilla/css/per_glyph_font_fallback_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/percent_height.html": [ [ - "/_mozilla/css/percent_height.html", + "/_mozilla/css/percent_height.html", [ [ - "/_mozilla/css/percent_height_ref.html", + "/_mozilla/css/percent_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/percentage_height_float_a.html": [ [ - "/_mozilla/css/percentage_height_float_a.html", + "/_mozilla/css/percentage_height_float_a.html", [ [ - "/_mozilla/css/percentage_height_float_ref.html", + "/_mozilla/css/percentage_height_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/percentage_height_root.html": [ [ - "/_mozilla/css/percentage_height_root.html", + "/_mozilla/css/percentage_height_root.html", [ [ - "/_mozilla/css/percentage_height_root_ref.html", + "/_mozilla/css/percentage_height_root_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/percentage_width_inline_block_a.html": [ [ - "/_mozilla/css/percentage_width_inline_block_a.html", + "/_mozilla/css/percentage_width_inline_block_a.html", [ [ - "/_mozilla/css/percentage_width_inline_block_ref.html", + "/_mozilla/css/percentage_width_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/perspective_zero.html": [ [ - "/_mozilla/css/perspective_zero.html", + "/_mozilla/css/perspective_zero.html", [ [ - "/_mozilla/css/perspective_zero_ref.html", + "/_mozilla/css/perspective_zero_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pixel_snapping_border_a.html": [ [ - "/_mozilla/css/pixel_snapping_border_a.html", + "/_mozilla/css/pixel_snapping_border_a.html", [ [ - "/_mozilla/css/pixel_snapping_border_ref.html", + "/_mozilla/css/pixel_snapping_border_ref.html", "!=" ] - ], + ], { - "dpi": "2", + "dpi": "2", "viewport_size": "300x300" } ] - ], + ], "css/pixel_snapping_glyphs.html": [ [ - "/_mozilla/css/pixel_snapping_glyphs.html", + "/_mozilla/css/pixel_snapping_glyphs.html", [ [ - "/_mozilla/css/pixel_snapping_glyphs_ref.html", + "/_mozilla/css/pixel_snapping_glyphs_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pixel_snapping_position_a.html": [ [ - "/_mozilla/css/pixel_snapping_position_a.html", + "/_mozilla/css/pixel_snapping_position_a.html", [ [ - "/_mozilla/css/pixel_snapping_position_ref.html", + "/_mozilla/css/pixel_snapping_position_ref.html", "!=" ] - ], + ], { - "dpi": "2", + "dpi": "2", "viewport_size": "300x300" } ] - ], + ], "css/png_rgba_colorspace_a.html": [ [ - "/_mozilla/css/png_rgba_colorspace_a.html", + "/_mozilla/css/png_rgba_colorspace_a.html", [ [ - "/_mozilla/css/png_rgba_colorspace_b.html", + "/_mozilla/css/png_rgba_colorspace_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_cb_with_non_cb_kid_a.html": [ [ - "/_mozilla/css/position_abs_cb_with_non_cb_kid_a.html", + "/_mozilla/css/position_abs_cb_with_non_cb_kid_a.html", [ [ - "/_mozilla/css/position_abs_cb_with_non_cb_kid_b.html", + "/_mozilla/css/position_abs_cb_with_non_cb_kid_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_height_width_a.html": [ [ - "/_mozilla/css/position_abs_height_width_a.html", + "/_mozilla/css/position_abs_height_width_a.html", [ [ - "/_mozilla/css/position_abs_height_width_b.html", + "/_mozilla/css/position_abs_height_width_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_left_a.html": [ [ - "/_mozilla/css/position_abs_left_a.html", + "/_mozilla/css/position_abs_left_a.html", [ [ - "/_mozilla/css/position_abs_left_b.html", + "/_mozilla/css/position_abs_left_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_margin_top_percentage_a.html": [ [ - "/_mozilla/css/position_abs_margin_top_percentage_a.html", + "/_mozilla/css/position_abs_margin_top_percentage_a.html", [ [ - "/_mozilla/css/position_abs_margin_top_percentage_b.html", + "/_mozilla/css/position_abs_margin_top_percentage_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_nested_a.html": [ [ - "/_mozilla/css/position_abs_nested_a.html", + "/_mozilla/css/position_abs_nested_a.html", [ [ - "/_mozilla/css/position_abs_nested_b.html", + "/_mozilla/css/position_abs_nested_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_pseudo_a.html": [ [ - "/_mozilla/css/position_abs_pseudo_a.html", + "/_mozilla/css/position_abs_pseudo_a.html", [ [ - "/_mozilla/css/position_abs_pseudo_b.html", + "/_mozilla/css/position_abs_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_replaced_simple_a.html": [ [ - "/_mozilla/css/position_abs_replaced_simple_a.html", + "/_mozilla/css/position_abs_replaced_simple_a.html", [ [ - "/_mozilla/css/position_abs_replaced_simple_b.html", + "/_mozilla/css/position_abs_replaced_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_static_y_a.html": [ [ - "/_mozilla/css/position_abs_static_y_a.html", + "/_mozilla/css/position_abs_static_y_a.html", [ [ - "/_mozilla/css/position_abs_static_y_b.html", + "/_mozilla/css/position_abs_static_y_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_abs_width_percentage_a.html": [ [ - "/_mozilla/css/position_abs_width_percentage_a.html", + "/_mozilla/css/position_abs_width_percentage_a.html", [ [ - "/_mozilla/css/position_abs_width_percentage_b.html", + "/_mozilla/css/position_abs_width_percentage_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_a.html": [ [ - "/_mozilla/css/position_fixed_a.html", + "/_mozilla/css/position_fixed_a.html", [ [ - "/_mozilla/css/position_fixed_b.html", + "/_mozilla/css/position_fixed_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_background_color_a.html": [ [ - "/_mozilla/css/position_fixed_background_color_a.html", + "/_mozilla/css/position_fixed_background_color_a.html", [ [ - "/_mozilla/css/position_fixed_background_color_b.html", + "/_mozilla/css/position_fixed_background_color_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_overflow_a.html": [ [ - "/_mozilla/css/position_fixed_overflow_a.html", + "/_mozilla/css/position_fixed_overflow_a.html", [ [ - "/_mozilla/css/position_fixed_overflow_b.html", + "/_mozilla/css/position_fixed_overflow_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_simple_a.html": [ [ - "/_mozilla/css/position_fixed_simple_a.html", + "/_mozilla/css/position_fixed_simple_a.html", [ [ - "/_mozilla/css/position_fixed_simple_b.html", + "/_mozilla/css/position_fixed_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_static_y_a.html": [ [ - "/_mozilla/css/position_fixed_static_y_a.html", + "/_mozilla/css/position_fixed_static_y_a.html", [ [ - "/_mozilla/css/position_fixed_static_y_b.html", + "/_mozilla/css/position_fixed_static_y_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_tile_edge.html": [ [ - "/_mozilla/css/position_fixed_tile_edge.html", + "/_mozilla/css/position_fixed_tile_edge.html", [ [ - "/_mozilla/css/position_fixed_tile_edge_ref.html", + "/_mozilla/css/position_fixed_tile_edge_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_tile_edge_2.html": [ [ - "/_mozilla/css/position_fixed_tile_edge_2.html", + "/_mozilla/css/position_fixed_tile_edge_2.html", [ [ - "/_mozilla/css/position_fixed_tile_edge_ref.html", + "/_mozilla/css/position_fixed_tile_edge_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_fixed_tile_edge_3.html": [ [ - "/_mozilla/css/position_fixed_tile_edge_3.html", + "/_mozilla/css/position_fixed_tile_edge_3.html", [ [ - "/_mozilla/css/position_fixed_tile_edge_ref.html", + "/_mozilla/css/position_fixed_tile_edge_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_a.html": [ [ - "/_mozilla/css/position_relative_a.html", + "/_mozilla/css/position_relative_a.html", [ [ - "/_mozilla/css/position_relative_b.html", + "/_mozilla/css/position_relative_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_inline_block_a.html": [ [ - "/_mozilla/css/position_relative_inline_block_a.html", + "/_mozilla/css/position_relative_inline_block_a.html", [ [ - "/_mozilla/css/position_relative_inline_block_ref.html", + "/_mozilla/css/position_relative_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_painting_order_a.html": [ [ - "/_mozilla/css/position_relative_painting_order_a.html", + "/_mozilla/css/position_relative_painting_order_a.html", [ [ - "/_mozilla/css/position_relative_painting_order_ref.html", + "/_mozilla/css/position_relative_painting_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_stacking_context_a.html": [ [ - "/_mozilla/css/position_relative_stacking_context_a.html", + "/_mozilla/css/position_relative_stacking_context_a.html", [ [ - "/_mozilla/css/position_relative_stacking_context_ref.html", + "/_mozilla/css/position_relative_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_stacking_context_contents_a.html": [ [ - "/_mozilla/css/position_relative_stacking_context_contents_a.html", + "/_mozilla/css/position_relative_stacking_context_contents_a.html", [ [ - "/_mozilla/css/position_relative_stacking_context_contents_ref.html", + "/_mozilla/css/position_relative_stacking_context_contents_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_top_percentage_a.html": [ [ - "/_mozilla/css/position_relative_top_percentage_a.html", + "/_mozilla/css/position_relative_top_percentage_a.html", [ [ - "/_mozilla/css/position_relative_top_percentage_b.html", + "/_mozilla/css/position_relative_top_percentage_b.html", "==" ] - ], + ], {} ] - ], + ], "css/position_relative_vertical_percentage_overflow_a.html": [ [ - "/_mozilla/css/position_relative_vertical_percentage_overflow_a.html", + "/_mozilla/css/position_relative_vertical_percentage_overflow_a.html", [ [ - "/_mozilla/css/position_relative_vertical_percentage_overflow_ref.html", + "/_mozilla/css/position_relative_vertical_percentage_overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pre_ignorable_whitespace_a.html": [ [ - "/_mozilla/css/pre_ignorable_whitespace_a.html", + "/_mozilla/css/pre_ignorable_whitespace_a.html", [ [ - "/_mozilla/css/pre_ignorable_whitespace_ref.html", + "/_mozilla/css/pre_ignorable_whitespace_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pre_with_tab.html": [ [ - "/_mozilla/css/pre_with_tab.html", + "/_mozilla/css/pre_with_tab.html", [ [ - "/_mozilla/css/pre_with_tab_ref.html", + "/_mozilla/css/pre_with_tab_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_content_with_layers.html": [ [ - "/_mozilla/css/pseudo_content_with_layers.html", + "/_mozilla/css/pseudo_content_with_layers.html", [ [ - "/_mozilla/css/pseudo_content_with_layers_ref.html", + "/_mozilla/css/pseudo_content_with_layers_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_element_a.html": [ [ - "/_mozilla/css/pseudo_element_a.html", + "/_mozilla/css/pseudo_element_a.html", [ [ - "/_mozilla/css/pseudo_element_b.html", + "/_mozilla/css/pseudo_element_b.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_element_restyle_no_rules.html": [ [ - "/_mozilla/css/pseudo_element_restyle_no_rules.html", + "/_mozilla/css/pseudo_element_restyle_no_rules.html", [ [ - "/_mozilla/css/pseudo_element_restyle_no_rules_ref.html", + "/_mozilla/css/pseudo_element_restyle_no_rules_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_element_spacing_margin.html": [ [ - "/_mozilla/css/pseudo_element_spacing_margin.html", + "/_mozilla/css/pseudo_element_spacing_margin.html", [ [ - "/_mozilla/css/pseudo_element_spacing_ref.html", + "/_mozilla/css/pseudo_element_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_element_spacing_padding.html": [ [ - "/_mozilla/css/pseudo_element_spacing_padding.html", + "/_mozilla/css/pseudo_element_spacing_padding.html", [ [ - "/_mozilla/css/pseudo_element_spacing_ref.html", + "/_mozilla/css/pseudo_element_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/pseudo_inherit.html": [ [ - "/_mozilla/css/pseudo_inherit.html", + "/_mozilla/css/pseudo_inherit.html", [ [ - "/_mozilla/css/pseudo_inherit_ref.html", + "/_mozilla/css/pseudo_inherit_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/quotes_none_a.html": [ [ - "/_mozilla/css/quotes_none_a.html", + "/_mozilla/css/quotes_none_a.html", [ [ - "/_mozilla/css/quotes_none_ref.html", + "/_mozilla/css/quotes_none_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/quotes_simple_a.html": [ [ - "/_mozilla/css/quotes_simple_a.html", + "/_mozilla/css/quotes_simple_a.html", [ [ - "/_mozilla/css/quotes_simple_ref.html", + "/_mozilla/css/quotes_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/relative_position_clip_a.html": [ [ - "/_mozilla/css/relative_position_clip_a.html", + "/_mozilla/css/relative_position_clip_a.html", [ [ - "/_mozilla/css/relative_position_clip_ref.html", + "/_mozilla/css/relative_position_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/relative_position_vertical_percentage_a.html": [ [ - "/_mozilla/css/relative_position_vertical_percentage_a.html", + "/_mozilla/css/relative_position_vertical_percentage_a.html", [ [ - "/_mozilla/css/relative_position_vertical_percentage_ref.html", + "/_mozilla/css/relative_position_vertical_percentage_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/removeproperty.html": [ [ - "/_mozilla/css/removeproperty.html", + "/_mozilla/css/removeproperty.html", [ [ - "/_mozilla/css/removeproperty_ref.html", + "/_mozilla/css/removeproperty_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/restyle-nth-child.html": [ [ - "/_mozilla/css/restyle-nth-child.html", + "/_mozilla/css/restyle-nth-child.html", [ [ - "/_mozilla/css/restyle-nth-child-ref.html", + "/_mozilla/css/restyle-nth-child-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/restyle_hints_attr.html": [ [ - "/_mozilla/css/restyle_hints_attr.html", + "/_mozilla/css/restyle_hints_attr.html", [ [ - "/_mozilla/css/restyle_hints_attr_ref.html", + "/_mozilla/css/restyle_hints_attr_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/restyle_hints_state.html": [ [ - "/_mozilla/css/restyle_hints_state.html", + "/_mozilla/css/restyle_hints_state.html", [ [ - "/_mozilla/css/restyle_hints_state_ref.html", + "/_mozilla/css/restyle_hints_state_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/root_display_inline_a.html": [ [ - "/_mozilla/css/root_display_inline_a.html", + "/_mozilla/css/root_display_inline_a.html", [ [ - "/_mozilla/css/root_display_ref.html", + "/_mozilla/css/root_display_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/root_display_without_style_a.html": [ [ - "/_mozilla/css/root_display_without_style_a.html", + "/_mozilla/css/root_display_without_style_a.html", [ [ - "/_mozilla/css/root_display_ref.html", + "/_mozilla/css/root_display_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/root_height_a.html": [ [ - "/_mozilla/css/root_height_a.html", + "/_mozilla/css/root_height_a.html", [ [ - "/_mozilla/css/root_height_b.html", + "/_mozilla/css/root_height_b.html", "==" ] - ], + ], {} ] - ], + ], "css/root_margin_collapse_a.html": [ [ - "/_mozilla/css/root_margin_collapse_a.html", + "/_mozilla/css/root_margin_collapse_a.html", [ [ - "/_mozilla/css/root_margin_collapse_b.html", + "/_mozilla/css/root_margin_collapse_b.html", "==" ] - ], + ], {} ] - ], + ], "css/root_margins_a.html": [ [ - "/_mozilla/css/root_margins_a.html", + "/_mozilla/css/root_margins_a.html", [ [ - "/_mozilla/css/root_margins_ref.html", + "/_mozilla/css/root_margins_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/root_pseudo_a.html": [ [ - "/_mozilla/css/root_pseudo_a.html", + "/_mozilla/css/root_pseudo_a.html", [ [ - "/_mozilla/css/root_pseudo_b.html", + "/_mozilla/css/root_pseudo_b.html", "==" ] - ], + ], {} ] - ], + ], "css/rotate_anim.html": [ [ - "/_mozilla/css/rotate_anim.html", + "/_mozilla/css/rotate_anim.html", [ [ - "/_mozilla/css/rotate_anim_ref.html", + "/_mozilla/css/rotate_anim_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/rtl_body.html": [ [ - "/_mozilla/css/rtl_body.html", + "/_mozilla/css/rtl_body.html", [ [ - "/_mozilla/css/rtl_body_ref.html", + "/_mozilla/css/rtl_body_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/rtl_float_a.html": [ [ - "/_mozilla/css/rtl_float_a.html", + "/_mozilla/css/rtl_float_a.html", [ [ - "/_mozilla/css/rtl_float_ref.html", + "/_mozilla/css/rtl_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/rtl_margin_a.html": [ [ - "/_mozilla/css/rtl_margin_a.html", + "/_mozilla/css/rtl_margin_a.html", [ [ - "/_mozilla/css/rtl_margin_ref.html", + "/_mozilla/css/rtl_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/rtl_simple.html": [ [ - "/_mozilla/css/rtl_simple.html", + "/_mozilla/css/rtl_simple.html", [ [ - "/_mozilla/css/rtl_simple_ref.html", + "/_mozilla/css/rtl_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/rtl_table_a.html": [ [ - "/_mozilla/css/rtl_table_a.html", + "/_mozilla/css/rtl_table_a.html", [ [ - "/_mozilla/css/rtl_table_ref.html", + "/_mozilla/css/rtl_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/servo_center_a.html": [ [ - "/_mozilla/css/servo_center_a.html", + "/_mozilla/css/servo_center_a.html", [ [ - "/_mozilla/css/servo_center_ref.html", + "/_mozilla/css/servo_center_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/setattribute_id_restyle_a.html": [ [ - "/_mozilla/css/setattribute_id_restyle_a.html", + "/_mozilla/css/setattribute_id_restyle_a.html", [ [ - "/_mozilla/css/setattribute_id_restyle_b.html", + "/_mozilla/css/setattribute_id_restyle_b.html", "==" ] - ], + ], {} ] - ], + ], "css/simple_inline_absolute_containing_block_a.html": [ [ - "/_mozilla/css/simple_inline_absolute_containing_block_a.html", + "/_mozilla/css/simple_inline_absolute_containing_block_a.html", [ [ - "/_mozilla/css/simple_inline_absolute_containing_block_ref.html", + "/_mozilla/css/simple_inline_absolute_containing_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacked_layers.html": [ [ - "/_mozilla/css/stacked_layers.html", + "/_mozilla/css/stacked_layers.html", [ [ - "/_mozilla/css/stacked_layers_ref.html", + "/_mozilla/css/stacked_layers_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacking_context_overflow_a.html": [ [ - "/_mozilla/css/stacking_context_overflow_a.html", + "/_mozilla/css/stacking_context_overflow_a.html", [ [ - "/_mozilla/css/stacking_context_overflow_ref.html", + "/_mozilla/css/stacking_context_overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacking_context_overflow_relative_outline_a.html": [ [ - "/_mozilla/css/stacking_context_overflow_relative_outline_a.html", + "/_mozilla/css/stacking_context_overflow_relative_outline_a.html", [ [ - "/_mozilla/css/stacking_context_overflow_relative_outline_ref.html", + "/_mozilla/css/stacking_context_overflow_relative_outline_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacking_context_rtl.html": [ [ - "/_mozilla/css/stacking_context_rtl.html", + "/_mozilla/css/stacking_context_rtl.html", [ [ - "/_mozilla/css/stacking_context_rtl-ref.html", + "/_mozilla/css/stacking_context_rtl-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacking_order_overflow_auto.html": [ [ - "/_mozilla/css/stacking_order_overflow_auto.html", + "/_mozilla/css/stacking_order_overflow_auto.html", [ [ - "/_mozilla/css/stacking_order_ref.html", + "/_mozilla/css/stacking_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/stacking_order_overflow_scroll.html": [ [ - "/_mozilla/css/stacking_order_overflow_scroll.html", + "/_mozilla/css/stacking_order_overflow_scroll.html", [ [ - "/_mozilla/css/stacking_order_ref.html", + "/_mozilla/css/stacking_order_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/style_is_in_doc.html": [ [ - "/_mozilla/css/style_is_in_doc.html", + "/_mozilla/css/style_is_in_doc.html", [ [ - "/_mozilla/css/style_is_in_doc_ref.html", + "/_mozilla/css/style_is_in_doc_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/submit_focus_a.html": [ [ - "/_mozilla/css/submit_focus_a.html", + "/_mozilla/css/submit_focus_a.html", [ [ - "/_mozilla/css/submit_focus_b.html", + "/_mozilla/css/submit_focus_b.html", "==" ] - ], + ], {} ] - ], + ], "css/svg_children.html": [ [ - "/_mozilla/css/svg_children.html", + "/_mozilla/css/svg_children.html", [ [ - "/_mozilla/css/svg_children_ref.html", + "/_mozilla/css/svg_children_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_auto_width.html": [ [ - "/_mozilla/css/table_auto_width.html", + "/_mozilla/css/table_auto_width.html", [ [ - "/_mozilla/css/table_auto_width_ref.html", + "/_mozilla/css/table_auto_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_caption_bottom_a.html": [ [ - "/_mozilla/css/table_caption_bottom_a.html", + "/_mozilla/css/table_caption_bottom_a.html", [ [ - "/_mozilla/css/table_caption_bottom_ref.html", + "/_mozilla/css/table_caption_bottom_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_caption_top_a.html": [ [ - "/_mozilla/css/table_caption_top_a.html", + "/_mozilla/css/table_caption_top_a.html", [ [ - "/_mozilla/css/table_caption_top_ref.html", + "/_mozilla/css/table_caption_top_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_cell_float_a.html": [ [ - "/_mozilla/css/table_cell_float_a.html", + "/_mozilla/css/table_cell_float_a.html", [ [ - "/_mozilla/css/table_cell_float_ref.html", + "/_mozilla/css/table_cell_float_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_center_a.html": [ [ - "/_mozilla/css/table_center_a.html", + "/_mozilla/css/table_center_a.html", [ [ - "/_mozilla/css/table_center_ref.html", + "/_mozilla/css/table_center_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_colspan_fixed_a.html": [ [ - "/_mozilla/css/table_colspan_fixed_a.html", + "/_mozilla/css/table_colspan_fixed_a.html", [ [ - "/_mozilla/css/table_colspan_fixed_ref.html", + "/_mozilla/css/table_colspan_fixed_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_colspan_simple_a.html": [ [ - "/_mozilla/css/table_colspan_simple_a.html", + "/_mozilla/css/table_colspan_simple_a.html", [ [ - "/_mozilla/css/table_colspan_simple_ref.html", + "/_mozilla/css/table_colspan_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_colspan_spacing_a.html": [ [ - "/_mozilla/css/table_colspan_spacing_a.html", + "/_mozilla/css/table_colspan_spacing_a.html", [ [ - "/_mozilla/css/table_colspan_spacing_ref.html", + "/_mozilla/css/table_colspan_spacing_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_containing_block_a.html": [ [ - "/_mozilla/css/table_containing_block_a.html", + "/_mozilla/css/table_containing_block_a.html", [ [ - "/_mozilla/css/table_containing_block_ref.html", + "/_mozilla/css/table_containing_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_expansion_to_fit_a.html": [ [ - "/_mozilla/css/table_expansion_to_fit_a.html", + "/_mozilla/css/table_expansion_to_fit_a.html", [ [ - "/_mozilla/css/table_expansion_to_fit_ref.html", + "/_mozilla/css/table_expansion_to_fit_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_float_translation_a.html": [ [ - "/_mozilla/css/table_float_translation_a.html", + "/_mozilla/css/table_float_translation_a.html", [ [ - "/_mozilla/css/table_float_translation_ref.html", + "/_mozilla/css/table_float_translation_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_intrinsic_style_specified_width_a.html": [ [ - "/_mozilla/css/table_intrinsic_style_specified_width_a.html", + "/_mozilla/css/table_intrinsic_style_specified_width_a.html", [ [ - "/_mozilla/css/table_intrinsic_style_specified_width_ref.html", + "/_mozilla/css/table_intrinsic_style_specified_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_margin_a.html": [ [ - "/_mozilla/css/table_margin_a.html", + "/_mozilla/css/table_margin_a.html", [ [ - "/_mozilla/css/table_margin_ref.html", + "/_mozilla/css/table_margin_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_margin_auto_a.html": [ [ - "/_mozilla/css/table_margin_auto_a.html", + "/_mozilla/css/table_margin_auto_a.html", [ [ - "/_mozilla/css/table_margin_auto_ref.html", + "/_mozilla/css/table_margin_auto_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_overflow.html": [ [ - "/_mozilla/css/table_overflow.html", + "/_mozilla/css/table_overflow.html", [ [ - "/_mozilla/css/table_overflow_ref.html", + "/_mozilla/css/table_overflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_padding_a.html": [ [ - "/_mozilla/css/table_padding_a.html", + "/_mozilla/css/table_padding_a.html", [ [ - "/_mozilla/css/table_padding_ref.html", + "/_mozilla/css/table_padding_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_percentage_capping_a.html": [ [ - "/_mozilla/css/table_percentage_capping_a.html", + "/_mozilla/css/table_percentage_capping_a.html", [ [ - "/_mozilla/css/table_percentage_capping_ref.html", + "/_mozilla/css/table_percentage_capping_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_percentage_width_a.html": [ [ - "/_mozilla/css/table_percentage_width_a.html", + "/_mozilla/css/table_percentage_width_a.html", [ [ - "/_mozilla/css/table_percentage_width_ref.html", + "/_mozilla/css/table_percentage_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_preferred_width_a.html": [ [ - "/_mozilla/css/table_preferred_width_a.html", + "/_mozilla/css/table_preferred_width_a.html", [ [ - "/_mozilla/css/table_preferred_width_ref.html", + "/_mozilla/css/table_preferred_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_root_percent_width.html": [ [ - "/_mozilla/css/table_root_percent_width.html", + "/_mozilla/css/table_root_percent_width.html", [ [ - "/_mozilla/css/table_root_percent_width_ref.html", + "/_mozilla/css/table_root_percent_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_row_direction_a.html": [ [ - "/_mozilla/css/table_row_direction_a.html", + "/_mozilla/css/table_row_direction_a.html", [ [ - "/_mozilla/css/table_row_direction_ref.html", + "/_mozilla/css/table_row_direction_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_rowspan_notequal_a.html": [ [ - "/_mozilla/css/table_rowspan_notequal_a.html", + "/_mozilla/css/table_rowspan_notequal_a.html", [ [ - "/_mozilla/css/table_rowspan_notequal_ref.html", + "/_mozilla/css/table_rowspan_notequal_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/table_rowspan_rowgroup_a.html": [ [ - "/_mozilla/css/table_rowspan_rowgroup_a.html", + "/_mozilla/css/table_rowspan_rowgroup_a.html", [ [ - "/_mozilla/css/table_rowspan_rowgroup_ref.html", + "/_mozilla/css/table_rowspan_rowgroup_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_rowspan_simple_a.html": [ [ - "/_mozilla/css/table_rowspan_simple_a.html", + "/_mozilla/css/table_rowspan_simple_a.html", [ [ - "/_mozilla/css/table_rowspan_simple_ref.html", + "/_mozilla/css/table_rowspan_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_specified_width_a.html": [ [ - "/_mozilla/css/table_specified_width_a.html", + "/_mozilla/css/table_specified_width_a.html", [ [ - "/_mozilla/css/table_specified_width_ref.html", + "/_mozilla/css/table_specified_width_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_valign_presentational_hint_a.html": [ [ - "/_mozilla/css/table_valign_presentational_hint_a.html", + "/_mozilla/css/table_valign_presentational_hint_a.html", [ [ - "/_mozilla/css/table_valign_presentational_hint_ref.html", + "/_mozilla/css/table_valign_presentational_hint_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_vertical_align_absolute_a.html": [ [ - "/_mozilla/css/table_vertical_align_absolute_a.html", + "/_mozilla/css/table_vertical_align_absolute_a.html", [ [ - "/_mozilla/css/table_vertical_align_absolute_ref.html", + "/_mozilla/css/table_vertical_align_absolute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_vertical_align_margin_padding.html": [ [ - "/_mozilla/css/table_vertical_align_margin_padding.html", + "/_mozilla/css/table_vertical_align_margin_padding.html", [ [ - "/_mozilla/css/table_vertical_align_margin_padding_ref.html", + "/_mozilla/css/table_vertical_align_margin_padding_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_width_attribute_a.html": [ [ - "/_mozilla/css/table_width_attribute_a.html", + "/_mozilla/css/table_width_attribute_a.html", [ [ - "/_mozilla/css/table_width_attribute_ref.html", + "/_mozilla/css/table_width_attribute_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/table_with_position_sticky.html": [ [ - "/_mozilla/css/table_with_position_sticky.html", + "/_mozilla/css/table_with_position_sticky.html", [ [ - "/_mozilla/css/table_with_position_sticky_ref.html", + "/_mozilla/css/table_with_position_sticky_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_align_complex_a.html": [ [ - "/_mozilla/css/text_align_complex_a.html", + "/_mozilla/css/text_align_complex_a.html", [ [ - "/_mozilla/css/text_align_complex_ref.html", + "/_mozilla/css/text_align_complex_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_align_justify_a.html": [ [ - "/_mozilla/css/text_align_justify_a.html", + "/_mozilla/css/text_align_justify_a.html", [ [ - "/_mozilla/css/text_align_justify_ref.html", + "/_mozilla/css/text_align_justify_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_align_rtl.html": [ [ - "/_mozilla/css/text_align_rtl.html", + "/_mozilla/css/text_align_rtl.html", [ [ - "/_mozilla/css/text_align_rtl_ref.html", + "/_mozilla/css/text_align_rtl_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_align_start_end.html": [ [ - "/_mozilla/css/text_align_start_end.html", + "/_mozilla/css/text_align_start_end.html", [ [ - "/_mozilla/css/text_align_start_end_ref.html", + "/_mozilla/css/text_align_start_end_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_damage_a.html": [ [ - "/_mozilla/css/text_damage_a.html", + "/_mozilla/css/text_damage_a.html", [ [ - "/_mozilla/css/text_damage_ref.html", + "/_mozilla/css/text_damage_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_decoration_cached.html": [ [ - "/_mozilla/css/text_decoration_cached.html", + "/_mozilla/css/text_decoration_cached.html", [ [ - "/_mozilla/css/text_decoration_cached_ref.html", + "/_mozilla/css/text_decoration_cached_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_decoration_propagation_a.html": [ [ - "/_mozilla/css/text_decoration_propagation_a.html", + "/_mozilla/css/text_decoration_propagation_a.html", [ [ - "/_mozilla/css/text_decoration_propagation_b.html", + "/_mozilla/css/text_decoration_propagation_b.html", "==" ] - ], + ], {} ] - ], + ], "css/text_decoration_smoke_a.html": [ [ - "/_mozilla/css/text_decoration_smoke_a.html", + "/_mozilla/css/text_decoration_smoke_a.html", [ [ - "/_mozilla/css/text_decoration_smoke_ref.html", + "/_mozilla/css/text_decoration_smoke_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/text_decoration_underline_subpx_a.html": [ [ - "/_mozilla/css/text_decoration_underline_subpx_a.html", + "/_mozilla/css/text_decoration_underline_subpx_a.html", [ [ - "/_mozilla/css/text_decoration_underline_subpx_ref.html", + "/_mozilla/css/text_decoration_underline_subpx_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/text_indent_a.html": [ [ - "/_mozilla/css/text_indent_a.html", + "/_mozilla/css/text_indent_a.html", [ [ - "/_mozilla/css/text_indent_ref.html", + "/_mozilla/css/text_indent_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_justify_none_a.html": [ [ - "/_mozilla/css/text_justify_none_a.html", + "/_mozilla/css/text_justify_none_a.html", [ [ - "/_mozilla/css/text_justify_none_ref.html", + "/_mozilla/css/text_justify_none_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_node_opacity.html": [ [ - "/_mozilla/css/text_node_opacity.html", + "/_mozilla/css/text_node_opacity.html", [ [ - "/_mozilla/css/text_node_opacity_ref.html", + "/_mozilla/css/text_node_opacity_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_overflow_basic_a.html": [ [ - "/_mozilla/css/text_overflow_basic_a.html", + "/_mozilla/css/text_overflow_basic_a.html", [ [ - "/_mozilla/css/text_overflow_basic_ref.html", + "/_mozilla/css/text_overflow_basic_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_overflow_ellipsis.html": [ [ - "/_mozilla/css/text_overflow_ellipsis.html", + "/_mozilla/css/text_overflow_ellipsis.html", [ [ - "/_mozilla/css/text_overflow_ref.html", + "/_mozilla/css/text_overflow_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/text_overflow_reflow.html": [ [ - "/_mozilla/css/text_overflow_reflow.html", + "/_mozilla/css/text_overflow_reflow.html", [ [ - "/_mozilla/css/text_overflow_reflow_ref.html", + "/_mozilla/css/text_overflow_reflow_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_overflow_string.html": [ [ - "/_mozilla/css/text_overflow_string.html", + "/_mozilla/css/text_overflow_string.html", [ [ - "/_mozilla/css/text_overflow_ref.html", + "/_mozilla/css/text_overflow_ref.html", "!=" ] - ], + ], {} ] - ], + ], "css/text_shadow_blur_a.html": [ [ - "/_mozilla/css/text_shadow_blur_a.html", + "/_mozilla/css/text_shadow_blur_a.html", [ [ - "/_mozilla/css/text_shadow_blur_ref.html", + "/_mozilla/css/text_shadow_blur_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_shadow_decorations_a.html": [ [ - "/_mozilla/css/text_shadow_decorations_a.html", + "/_mozilla/css/text_shadow_decorations_a.html", [ [ - "/_mozilla/css/text_shadow_decorations_ref.html", + "/_mozilla/css/text_shadow_decorations_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_shadow_multiple_shadows_a.html": [ [ - "/_mozilla/css/text_shadow_multiple_shadows_a.html", + "/_mozilla/css/text_shadow_multiple_shadows_a.html", [ [ - "/_mozilla/css/text_shadow_multiple_shadows_ref.html", + "/_mozilla/css/text_shadow_multiple_shadows_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_shadow_simple_a.html": [ [ - "/_mozilla/css/text_shadow_simple_a.html", + "/_mozilla/css/text_shadow_simple_a.html", [ [ - "/_mozilla/css/text_shadow_simple_ref.html", + "/_mozilla/css/text_shadow_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_transform_capitalize_a.html": [ [ - "/_mozilla/css/text_transform_capitalize_a.html", + "/_mozilla/css/text_transform_capitalize_a.html", [ [ - "/_mozilla/css/text_transform_capitalize_ref.html", + "/_mozilla/css/text_transform_capitalize_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_transform_lowercase_a.html": [ [ - "/_mozilla/css/text_transform_lowercase_a.html", + "/_mozilla/css/text_transform_lowercase_a.html", [ [ - "/_mozilla/css/text_transform_lowercase_ref.html", + "/_mozilla/css/text_transform_lowercase_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_transform_none_a.html": [ [ - "/_mozilla/css/text_transform_none_a.html", + "/_mozilla/css/text_transform_none_a.html", [ [ - "/_mozilla/css/text_transform_none_ref.html", + "/_mozilla/css/text_transform_none_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/text_transform_uppercase_a.html": [ [ - "/_mozilla/css/text_transform_uppercase_a.html", + "/_mozilla/css/text_transform_uppercase_a.html", [ [ - "/_mozilla/css/text_transform_uppercase_ref.html", + "/_mozilla/css/text_transform_uppercase_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/textarea_space_calculation.html": [ [ - "/_mozilla/css/textarea_space_calculation.html", + "/_mozilla/css/textarea_space_calculation.html", [ [ - "/_mozilla/css/textarea_space_calculation-ref.html", + "/_mozilla/css/textarea_space_calculation-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_3d.html": [ [ - "/_mozilla/css/transform_3d.html", + "/_mozilla/css/transform_3d.html", [ [ - "/_mozilla/css/transform_3d_ref.html", + "/_mozilla/css/transform_3d_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_3d_from_outside_viewport.html": [ [ - "/_mozilla/css/transform_3d_from_outside_viewport.html", + "/_mozilla/css/transform_3d_from_outside_viewport.html", [ [ - "/_mozilla/css/transform_3d_from_outside_viewport_ref.html", + "/_mozilla/css/transform_3d_from_outside_viewport_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_optimization.html": [ [ - "/_mozilla/css/transform_optimization.html", + "/_mozilla/css/transform_optimization.html", [ [ - "/_mozilla/css/transform_optimization_ref.html", + "/_mozilla/css/transform_optimization_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_scroll_layer.html": [ [ - "/_mozilla/css/transform_scroll_layer.html", + "/_mozilla/css/transform_scroll_layer.html", [ [ - "/_mozilla/css/transform_scroll_layer_ref.html", + "/_mozilla/css/transform_scroll_layer_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_simple_a.html": [ [ - "/_mozilla/css/transform_simple_a.html", + "/_mozilla/css/transform_simple_a.html", [ [ - "/_mozilla/css/transform_simple_ref.html", + "/_mozilla/css/transform_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_skew_a.html": [ [ - "/_mozilla/css/transform_skew_a.html", + "/_mozilla/css/transform_skew_a.html", [ [ - "/_mozilla/css/transform_skew_ref.html", + "/_mozilla/css/transform_skew_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transform_stacking_context_a.html": [ [ - "/_mozilla/css/transform_stacking_context_a.html", + "/_mozilla/css/transform_stacking_context_a.html", [ [ - "/_mozilla/css/transform_stacking_context_ref.html", + "/_mozilla/css/transform_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transition_calc.html": [ [ - "/_mozilla/css/transition_calc.html", + "/_mozilla/css/transition_calc.html", [ [ - "/_mozilla/css/transition_calc_ref.html", + "/_mozilla/css/transition_calc_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/transition_calc_implicit.html": [ [ - "/_mozilla/css/transition_calc_implicit.html", + "/_mozilla/css/transition_calc_implicit.html", [ [ - "/_mozilla/css/transition_calc_implicit_ref.html", + "/_mozilla/css/transition_calc_implicit_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/translate_clip.html": [ [ - "/_mozilla/css/translate_clip.html", + "/_mozilla/css/translate_clip.html", [ [ - "/_mozilla/css/translate_clip_ref.html", + "/_mozilla/css/translate_clip_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/translate_clip_nested.html": [ [ - "/_mozilla/css/translate_clip_nested.html", + "/_mozilla/css/translate_clip_nested.html", [ [ - "/_mozilla/css/translate_clip_nested_ref.html", + "/_mozilla/css/translate_clip_nested_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/truncated_text_fragment_stacking_context.html": [ [ - "/_mozilla/css/truncated_text_fragment_stacking_context.html", + "/_mozilla/css/truncated_text_fragment_stacking_context.html", [ [ - "/_mozilla/css/truncated_text_fragment_stacking_context_ref.html", + "/_mozilla/css/truncated_text_fragment_stacking_context_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/upper_id_attr.html": [ [ - "/_mozilla/css/upper_id_attr.html", + "/_mozilla/css/upper_id_attr.html", [ [ - "/_mozilla/css/upper_id_attr_ref.html", + "/_mozilla/css/upper_id_attr_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical-lr-blocks.html": [ [ - "/_mozilla/css/vertical-lr-blocks.html", + "/_mozilla/css/vertical-lr-blocks.html", [ [ - "/_mozilla/css/vertical-lr-blocks_ref.html", + "/_mozilla/css/vertical-lr-blocks_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_bottom_a.html": [ [ - "/_mozilla/css/vertical_align_bottom_a.html", + "/_mozilla/css/vertical_align_bottom_a.html", [ [ - "/_mozilla/css/vertical_align_bottom_ref.html", + "/_mozilla/css/vertical_align_bottom_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_inline_block_a.html": [ [ - "/_mozilla/css/vertical_align_inline_block_a.html", + "/_mozilla/css/vertical_align_inline_block_a.html", [ [ - "/_mozilla/css/vertical_align_inline_block_ref.html", + "/_mozilla/css/vertical_align_inline_block_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_inside_table_a.html": [ [ - "/_mozilla/css/vertical_align_inside_table_a.html", + "/_mozilla/css/vertical_align_inside_table_a.html", [ [ - "/_mozilla/css/vertical_align_inside_table_ref.html", + "/_mozilla/css/vertical_align_inside_table_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_middle_a.html": [ [ - "/_mozilla/css/vertical_align_middle_a.html", + "/_mozilla/css/vertical_align_middle_a.html", [ [ - "/_mozilla/css/vertical_align_middle_ref.html", + "/_mozilla/css/vertical_align_middle_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_sub_a.html": [ [ - "/_mozilla/css/vertical_align_sub_a.html", + "/_mozilla/css/vertical_align_sub_a.html", [ [ - "/_mozilla/css/vertical_align_sub_ref.html", + "/_mozilla/css/vertical_align_sub_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_super_a.html": [ [ - "/_mozilla/css/vertical_align_super_a.html", + "/_mozilla/css/vertical_align_super_a.html", [ [ - "/_mozilla/css/vertical_align_super_ref.html", + "/_mozilla/css/vertical_align_super_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_super_nested_a.html": [ [ - "/_mozilla/css/vertical_align_super_nested_a.html", + "/_mozilla/css/vertical_align_super_nested_a.html", [ [ - "/_mozilla/css/vertical_align_super_nested_ref.html", + "/_mozilla/css/vertical_align_super_nested_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_text_bottom_a.html": [ [ - "/_mozilla/css/vertical_align_text_bottom_a.html", + "/_mozilla/css/vertical_align_text_bottom_a.html", [ [ - "/_mozilla/css/vertical_align_text_bottom_ref.html", + "/_mozilla/css/vertical_align_text_bottom_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_text_top_a.html": [ [ - "/_mozilla/css/vertical_align_text_top_a.html", + "/_mozilla/css/vertical_align_text_top_a.html", [ [ - "/_mozilla/css/vertical_align_text_top_ref.html", + "/_mozilla/css/vertical_align_text_top_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_top_a.html": [ [ - "/_mozilla/css/vertical_align_top_a.html", + "/_mozilla/css/vertical_align_top_a.html", [ [ - "/_mozilla/css/vertical_align_top_ref.html", + "/_mozilla/css/vertical_align_top_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_top_bottom_a.html": [ [ - "/_mozilla/css/vertical_align_top_bottom_a.html", + "/_mozilla/css/vertical_align_top_bottom_a.html", [ [ - "/_mozilla/css/vertical_align_top_bottom_ref.html", + "/_mozilla/css/vertical_align_top_bottom_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/vertical_align_top_span_a.html": [ [ - "/_mozilla/css/vertical_align_top_span_a.html", + "/_mozilla/css/vertical_align_top_span_a.html", [ [ - "/_mozilla/css/vertical_align_top_span_ref.html", + "/_mozilla/css/vertical_align_top_span_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/viewport_ignore_desktop.html": [ [ - "/_mozilla/css/viewport_ignore_desktop.html", + "/_mozilla/css/viewport_ignore_desktop.html", [ [ - "/_mozilla/css/viewport_ignore_desktop_ref.html", + "/_mozilla/css/viewport_ignore_desktop_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/viewport_meta.html": [ [ - "/_mozilla/css/viewport_meta.html", + "/_mozilla/css/viewport_meta.html", [ [ - "/_mozilla/css/viewport_rule_ref.html", + "/_mozilla/css/viewport_rule_ref.html", "==" ] - ], + ], { "viewport_size": "800x600" } ] - ], + ], "css/viewport_percentage_vmin_vmax_a.html": [ [ - "/_mozilla/css/viewport_percentage_vmin_vmax_a.html", + "/_mozilla/css/viewport_percentage_vmin_vmax_a.html", [ [ - "/_mozilla/css/viewport_percentage_vmin_vmax_ref.html", + "/_mozilla/css/viewport_percentage_vmin_vmax_ref.html", "==" ] - ], + ], { "viewport_size": "700x500" } ] - ], + ], "css/viewport_percentage_vmin_vmax_b.html": [ [ - "/_mozilla/css/viewport_percentage_vmin_vmax_b.html", + "/_mozilla/css/viewport_percentage_vmin_vmax_b.html", [ [ - "/_mozilla/css/viewport_percentage_vmin_vmax_ref.html", + "/_mozilla/css/viewport_percentage_vmin_vmax_ref.html", "==" ] - ], + ], { "viewport_size": "500x700" } ] - ], + ], "css/viewport_percentage_vw_vh_a.html": [ [ - "/_mozilla/css/viewport_percentage_vw_vh_a.html", + "/_mozilla/css/viewport_percentage_vw_vh_a.html", [ [ - "/_mozilla/css/viewport_percentage_vw_vh_ref.html", + "/_mozilla/css/viewport_percentage_vw_vh_ref.html", "==" ] - ], + ], { "viewport_size": "700x500" } ] - ], + ], "css/viewport_percentage_vw_vh_b.html": [ [ - "/_mozilla/css/viewport_percentage_vw_vh_b.html", + "/_mozilla/css/viewport_percentage_vw_vh_b.html", [ [ - "/_mozilla/css/viewport_percentage_vw_vh_ref.html", + "/_mozilla/css/viewport_percentage_vw_vh_ref.html", "==" ] - ], + ], { "viewport_size": "500x700" } ] - ], + ], "css/viewport_rule.html": [ [ - "/_mozilla/css/viewport_rule.html", + "/_mozilla/css/viewport_rule.html", [ [ - "/_mozilla/css/viewport_rule_ref.html", + "/_mozilla/css/viewport_rule_ref.html", "==" ] - ], + ], { "viewport_size": "800x600" } ] - ], + ], "css/visibility_hidden.html": [ [ - "/_mozilla/css/visibility_hidden.html", + "/_mozilla/css/visibility_hidden.html", [ [ - "/_mozilla/css/visibility_hidden_ref.html", + "/_mozilla/css/visibility_hidden_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/white-space-mixed-002.htm": [ [ - "/_mozilla/css/white-space-mixed-002.htm", + "/_mozilla/css/white-space-mixed-002.htm", [ [ - "/_mozilla/css/white-space-mixed-002-ref.htm", + "/_mozilla/css/white-space-mixed-002-ref.htm", "==" ] - ], + ], {} ] - ], + ], "css/white-space-pre-line.htm": [ [ - "/_mozilla/css/white-space-pre-line.htm", + "/_mozilla/css/white-space-pre-line.htm", [ [ - "/_mozilla/css/white-space-pre-line-ref.htm", + "/_mozilla/css/white-space-pre-line-ref.htm", "==" ] - ], + ], {} ] - ], + ], "css/white-space-pre-wrap.htm": [ [ - "/_mozilla/css/white-space-pre-wrap.htm", + "/_mozilla/css/white-space-pre-wrap.htm", [ [ - "/_mozilla/css/white-space-pre-wrap-ref.htm", + "/_mozilla/css/white-space-pre-wrap-ref.htm", "==" ] - ], + ], {} ] - ], + ], "css/white_space_intrinsic_sizes_a.html": [ [ - "/_mozilla/css/white_space_intrinsic_sizes_a.html", + "/_mozilla/css/white_space_intrinsic_sizes_a.html", [ [ - "/_mozilla/css/white_space_intrinsic_sizes_ref.html", + "/_mozilla/css/white_space_intrinsic_sizes_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/whitespace_no_affect_border.html": [ [ - "/_mozilla/css/whitespace_no_affect_border.html", + "/_mozilla/css/whitespace_no_affect_border.html", [ [ - "/_mozilla/css/whitespace_no_affect_border_ref.html", + "/_mozilla/css/whitespace_no_affect_border_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/whitespace_nowrap_a.html": [ [ - "/_mozilla/css/whitespace_nowrap_a.html", + "/_mozilla/css/whitespace_nowrap_a.html", [ [ - "/_mozilla/css/whitespace_nowrap_ref.html", + "/_mozilla/css/whitespace_nowrap_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/whitespace_nowrap_line_breaking_a.html": [ [ - "/_mozilla/css/whitespace_nowrap_line_breaking_a.html", + "/_mozilla/css/whitespace_nowrap_line_breaking_a.html", [ [ - "/_mozilla/css/whitespace_nowrap_line_breaking_ref.html", + "/_mozilla/css/whitespace_nowrap_line_breaking_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/whitespace_pre.html": [ [ - "/_mozilla/css/whitespace_pre.html", + "/_mozilla/css/whitespace_pre.html", [ [ - "/_mozilla/css/whitespace_pre_ref.html", + "/_mozilla/css/whitespace_pre_ref.html", "==" ] - ], + ], {} ] - ], + ], "css/width_nonreplaced_block_simple_a.html": [ [ - "/_mozilla/css/width_nonreplaced_block_simple_a.html", + "/_mozilla/css/width_nonreplaced_block_simple_a.html", [ [ - "/_mozilla/css/width_nonreplaced_block_simple_b.html", + "/_mozilla/css/width_nonreplaced_block_simple_b.html", "==" ] - ], + ], {} ] - ], + ], "css/word-break-keep-all-005.htm": [ [ - "/_mozilla/css/word-break-keep-all-005.htm", + "/_mozilla/css/word-break-keep-all-005.htm", [ [ - "/_mozilla/css/word-break-keep-all-ref-005.htm", + "/_mozilla/css/word-break-keep-all-ref-005.htm", "==" ] - ], + ], {} ] - ], + ], "css/word-break-keep-all-006.htm": [ [ - "/_mozilla/css/word-break-keep-all-006.htm", + "/_mozilla/css/word-break-keep-all-006.htm", [ [ - "/_mozilla/css/word-break-keep-all-ref-006.htm", + "/_mozilla/css/word-break-keep-all-ref-006.htm", "==" ] - ], + ], {} ] - ], + ], "css/word-break-keep-all-007.htm": [ [ - "/_mozilla/css/word-break-keep-all-007.htm", + "/_mozilla/css/word-break-keep-all-007.htm", [ [ - "/_mozilla/css/word-break-keep-all-ref-007.htm", + "/_mozilla/css/word-break-keep-all-ref-007.htm", "==" ] - ], + ], {} ] - ], + ], "css/word-break-keep-all-008.htm": [ [ - "/_mozilla/css/word-break-keep-all-008.htm", + "/_mozilla/css/word-break-keep-all-008.htm", [ [ - "/_mozilla/css/word-break-keep-all-ref-008.htm", + "/_mozilla/css/word-break-keep-all-ref-008.htm", "==" ] - ], + ], {} ] - ], + ], "css/word-spacing.html": [ [ - "/_mozilla/css/word-spacing.html", + "/_mozilla/css/word-spacing.html", [ [ - "/_mozilla/css/word-spacing-ref.html", + "/_mozilla/css/word-spacing-ref.html", "==" ] - ], + ], {} ] - ], + ], "css/word_break_a.html": [ [ - "/_mozilla/css/word_break_a.html", + "/_mozilla/css/word_break_a.html", [ [ - "/_mozilla/css/word_break_ref.html", + "/_mozilla/css/word_break_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/FileAPI/blob_url_upload.html": [ [ - "/_mozilla/mozilla/FileAPI/blob_url_upload.html", + "/_mozilla/mozilla/FileAPI/blob_url_upload.html", [ [ - "/_mozilla/mozilla/FileAPI/blob_url_upload_ref.html", + "/_mozilla/mozilla/FileAPI/blob_url_upload_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/canvas/set_dimensions.html": [ [ - "/_mozilla/mozilla/canvas/set_dimensions.html", + "/_mozilla/mozilla/canvas/set_dimensions.html", [ [ - "/_mozilla/mozilla/canvas/set_dimensions_ref.html", + "/_mozilla/mozilla/canvas/set_dimensions_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/details_ui_closed.html": [ [ - "/_mozilla/mozilla/details_ui_closed.html", + "/_mozilla/mozilla/details_ui_closed.html", [ [ - "/_mozilla/mozilla/details_ui_closed_ref.html", + "/_mozilla/mozilla/details_ui_closed_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/details_ui_opened.html": [ [ - "/_mozilla/mozilla/details_ui_opened.html", + "/_mozilla/mozilla/details_ui_opened.html", [ [ - "/_mozilla/mozilla/details_ui_opened_ref.html", + "/_mozilla/mozilla/details_ui_opened_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/duplicated_scroll_ids.html": [ [ - "/_mozilla/mozilla/duplicated_scroll_ids.html", + "/_mozilla/mozilla/duplicated_scroll_ids.html", [ [ - "/_mozilla/mozilla/duplicated_scroll_ids_ref.html", + "/_mozilla/mozilla/duplicated_scroll_ids_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/iframe/resize_after_load.html": [ [ - "/_mozilla/mozilla/iframe/resize_after_load.html", + "/_mozilla/mozilla/iframe/resize_after_load.html", [ [ - "/_mozilla/mozilla/iframe/resize_after_load_ref.html", + "/_mozilla/mozilla/iframe/resize_after_load_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/remove_link_styles.html": [ [ - "/_mozilla/mozilla/remove_link_styles.html", + "/_mozilla/mozilla/remove_link_styles.html", [ [ - "/_mozilla/mozilla/remove_link_styles_ref.html", + "/_mozilla/mozilla/remove_link_styles_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/remove_style_styles.html": [ [ - "/_mozilla/mozilla/remove_style_styles.html", + "/_mozilla/mozilla/remove_style_styles.html", [ [ - "/_mozilla/mozilla/remove_style_styles_ref.html", + "/_mozilla/mozilla/remove_style_styles_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/reparse_style_elements.html": [ [ - "/_mozilla/mozilla/reparse_style_elements.html", + "/_mozilla/mozilla/reparse_style_elements.html", [ [ - "/_mozilla/mozilla/reparse_style_elements_ref.html", + "/_mozilla/mozilla/reparse_style_elements_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/request_animation_frame_reftest_wait.html": [ [ - "/_mozilla/mozilla/request_animation_frame_reftest_wait.html", + "/_mozilla/mozilla/request_animation_frame_reftest_wait.html", [ [ - "/_mozilla/mozilla/request_animation_frame_reftest_wait_ref.html", + "/_mozilla/mozilla/request_animation_frame_reftest_wait_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/restyle-out-of-document.html": [ [ - "/_mozilla/mozilla/restyle-out-of-document.html", + "/_mozilla/mozilla/restyle-out-of-document.html", [ [ - "/_mozilla/mozilla/restyle-out-of-document-ref.html", + "/_mozilla/mozilla/restyle-out-of-document-ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/scroll_root.html": [ [ - "/_mozilla/mozilla/scroll_root.html", + "/_mozilla/mozilla/scroll_root.html", [ [ - "/_mozilla/mozilla/scroll_root_ref.html", + "/_mozilla/mozilla/scroll_root_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/scrolling_div_background_borders.html": [ [ - "/_mozilla/mozilla/scrolling_div_background_borders.html", + "/_mozilla/mozilla/scrolling_div_background_borders.html", [ [ - "/_mozilla/mozilla/scrolling_div_background_borders_ref.html", + "/_mozilla/mozilla/scrolling_div_background_borders_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/simple_scroll_to_fragment.html": [ [ - "/_mozilla/mozilla/simple_scroll_to_fragment.html", + "/_mozilla/mozilla/simple_scroll_to_fragment.html", [ [ - "/_mozilla/mozilla/simple_scroll_to_fragment_ref.html", + "/_mozilla/mozilla/simple_scroll_to_fragment_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/sslfail.html": [ [ - "/_mozilla/mozilla/sslfail.html", + "/_mozilla/mozilla/sslfail.html", [ [ - "/_mozilla/mozilla/sslfail-ref.html", + "/_mozilla/mozilla/sslfail-ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/stylesheet-adopt-panic.html": [ [ - "/_mozilla/mozilla/stylesheet-adopt-panic.html", + "/_mozilla/mozilla/stylesheet-adopt-panic.html", [ [ - "/_mozilla/mozilla/stylesheet-adopt-panic-ref.html", + "/_mozilla/mozilla/stylesheet-adopt-panic-ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/svg/svg.html": [ [ - "/_mozilla/mozilla/svg/svg.html", + "/_mozilla/mozilla/svg/svg.html", [ [ - "/_mozilla/mozilla/svg/svg_ref.html", + "/_mozilla/mozilla/svg/svg_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/table_valign_bottom.html": [ [ - "/_mozilla/mozilla/table_valign_bottom.html", + "/_mozilla/mozilla/table_valign_bottom.html", [ [ - "/_mozilla/mozilla/table_valign_bottom_ref.html", + "/_mozilla/mozilla/table_valign_bottom_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/table_valign_middle.html": [ [ - "/_mozilla/mozilla/table_valign_middle.html", + "/_mozilla/mozilla/table_valign_middle.html", [ [ - "/_mozilla/mozilla/table_valign_middle_ref.html", + "/_mozilla/mozilla/table_valign_middle_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/table_valign_uneven_height.html": [ [ - "/_mozilla/mozilla/table_valign_uneven_height.html", + "/_mozilla/mozilla/table_valign_uneven_height.html", [ [ - "/_mozilla/mozilla/table_valign_uneven_height_ref.html", + "/_mozilla/mozilla/table_valign_uneven_height_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/textarea_placeholder.html": [ [ - "/_mozilla/mozilla/textarea_placeholder.html", + "/_mozilla/mozilla/textarea_placeholder.html", [ [ - "/_mozilla/mozilla/textarea_placeholder_ref.html", + "/_mozilla/mozilla/textarea_placeholder_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/video_poster_frame.html": [ [ - "/_mozilla/mozilla/video_poster_frame.html", + "/_mozilla/mozilla/video_poster_frame.html", [ [ - "/_mozilla/mozilla/video_poster_frame_ref.html", + "/_mozilla/mozilla/video_poster_frame_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/clearcolor.html": [ [ - "/_mozilla/mozilla/webgl/clearcolor.html", + "/_mozilla/mozilla/webgl/clearcolor.html", [ [ - "/_mozilla/mozilla/webgl/clearcolor_ref.html", + "/_mozilla/mozilla/webgl/clearcolor_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/draw_arrays_simple.html": [ [ - "/_mozilla/mozilla/webgl/draw_arrays_simple.html", + "/_mozilla/mozilla/webgl/draw_arrays_simple.html", [ [ - "/_mozilla/mozilla/webgl/draw_arrays_simple_ref.html", + "/_mozilla/mozilla/webgl/draw_arrays_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/tex_image_2d_abv.html": [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_abv.html", + "/_mozilla/mozilla/webgl/tex_image_2d_abv.html", [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_abv_ref.html", + "/_mozilla/mozilla/webgl/tex_image_2d_abv_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/tex_image_2d_canvas.html": [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_canvas.html", + "/_mozilla/mozilla/webgl/tex_image_2d_canvas.html", [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_canvas_ref.html", + "/_mozilla/mozilla/webgl/tex_image_2d_canvas_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/tex_image_2d_canvas2d.html": [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_canvas2d.html", + "/_mozilla/mozilla/webgl/tex_image_2d_canvas2d.html", [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_canvas_ref.html", + "/_mozilla/mozilla/webgl/tex_image_2d_canvas_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/tex_image_2d_mipmap.html": [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_mipmap.html", + "/_mozilla/mozilla/webgl/tex_image_2d_mipmap.html", [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_simple_ref.html", + "/_mozilla/mozilla/webgl/tex_image_2d_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/webgl/tex_image_2d_simple.html": [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_simple.html", + "/_mozilla/mozilla/webgl/tex_image_2d_simple.html", [ [ - "/_mozilla/mozilla/webgl/tex_image_2d_simple_ref.html", + "/_mozilla/mozilla/webgl/tex_image_2d_simple_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/worklets/test_paint_worklet.html": [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet.html", + "/_mozilla/mozilla/worklets/test_paint_worklet.html", [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_ref.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/worklets/test_paint_worklet_size.html": [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_size.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_size.html", [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_ref.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_ref.html", "==" ] - ], + ], {} ] - ], + ], "mozilla/worklets/test_paint_worklet_timeout.html": [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_timeout.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_timeout.html", [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_timeout_ref.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_timeout_ref.html", "==" ] - ], + ], {} ] ] - }, + }, "reftest_node": { "css/border_black_groove.html": [ [ - "/_mozilla/css/border_black_groove.html", + "/_mozilla/css/border_black_groove.html", [ [ - "/_mozilla/css/border_black_solid.html", + "/_mozilla/css/border_black_solid.html", "!=" ] - ], + ], {} ] ] - }, + }, "support": { "bluetooth/bluetooth-helpers.js": [ [ {} ] - ], + ], "css/100x100_green.png": [ [ {} ] - ], + ], "css/250x250_green.png": [ [ {} ] - ], + ], "css/2x4.png": [ [ {} ] - ], + ], "css/400x400_green.png": [ [ {} ] - ], + ], "css/4x2.png": [ [ {} ] - ], + ], "css/500x300_green.html": [ [ {} ] - ], + ], "css/abs-overflow-stackingcontext_ref.html": [ [ {} ] - ], + ], "css/abs_float_pref_width-ref.html": [ [ {} ] - ], + ], "css/abs_rel_explicit_height_ref.html": [ [ {} ] - ], + ], "css/absolute_clipping_of_own_contents_ref.html": [ [ {} ] - ], + ], "css/absolute_content_height_ref.html": [ [ {} ] - ], + ], "css/absolute_css_width_ref.html": [ [ {} ] - ], + ], "css/absolute_div_with_padding_ref.html": [ [ {} ] - ], + ], "css/absolute_hypothetical_float_ref.html": [ [ {} ] - ], + ], "css/absolute_hypothetical_with_intervening_inline_block_ref.html": [ [ {} ] - ], + ], "css/absolute_ib_split_ref.html": [ [ {} ] - ], + ], "css/absolute_img_with_padding_ref.html": [ [ {} ] - ], + ], "css/absolute_inline_containing_block_ref.html": [ [ {} ] - ], + ], "css/absolute_line_height_after_float_ref.html": [ [ {} ] - ], + ], "css/absolute_table_ref.html": [ [ {} ] - ], + ], "css/absolute_z_index_auto_paint_order_ref.html": [ [ {} ] - ], + ], "css/acid1.png": [ [ {} ] - ], + ], "css/acid1_b.html": [ [ {} ] - ], + ], "css/acid2.html": [ [ {} ] - ], + ], "css/acid2_ref.png": [ [ {} ] - ], + ], "css/acid2_ref_broken.html": [ [ {} ] - ], + ], "css/acid2_ref_broken.png": [ [ {} ] - ], + ], "css/after_block_iteration_ref.html": [ [ {} ] - ], + ], "css/alpha_gif_a.gif": [ [ {} ] - ], + ], "css/alpha_gif_b.gif": [ [ {} ] - ], + ], "css/alpha_gif_b.html": [ [ {} ] - ], + ], "css/alpha_png_a.png": [ [ {} ] - ], + ], "css/alpha_png_b.html": [ [ {} ] - ], + ], "css/alpha_png_b.png": [ [ {} ] - ], + ], "css/anon_block_inherit_b.html": [ [ {} ] - ], + ], "css/append_style_b.html": [ [ {} ] - ], + ], "css/attr_exists_selector_ref.html": [ [ {} ] - ], + ], "css/attr_selector_case_sensitivity_ref.html": [ [ {} ] - ], + ], "css/background_border_padding_crash-ref.html": [ [ {} ] - ], + ], "css/background_clip_ref.html": [ [ {} ] - ], + ], "css/background_image_position_ref.html": [ [ {} ] - ], + ], "css/background_image_ref.html": [ [ {} ] - ], + ], "css/background_none_b.html": [ [ {} ] - ], + ], "css/background_origin_ref.html": [ [ {} ] - ], + ], "css/background_position_b.html": [ [ {} ] - ], + ], "css/background_position_shorthand_ref.html": [ [ {} ] - ], + ], "css/background_ref.html": [ [ {} ] - ], + ], "css/background_repeat_both_b.html": [ [ {} ] - ], + ], "css/background_repeat_none_b.html": [ [ {} ] - ], + ], "css/background_repeat_x_b.html": [ [ {} ] - ], + ], "css/background_repeat_y_b.html": [ [ {} ] - ], + ], "css/background_rust_ref.html": [ [ {} ] - ], + ], "css/background_size.png": [ [ {} ] - ], + ], "css/background_size_ref.html": [ [ {} ] - ], + ], "css/background_size_shorthand_ref.html": [ [ {} ] - ], + ], "css/background_size_zero_ref.html": [ [ {} ] - ], + ], "css/basic_width_em.html": [ [ {} ] - ], + ], "css/blackborder_ref.html": [ [ {} ] - ], + ], "css/blank.html": [ [ {} ] - ], + ], "css/block_formatting_context_cleared_float_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_complex_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_containing_floats_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_float_inorder_interaction_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_float_placement_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_margin_collapse_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_margin_inout_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_max_width_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_negative_margins_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_overflow_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_translation_ref.html": [ [ {} ] - ], + ], "css/block_formatting_context_with_margin_ref.html": [ [ {} ] - ], + ], "css/block_replaced_content_ref.html": [ [ {} ] - ], + ], "css/blur_ref.html": [ [ {} ] - ], + ], "css/border-image-linear-gradient-ref.html": [ [ {} ] - ], + ], "css/border_black_solid.html": [ [ {} ] - ], + ], "css/border_code_tag_ref.html": [ [ {} ] - ], + ], "css/border_collapse_missing_cell_ref.html": [ [ {} ] - ], + ], "css/border_collapse_row_ref.html": [ [ {} ] - ], + ], "css/border_collapse_rowgroup_ref.html": [ [ {} ] - ], + ], "css/border_collapse_simple_ref.html": [ [ {} ] - ], + ], "css/border_inline_split_ref.html": [ [ {} ] - ], + ], "css/border_radius_asymmetric_sizes_ref.html": [ [ {} ] - ], + ], "css/border_radius_clip_ref.html": [ [ {} ] - ], + ], "css/border_radius_clipping_contents_ref.html": [ [ {} ] - ], + ], "css/border_radius_dashed_ref.html": [ [ {} ] - ], + ], "css/border_radius_elliptical_ref.html": [ [ {} ] - ], + ], "css/border_radius_in_border_radius_ref.html": [ [ {} ] - ], + ], "css/border_radius_overlapping_ref.html": [ [ {} ] - ], + ], "css/border_radius_shorthand_ref.html": [ [ {} ] - ], + ], "css/border_radius_zero_sizes_ref.html": [ [ {} ] - ], + ], "css/border_rounding_1px_invisible_issue_7184_ref.html": [ [ {} ] - ], + ], "css/border_spacing_empty_table_ref.html": [ [ {} ] - ], + ], "css/border_spacing_ref.html": [ [ {} ] - ], + ], "css/border_style_none_b.html": [ [ {} ] - ], + ], "css/borders.png": [ [ {} ] - ], + ], "css/borders_b.html": [ [ {} ] - ], + ], "css/box_shadow_bg_ref.html": [ [ {} ] - ], + ], "css/box_shadow_blur_fixed_ref.html": [ [ {} ] - ], + ], "css/box_shadow_blur_ref.html": [ [ {} ] - ], + ], "css/box_shadow_border_box_ref.html": [ [ {} ] - ], + ], "css/box_shadow_default_color_ref.html": [ [ {} ] - ], + ], "css/box_shadow_inset_bg_ref.html": [ [ {} ] - ], + ], "css/box_shadow_inset_parsing_ref.html": [ [ {} ] - ], + ], "css/box_shadow_inset_ref.html": [ [ {} ] - ], + ], "css/box_shadow_paint_order_ref.html": [ [ {} ] - ], + ], "css/box_shadow_spread_ref.html": [ [ {} ] - ], + ], "css/box_sizing_border_box_ref.html": [ [ {} ] - ], + ], "css/box_sizing_sanity_check_ref.html": [ [ {} ] - ], + ], "css/br-ref.html": [ [ {} ] - ], + ], "css/bubbles.png": [ [ {} ] - ], + ], "css/bug-1361013-cousin-sharing-ref.html": [ [ {} ] - ], + ], "css/button_css_width_ref.html": [ [ {} ] - ], + ], "css/button_whitespace_ref.html": [ [ {} ] - ], + ], "css/calc-basic-ref.html": [ [ {} ] - ], + ], "css/canvas_as_block_element_ref.html": [ [ {} ] - ], + ], "css/canvas_linear_gradient_ref.html": [ [ {} ] - ], + ], "css/canvas_over_area_ref.html": [ [ {} ] - ], + ], "css/canvas_radial_gradient.png": [ [ {} ] - ], + ], "css/canvas_radial_gradient_ref.html": [ [ {} ] - ], + ], "css/car.jpg": [ [ {} ] - ], + ], "css/case-insensitive-font-family-ref.html": [ [ {} ] - ], + ], "css/class-namespaces-ref.html": [ [ {} ] - ], + ], "css/clear_generated_content_table_ref.html": [ [ {} ] - ], + ], "css/clip_ref.html": [ [ {} ] - ], + ], "css/complex_glyphs_ref.html": [ [ {} ] - ], + ], "css/content_color_ref.html": [ [ {} ] - ], + ], "css/counters_nested_ref.html": [ [ {} ] - ], + ], "css/counters_simple_ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-bottom-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-flexbox-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-grid-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-inflow-position-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-inline-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-left-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-margins-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-bottom-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-inline-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-left-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-right-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-table-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-nested-top-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-overflow-padding-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-right-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-stacking-context-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-tfoot-bottom-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-th-bottom-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-th-left-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-th-right-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-th-top-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-thead-top-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-tr-bottom-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-table-tr-top-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-top-ref.html": [ [ {} ] - ], + ], "css/css-position-3/position-sticky-writing-modes-ref.html": [ [ {} ] - ], + ], "css/css/ahem.css": [ [ {} ] - ], + ], "css/data_img_b.html": [ [ {} ] - ], + ], "css/deferred-paint-ref.html": [ [ {} ] - ], + ], "css/direction_style_caching_ref.html": [ [ {} ] - ], + ], "css/dirty_viewport_inner.html": [ [ {} ] - ], + ], "css/dirty_viewport_ref.html": [ [ {} ] - ], + ], "css/display_table_cell_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/ellipsis_font_panic-ref.html": [ [ {} ] - ], + ], "css/empty_cells_ref.html": [ [ {} ] - ], + ], "css/empty_pseudo_selector.html": [ [ {} ] - ], + ], "css/empty_pseudo_selector_ref.html": [ [ {} ] - ], + ], "css/external_media_query_ref.html": [ [ {} ] - ], + ], "css/filter_inline_ref.html": [ [ {} ] - ], + ], "css/filter_opacity_ref.html": [ [ {} ] - ], + ], "css/filter_sepia_ref.html": [ [ {} ] - ], + ], "css/first_child_pseudo_b.html": [ [ {} ] - ], + ], "css/first_of_type_pseudo_b.html": [ [ {} ] - ], + ], "css/fixed_percent_ref.html": [ [ {} ] - ], + ], "css/fixed_position_css_clip_ref.html": [ [ {} ] - ], + ], "css/fixed_width_overrides_child_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/flex-zero_lines_ref.html": [ [ {} ] - ], + ], "css/flex_column_direction_ref.html": [ [ {} ] - ], + ], "css/flex_nochild-ref.html": [ [ {} ] - ], + ], "css/flex_root_percent_size_ref.html": [ [ {} ] - ], + ], "css/flex_row_direction_ref.html": [ [ {} ] - ], + ], "css/float_clearance_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/float_clearance_ref.html": [ [ {} ] - ], + ], "css/float_cleared_with_just_height_ref.html": [ [ {} ] - ], + ], "css/float_intrinsic_height_ref.html": [ [ {} ] - ], + ], "css/float_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/float_overflow_area_ref.html": [ [ {} ] - ], + ], "css/float_positioned_pseudo_stacking_context_ref.html": [ [ {} ] - ], + ], "css/float_right_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/float_speculation_negative_inline_margins_ref.html": [ [ {} ] - ], + ], "css/float_table_ref.html": [ [ {} ] - ], + ], "css/float_under_top_margin_ref.html": [ [ {} ] - ], + ], "css/floated_generated_content_b.html": [ [ {} ] - ], + ], "css/floated_list_item_ref.html": [ [ {} ] - ], + ], "css/floated_negative_margins_ref.html": [ [ {} ] - ], + ], "css/floated_table_with_margin_ref.html": [ [ {} ] - ], + ], "css/floats_inline_margins_ref.html": [ [ {} ] - ], + ], "css/floats_margin_collapse_ref.html": [ [ {} ] - ], + ], "css/floats_margin_collapse_with_clearance_ref.html": [ [ {} ] - ], + ], "css/floats_percentage_width_ref.html": [ [ {} ] - ], + ], "css/focus_selector_ref.html": [ [ {} ] - ], + ], "css/font_advance_ref.html": [ [ {} ] - ], + ], "css/font_color_attribute_change_ref.html": [ [ {} ] - ], + ], "css/font_color_attribute_ref.html": [ [ {} ] - ], + ], "css/font_face_attribute_ref.html": [ [ {} ] - ], + ], "css/font_fallback_failed_ref.html": [ [ {} ] - ], + ], "css/font_size_ref.html": [ [ {} ] - ], + ], "css/font_style_ref.html": [ [ {} ] - ], + ], "css/fonts/octicons/LICENSE.txt": [ [ {} ] - ], + ], "css/fonts/octicons/octicons.ttf": [ [ {} ] - ], + ], "css/fonts/takao-p-gothic/COPYING.html": [ [ {} ] - ], + ], "css/fonts/takao-p-gothic/TakaoPGothic.ttf": [ [ {} ] - ], + ], "css/green.png": [ [ {} ] - ], + ], "css/height_compute.html": [ [ {} ] - ], + ], "css/hide_after_create_ref.html": [ [ {} ] - ], + ], "css/iframe/bg_color_ref.html": [ [ {} ] - ], + ], "css/iframe/frameborder_ref.html": [ [ {} ] - ], + ], "css/iframe/hide_after_load_inner_frame.html": [ [ {} ] - ], + ], "css/iframe/hide_after_load_ref.html": [ [ {} ] - ], + ], "css/iframe/hide_and_show_ref.html": [ [ {} ] - ], + ], "css/iframe/hide_layers_ref.html": [ [ {} ] - ], + ], "css/iframe/multiple_external_child.html": [ [ {} ] - ], + ], "css/iframe/multiple_external_ref.html": [ [ {} ] - ], + ], "css/iframe/navigation_ref.html": [ [ {} ] - ], + ], "css/iframe/overflow_ref.html": [ [ {} ] - ], + ], "css/iframe/positioning_margin_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_default_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_height_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_max_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_min_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_width_height_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_width_percentage_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_inline_width_ref.html": [ [ {} ] - ], + ], "css/iframe/simple_ref.html": [ [ {} ] - ], + ], "css/iframe/size_attributes_ref.html": [ [ {} ] - ], + ], "css/iframe/size_attributes_vertical_writing_mode_ref.html": [ [ {} ] - ], + ], "css/iframe/stacking_context_position_ref.html": [ [ {} ] - ], + ], "css/iframe/stacking_context_ref.html": [ [ {} ] - ], + ], "css/iframe_for_media_queries.html": [ [ {} ] - ], + ], "css/image_percentage_dimen_ref.html": [ [ {} ] - ], + ], "css/image_percentage_height_ref.html": [ [ {} ] - ], + ], "css/image_rendering_pixelated_ref.html": [ [ {} ] - ], + ], "css/img_block_display_ref.html": [ [ {} ] - ], + ], "css/img_block_maxwidth_ref.html": [ [ {} ] - ], + ], "css/img_dynamic_remove_ref.html": [ [ {} ] - ], + ], "css/img_padding_b.html": [ [ {} ] - ], + ], "css/img_simple_ref.html": [ [ {} ] - ], + ], "css/img_size_b.html": [ [ {} ] - ], + ], "css/img_width_attribute_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/img_width_style_intrinsic_width_ref.html": [ [ {} ] - ], + ], "css/incremental_float_ref.html": [ [ {} ] - ], + ], "css/incremental_inline_layout_ref.html": [ [ {} ] - ], + ], "css/incremental_letter_spacing_ref.html": [ [ {} ] - ], + ], "css/incremental_position_ref.html": [ [ {} ] - ], + ], "css/incremental_text_color_ref.html": [ [ {} ] - ], + ], "css/incremental_trailing_whitespace_ref.html": [ [ {} ] - ], + ], "css/incremental_visibility_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_hypothetical_baseline_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_hypothetical_clip_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_hypothetical_line_metrics_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_hypothetical_margin_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_hypothetical_metrics_ref.html": [ [ {} ] - ], + ], "css/inline_absolute_out_of_flow_ref.html": [ [ {} ] - ], + ], "css/inline_background_ref.html": [ [ {} ] - ], + ], "css/inline_block_absolute_hypothetical_ref.html": [ [ {} ] - ], + ], "css/inline_block_baseline_ref.html": [ [ {} ] - ], + ], "css/inline_block_block_direction_margins_ref.html": [ [ {} ] - ], + ], "css/inline_block_border_intrinsic_size_ref.html": [ [ {} ] - ], + ], "css/inline_block_border_ref.html": [ [ {} ] - ], + ], "css/inline_block_centering_ref.html": [ [ {} ] - ], + ], "css/inline_block_explicit_height_ref.html": [ [ {} ] - ], + ], "css/inline_block_height_with_out_of_flow_child_ref.html": [ [ {} ] - ], + ], "css/inline_block_img_ref.html": [ [ {} ] - ], + ], "css/inline_block_margin_auto_ref.html": [ [ {} ] - ], + ], "css/inline_block_margin_auto_zero_ref.html": [ [ {} ] - ], + ], "css/inline_block_margin_ref.html": [ [ {} ] - ], + ], "css/inline_block_min_width_ref.html": [ [ {} ] - ], + ], "css/inline_block_nested_margin_ref.html": [ [ {} ] - ], + ], "css/inline_block_opacity_change_ref.html": [ [ {} ] - ], + ], "css/inline_block_overflow_hidden_ref.html": [ [ {} ] - ], + ], "css/inline_block_parent_padding_ref.html": [ [ {} ] - ], + ], "css/inline_block_parent_width_ref.html": [ [ {} ] - ], + ], "css/inline_block_percentage_height_ref.html": [ [ {} ] - ], + ], "css/inline_block_percentage_margin_ref.html": [ [ {} ] - ], + ], "css/inline_block_stacking_context_ref.html": [ [ {} ] - ], + ], "css/inline_block_with_margin_ref.html": [ [ {} ] - ], + ], "css/inline_border_baseline_ref.html": [ [ {} ] - ], + ], "css/inline_element_border_ref.html": [ [ {} ] - ], + ], "css/inline_element_padding_margin_ref.html": [ [ {} ] - ], + ], "css/inline_font_size_zero_ref.html": [ [ {} ] - ], + ], "css/inline_hypothetical_box_ref.html": [ [ {} ] - ], + ], "css/inline_margin_multiple_fragments_ref.html": [ [ {} ] - ], + ], "css/inline_margin_nbsp_ref.html": [ [ {} ] - ], + ], "css/inline_margins_intrinsic_size_ref.html": [ [ {} ] - ], + ], "css/inline_margins_ref.html": [ [ {} ] - ], + ], "css/inline_padding_b.html": [ [ {} ] - ], + ], "css/inline_stacking_context_ref.html": [ [ {} ] - ], + ], "css/inline_text_align_b.html": [ [ {} ] - ], + ], "css/inline_whitespace_ref.html": [ [ {} ] - ], + ], "css/input_alignment_ref.html": [ [ {} ] - ], + ], "css/input_button_margins_ref.html": [ [ {} ] - ], + ], "css/input_button_size_ref.html": [ [ {} ] - ], + ], "css/input_empty_equiv_ref.html": [ [ {} ] - ], + ], "css/input_height_ref.html": [ [ {} ] - ], + ], "css/input_insertion_point_empty_ref.html": [ [ {} ] - ], + ], "css/input_line_height_ref.html": [ [ {} ] - ], + ], "css/input_placeholder_ref.html": [ [ {} ] - ], + ], "css/input_selection_incremental_ref.html": [ [ {} ] - ], + ], "css/input_selection_ref.html": [ [ {} ] - ], + ], "css/input_whitespace_ref.html": [ [ {} ] - ], + ], "css/inset.png": [ [ {} ] - ], + ], "css/inset_ref.html": [ [ {} ] - ], + ], "css/intrinsic_border_box_ref.html": [ [ {} ] - ], + ], "css/issue-1324-ref.html": [ [ {} ] - ], + ], "css/jpeg_normal.jpg": [ [ {} ] - ], + ], "css/jpeg_progressive.jpg": [ [ {} ] - ], + ], "css/jpeg_ref.html": [ [ {} ] - ], + ], "css/jumpiness_ref.html": [ [ {} ] - ], + ], "css/last_child_pseudo_b.html": [ [ {} ] - ], + ], "css/last_of_type_pseudo_b.html": [ [ {} ] - ], + ], "css/layerization_layer_size_ref.html": [ [ {} ] - ], + ], "css/layerization_z_order_ref.html": [ [ {} ] - ], + ], "css/legacy_input_size_attribute_override_ref.html": [ [ {} ] - ], + ], "css/legacy_table_border_attribute_ref.html": [ [ {} ] - ], + ], "css/legacy_td_bgcolor_attribute_ref.html": [ [ {} ] - ], + ], "css/legacy_td_width_attribute_ref.html": [ [ {} ] - ], + ], "css/letter_spacing_ref.html": [ [ {} ] - ], + ], "css/li_absolute_containing_block_ref.html": [ [ {} ] - ], + ], "css/line.png": [ [ {} ] - ], + ], "css/line_break_nowrap_ref.html": [ [ {} ] - ], + ], "css/line_breaking_whitespace_collapse_ref.html": [ [ {} ] - ], + ], "css/line_height_float_placement_ref.html": [ [ {} ] - ], + ], "css/line_height_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_corners_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_lengths_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_non_square_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_parsing_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_reverse_ref.html": [ [ {} ] - ], + ], "css/linear_gradients_smoke_ref.html": [ [ {} ] - ], + ], "css/linebreak_inline_span_b.html": [ [ {} ] - ], + ], "css/linebreak_simple_b.html": [ [ {} ] - ], + ], "css/link_style_dynamic_addition_ref.html": [ [ {} ] - ], + ], "css/link_style_order_ref.html": [ [ {} ] - ], + ], "css/list_item_marker_around_float_ref.html": [ [ {} ] - ], + ], "css/list_item_overflow_ref.html": [ [ {} ] - ], + ], "css/list_style_fixed_inside_ref.html": [ [ {} ] - ], + ], "css/list_style_image_sizing_ref.html": [ [ {} ] - ], + ], "css/list_style_position_ref.html": [ [ {} ] - ], + ], "css/list_style_type_ref.html": [ [ {} ] - ], + ], "css/many_brs_ref.html": [ [ {} ] - ], + ], "css/margin_b.html": [ [ {} ] - ], + ], "css/margin_padding_inline_block_ref.html": [ [ {} ] - ], + ], "css/margins_inside_floats_ref.html": [ [ {} ] - ], + ], "css/marker_block_direction_placement_ref.html": [ [ {} ] - ], + ], "css/max_inline_block_size_ref.html": [ [ {} ] - ], + ], "css/max_width_float_simple_b.html": [ [ {} ] - ], + ], "css/max_width_simple_b.html": [ [ {} ] - ], + ], "css/meta_viewport_resize_iframe.html": [ [ {} ] - ], + ], "css/min_max_height_b.html": [ [ {} ] - ], + ], "css/min_width_float_simple_b.html": [ [ {} ] - ], + ], "css/min_width_percent_root_b.html": [ [ {} ] - ], + ], "css/min_width_simple_b.html": [ [ {} ] - ], + ], "css/minimum_line_height_b.html": [ [ {} ] - ], + ], "css/mix_blend_mode_ref.html": [ [ {} ] - ], + ], "css/multiple_backgrounds_ref.html": [ [ {} ] - ], + ], "css/multiple_css_class_b.html": [ [ {} ] - ], + ], "css/negation-attr-dependence-ref.html": [ [ {} ] - ], + ], "css/negative-calc-cv-ref.html": [ [ {} ] - ], + ], "css/negative_margin_uncle_b.html": [ [ {} ] - ], + ], "css/negative_margins_b.html": [ [ {} ] - ], + ], "css/no-image-ref.html": [ [ {} ] - ], + ], "css/no_image_background_ref.html": [ [ {} ] - ], + ], "css/non-inline-block-resets-underline-property-ref.html": [ [ {} ] - ], + ], "css/normalize-rotation-ref.html": [ [ {} ] - ], + ], "css/noscript_ref.html": [ [ {} ] - ], + ], "css/noteq_500x300_white.html": [ [ {} ] - ], + ], "css/noteq_attr_exists_selector.html": [ [ {} ] - ], + ], "css/nth_child_pseudo_b.html": [ [ {} ] - ], + ], "css/nth_last_child_pseudo_b.html": [ [ {} ] - ], + ], "css/nth_last_of_type_pseudo_b.html": [ [ {} ] - ], + ], "css/nth_of_type_pseudo_b.html": [ [ {} ] - ], + ], "css/object_element_b.html": [ [ {} ] - ], + ], "css/octicons_ref.html": [ [ {} ] - ], + ], "css/ol_japanese_iroha_ref.html": [ [ {} ] - ], + ], "css/ol_simple_ref.html": [ [ {} ] - ], + ], "css/only_child_pseudo_b.html": [ [ {} ] - ], + ], "css/only_of_type_pseudo_b.html": [ [ {} ] - ], + ], "css/opacity_simple_ref.html": [ [ {} ] - ], + ], "css/opacity_stacking_context_ref.html": [ [ {} ] - ], + ], "css/outline_offset_ref.html": [ [ {} ] - ], + ], "css/outlines_simple_ref.html": [ [ {} ] - ], + ], "css/outlines_wrap_ref.html": [ [ {} ] - ], + ], "css/outset.png": [ [ {} ] - ], + ], "css/outset_ref.html": [ [ {} ] - ], + ], "css/overconstrained_block_ref.html": [ [ {} ] - ], + ], "css/overflow_auto_stacking_order_ref.html": [ [ {} ] - ], + ], "css/overflow_border_radius_ref.html": [ [ {} ] - ], + ], "css/overflow_clipping_ref.html": [ [ {} ] - ], + ], "css/overflow_hidden_clip_ref.html": [ [ {} ] - ], + ], "css/overflow_position_abs_inline_block_ref.html": [ [ {} ] - ], + ], "css/overflow_position_abs_inside_normal_b.html": [ [ {} ] - ], + ], "css/overflow_position_abs_simple_b.html": [ [ {} ] - ], + ], "css/overflow_position_rel_inline_block_ref.html": [ [ {} ] - ], + ], "css/overflow_simple_b.html": [ [ {} ] - ], + ], "css/overflow_transformed_sc_ref.html": [ [ {} ] - ], + ], "css/overflow_transformed_sc_rotate_ref.html": [ [ {} ] - ], + ], "css/overflow_wrap_ref.html": [ [ {} ] - ], + ], "css/overflow_xy_ref.html": [ [ {} ] - ], + ], "css/per_glyph_font_fallback_ref.html": [ [ {} ] - ], + ], "css/percent_height_ref.html": [ [ {} ] - ], + ], "css/percentage_height_float_ref.html": [ [ {} ] - ], + ], "css/percentage_height_root_ref.html": [ [ {} ] - ], + ], "css/percentage_width_inline_block_ref.html": [ [ {} ] - ], + ], "css/perspective_zero_ref.html": [ [ {} ] - ], + ], "css/pixel_snapping_border_ref.html": [ [ {} ] - ], + ], "css/pixel_snapping_glyphs_ref.html": [ [ {} ] - ], + ], "css/pixel_snapping_position_ref.html": [ [ {} ] - ], + ], "css/png_rgba_colorspace_a.png": [ [ {} ] - ], + ], "css/png_rgba_colorspace_b.html": [ [ {} ] - ], + ], "css/position_abs_cb_with_non_cb_kid_b.html": [ [ {} ] - ], + ], "css/position_abs_height_width_b.html": [ [ {} ] - ], + ], "css/position_abs_left_b.html": [ [ {} ] - ], + ], "css/position_abs_margin_top_percentage_b.html": [ [ {} ] - ], + ], "css/position_abs_nested_b.html": [ [ {} ] - ], + ], "css/position_abs_pseudo_b.html": [ [ {} ] - ], + ], "css/position_abs_replaced_simple_b.html": [ [ {} ] - ], + ], "css/position_abs_static_y_b.html": [ [ {} ] - ], + ], "css/position_abs_width_percentage_b.html": [ [ {} ] - ], + ], "css/position_fixed_b.html": [ [ {} ] - ], + ], "css/position_fixed_background_color_b.html": [ [ {} ] - ], + ], "css/position_fixed_overflow_b.html": [ [ {} ] - ], + ], "css/position_fixed_simple_b.html": [ [ {} ] - ], + ], "css/position_fixed_static_y_b.html": [ [ {} ] - ], + ], "css/position_fixed_tile_edge_ref.html": [ [ {} ] - ], + ], "css/position_relative_b.html": [ [ {} ] - ], + ], "css/position_relative_inline_block_ref.html": [ [ {} ] - ], + ], "css/position_relative_painting_order_ref.html": [ [ {} ] - ], + ], "css/position_relative_stacking_context_contents_ref.html": [ [ {} ] - ], + ], "css/position_relative_stacking_context_ref.html": [ [ {} ] - ], + ], "css/position_relative_top_percentage_b.html": [ [ {} ] - ], + ], "css/position_relative_vertical_percentage_overflow_ref.html": [ [ {} ] - ], + ], "css/pre_ignorable_whitespace_ref.html": [ [ {} ] - ], + ], "css/pre_with_tab_ref.html": [ [ {} ] - ], + ], "css/pseudo_content_with_layers_ref.html": [ [ {} ] - ], + ], "css/pseudo_element_b.html": [ [ {} ] - ], + ], "css/pseudo_element_restyle_no_rules_ref.html": [ [ {} ] - ], + ], "css/pseudo_element_spacing_ref.html": [ [ {} ] - ], + ], "css/pseudo_inherit_ref.html": [ [ {} ] - ], + ], "css/quotes_none_ref.html": [ [ {} ] - ], + ], "css/quotes_simple_ref.html": [ [ {} ] - ], + ], "css/relative_position_clip_ref.html": [ [ {} ] - ], + ], "css/relative_position_vertical_percentage_ref.html": [ [ {} ] - ], + ], "css/removeproperty_ref.html": [ [ {} ] - ], + ], "css/reset.css": [ [ {} ] - ], + ], "css/restyle-nth-child-ref.html": [ [ {} ] - ], + ], "css/restyle_hints_attr.css": [ [ {} ] - ], + ], "css/restyle_hints_attr_ref.html": [ [ {} ] - ], + ], "css/restyle_hints_state.css": [ [ {} ] - ], + ], "css/restyle_hints_state_ref.html": [ [ {} ] - ], + ], "css/root_display_ref.html": [ [ {} ] - ], + ], "css/root_height_b.html": [ [ {} ] - ], + ], "css/root_margin_collapse_b.html": [ [ {} ] - ], + ], "css/root_margins_ref.html": [ [ {} ] - ], + ], "css/root_pseudo_b.html": [ [ {} ] - ], + ], "css/rotate_anim_ref.html": [ [ {} ] - ], + ], "css/rtl_body_ref.html": [ [ {} ] - ], + ], "css/rtl_float_ref.html": [ [ {} ] - ], + ], "css/rtl_margin_ref.html": [ [ {} ] - ], + ], "css/rtl_simple_ref.html": [ [ {} ] - ], + ], "css/rtl_table_ref.html": [ [ {} ] - ], + ], "css/rust-0.png": [ [ {} ] - ], + ], "css/rust-logo-256x256.png": [ [ {} ] - ], + ], "css/rust_logo.png": [ [ {} ] - ], + ], "css/servo_center_ref.html": [ [ {} ] - ], + ], "css/setattribute_id_restyle_b.html": [ [ {} ] - ], + ], "css/simple_inline_absolute_containing_block_ref.html": [ [ {} ] - ], + ], "css/smiling.png": [ [ {} ] - ], + ], "css/stacked_layers_ref.html": [ [ {} ] - ], + ], "css/stacking_context_overflow_ref.html": [ [ {} ] - ], + ], "css/stacking_context_overflow_relative_outline_ref.html": [ [ {} ] - ], + ], "css/stacking_context_rtl-ref.html": [ [ {} ] - ], + ], "css/stacking_order_ref.html": [ [ {} ] - ], + ], "css/style_is_in_doc_ref.html": [ [ {} ] - ], + ], "css/subdirectory/background_image.css": [ [ {} ] - ], + ], "css/submit_focus_b.html": [ [ {} ] - ], + ], "css/svg_children_ref.html": [ [ {} ] - ], + ], "css/swatch-lime.png": [ [ {} ] - ], + ], "css/swatch-orange.png": [ [ {} ] - ], + ], "css/table_auto_width_ref.html": [ [ {} ] - ], + ], "css/table_caption_bottom_ref.html": [ [ {} ] - ], + ], "css/table_caption_top_ref.html": [ [ {} ] - ], + ], "css/table_cell_float_ref.html": [ [ {} ] - ], + ], "css/table_center_ref.html": [ [ {} ] - ], + ], "css/table_colspan_fixed_ref.html": [ [ {} ] - ], + ], "css/table_colspan_simple_ref.html": [ [ {} ] - ], + ], "css/table_colspan_spacing_ref.html": [ [ {} ] - ], + ], "css/table_containing_block_ref.html": [ [ {} ] - ], + ], "css/table_expansion_to_fit_ref.html": [ [ {} ] - ], + ], "css/table_float_translation_ref.html": [ [ {} ] - ], + ], "css/table_intrinsic_style_specified_width_ref.html": [ [ {} ] - ], + ], "css/table_margin_auto_ref.html": [ [ {} ] - ], + ], "css/table_margin_ref.html": [ [ {} ] - ], + ], "css/table_overflow_ref.html": [ [ {} ] - ], + ], "css/table_padding_ref.html": [ [ {} ] - ], + ], "css/table_percentage_capping_ref.html": [ [ {} ] - ], + ], "css/table_percentage_width_ref.html": [ [ {} ] - ], + ], "css/table_preferred_width_ref.html": [ [ {} ] - ], + ], "css/table_root_percent_width_ref.html": [ [ {} ] - ], + ], "css/table_row_direction_ref.html": [ [ {} ] - ], + ], "css/table_rowspan_notequal_ref.html": [ [ {} ] - ], + ], "css/table_rowspan_rowgroup_ref.html": [ [ {} ] - ], + ], "css/table_rowspan_simple_ref.html": [ [ {} ] - ], + ], "css/table_specified_width_ref.html": [ [ {} ] - ], + ], "css/table_valign_presentational_hint_ref.html": [ [ {} ] - ], + ], "css/table_vertical_align_absolute_ref.html": [ [ {} ] - ], + ], "css/table_vertical_align_margin_padding_ref.html": [ [ {} ] - ], + ], "css/table_width_attribute_ref.html": [ [ {} ] - ], + ], "css/table_with_position_sticky_ref.html": [ [ {} ] - ], + ], "css/test.jpeg": [ [ {} ] - ], + ], "css/text_align_complex_ref.html": [ [ {} ] - ], + ], "css/text_align_justify_ref.html": [ [ {} ] - ], + ], "css/text_align_rtl_ref.html": [ [ {} ] - ], + ], "css/text_align_start_end_ref.html": [ [ {} ] - ], + ], "css/text_damage_ref.html": [ [ {} ] - ], + ], "css/text_decoration_cached_ref.html": [ [ {} ] - ], + ], "css/text_decoration_propagation_b.html": [ [ {} ] - ], + ], "css/text_decoration_smoke_ref.html": [ [ {} ] - ], + ], "css/text_decoration_underline_subpx_ref.html": [ [ {} ] - ], + ], "css/text_indent_ref.html": [ [ {} ] - ], + ], "css/text_justify_none_ref.html": [ [ {} ] - ], + ], "css/text_node_opacity_ref.html": [ [ {} ] - ], + ], "css/text_overflow_basic_ref.html": [ [ {} ] - ], + ], "css/text_overflow_ref.html": [ [ {} ] - ], + ], "css/text_overflow_reflow_ref.html": [ [ {} ] - ], + ], "css/text_shadow_blur_ref.html": [ [ {} ] - ], + ], "css/text_shadow_decorations_ref.html": [ [ {} ] - ], + ], "css/text_shadow_multiple_shadows_ref.html": [ [ {} ] - ], + ], "css/text_shadow_simple_ref.html": [ [ {} ] - ], + ], "css/text_transform_capitalize_ref.html": [ [ {} ] - ], + ], "css/text_transform_lowercase_ref.html": [ [ {} ] - ], + ], "css/text_transform_none_ref.html": [ [ {} ] - ], + ], "css/text_transform_uppercase_ref.html": [ [ {} ] - ], + ], "css/textarea_space_calculation-ref.html": [ [ {} ] - ], + ], "css/transform_3d_from_outside_viewport_ref.html": [ [ {} ] - ], + ], "css/transform_3d_ref.html": [ [ {} ] - ], + ], "css/transform_optimization_ref.html": [ [ {} ] - ], + ], "css/transform_scroll_layer_ref.html": [ [ {} ] - ], + ], "css/transform_simple_ref.html": [ [ {} ] - ], + ], "css/transform_skew_ref.html": [ [ {} ] - ], + ], "css/transform_stacking_context_ref.html": [ [ {} ] - ], + ], "css/transition_calc_implicit_ref.html": [ [ {} ] - ], + ], "css/transition_calc_ref.html": [ [ {} ] - ], + ], "css/translate_clip_nested_ref.html": [ [ {} ] - ], + ], "css/translate_clip_ref.html": [ [ {} ] - ], + ], "css/truncated_text_fragment_stacking_context_ref.html": [ [ {} ] - ], + ], "css/upper_id_attr_ref.html": [ [ {} ] - ], + ], "css/vertical-lr-blocks_ref.html": [ [ {} ] - ], + ], "css/vertical_align_bottom_ref.html": [ [ {} ] - ], + ], "css/vertical_align_inline_block_ref.html": [ [ {} ] - ], + ], "css/vertical_align_inside_table_ref.html": [ [ {} ] - ], + ], "css/vertical_align_middle_ref.html": [ [ {} ] - ], + ], "css/vertical_align_sub_ref.html": [ [ {} ] - ], + ], "css/vertical_align_super_nested_ref.html": [ [ {} ] - ], + ], "css/vertical_align_super_ref.html": [ [ {} ] - ], + ], "css/vertical_align_text_bottom_ref.html": [ [ {} ] - ], + ], "css/vertical_align_text_top_ref.html": [ [ {} ] - ], + ], "css/vertical_align_top_bottom_ref.html": [ [ {} ] - ], + ], "css/vertical_align_top_ref.html": [ [ {} ] - ], + ], "css/vertical_align_top_span_ref.html": [ [ {} ] - ], + ], "css/viewport_ignore_desktop.html.ini": [ [ {} ] - ], + ], "css/viewport_ignore_desktop_ref.html": [ [ {} ] - ], + ], "css/viewport_percentage_vmin_vmax_ref.html": [ [ {} ] - ], + ], "css/viewport_percentage_vw_vh_ref.html": [ [ {} ] - ], + ], "css/viewport_rule_ref.html": [ [ {} ] - ], + ], "css/visibility_hidden_ref.html": [ [ {} ] - ], + ], "css/white-space-mixed-002-ref.htm": [ [ {} ] - ], + ], "css/white-space-pre-line-ref.htm": [ [ {} ] - ], + ], "css/white-space-pre-wrap-ref.htm": [ [ {} ] - ], + ], "css/white_space_intrinsic_sizes_ref.html": [ [ {} ] - ], + ], "css/whitespace_no_affect_border_ref.html": [ [ {} ] - ], + ], "css/whitespace_nowrap_line_breaking_ref.html": [ [ {} ] - ], + ], "css/whitespace_nowrap_ref.html": [ [ {} ] - ], + ], "css/whitespace_pre_ref.html": [ [ {} ] - ], + ], "css/width_nonreplaced_block_simple_b.html": [ [ {} ] - ], + ], "css/word-break-keep-all-ref-005.htm": [ [ {} ] - ], + ], "css/word-break-keep-all-ref-006.htm": [ [ {} ] - ], + ], "css/word-break-keep-all-ref-007.htm": [ [ {} ] - ], + ], "css/word-break-keep-all-ref-008.htm": [ [ {} ] - ], + ], "css/word-spacing-ref.html": [ [ {} ] - ], + ], "css/word_break_ref.html": [ [ {} ] - ], + ], "lint.whitelist": [ [ {} ] - ], + ], "mozilla/2x2.png": [ [ {} ] - ], + ], "mozilla/FileAPI/blob_url_upload_ref.html": [ [ {} ] - ], + ], "mozilla/FileAPI/file-upload-frame.html": [ [ {} ] - ], + ], "mozilla/FileAPI/resource/file-submission.py": [ [ {} ] - ], + ], "mozilla/FileAPI/resource/upload.txt": [ [ {} ] - ], + ], "mozilla/adopt-panic.css": [ [ {} ] - ], + ], "mozilla/blank.html": [ [ {} ] - ], + ], "mozilla/canvas/set_dimensions_ref.html": [ [ {} ] - ], + ], "mozilla/click_prevent.html": [ [ {} ] - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage-child1.html": [ [ {} ] - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage-child2.html": [ [ {} ] - ], + ], "mozilla/details_ui_closed_ref.html": [ [ {} ] - ], + ], "mozilla/details_ui_opened_ref.html": [ [ {} ] - ], + ], "mozilla/duplicated_scroll_ids_ref.html": [ [ {} ] - ], + ], "mozilla/form_submit_about_frame.html": [ [ {} ] - ], + ], "mozilla/globals/empty.html": [ [ {} ] - ], + ], "mozilla/globals/incumbent.html": [ [ {} ] - ], + ], "mozilla/htmllabel-form-activation.html": [ [ {} ] - ], + ], "mozilla/iframe/resize_after_load_ref.html": [ [ {} ] - ], + ], "mozilla/iframe/resources/green_inner_frame.html": [ [ {} ] - ], + ], "mozilla/iframe_child1.html": [ [ {} ] - ], + ], "mozilla/iframe_parent1.html": [ [ {} ] - ], + ], "mozilla/interfaces.js": [ [ {} ] - ], + ], "mozilla/nested_asap_script.js": [ [ {} ] - ], + ], "mozilla/poster.png": [ [ {} ] - ], + ], "mozilla/referrer-policy/OWNERS": [ [ {} ] - ], + ], "mozilla/referrer-policy/README.md": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/common.js": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/referrer-policy-test-case.js": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/sanity-checker.js": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/__init__.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/a-tag.html": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/a-tag.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/document.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/link.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/mozresource.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/subresource/stash.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/css.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/disclaimer.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/document.html.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/script.js.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/spec_json.js.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/test.debug.html.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/test.js.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/test.release.html.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/test_description.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/template/worker.js.template": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/__init__.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/clean.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/common_paths.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/generate.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/regenerate": [ [ {} ] - ], + ], "mozilla/referrer-policy/generic/tools/spec_validator.py": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/spec.src.json": [ [ {} ] - ], + ], "mozilla/referrer-policy/spec_json.js": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ [ {} ] - ], + ], "mozilla/remove_link_styles.css": [ [ {} ] - ], + ], "mozilla/remove_link_styles_ref.html": [ [ {} ] - ], + ], "mozilla/remove_style_styles_ref.html": [ [ {} ] - ], + ], "mozilla/reparse_style_elements_ref.html": [ [ {} ] - ], + ], "mozilla/request_animation_frame_reftest_wait_ref.html": [ [ {} ] - ], + ], "mozilla/resources/background-green.css": [ [ {} ] - ], + ], "mozilla/resources/background-red.css": [ [ {} ] - ], + ], "mozilla/resources/brotli.py": [ [ {} ] - ], + ], "mozilla/resources/external.js": [ [ {} ] - ], + ], "mozilla/resources/http-cache.js": [ [ {} ] - ], + ], "mozilla/resources/iframe_contentDocument_inner.html": [ [ {} ] - ], + ], "mozilla/resources/imports-background-green.css": [ [ {} ] - ], + ], "mozilla/resources/imports-background-red.css": [ [ {} ] - ], + ], "mozilla/resources/no_mime_type.py": [ [ {} ] - ], + ], "mozilla/resources/origin_helpers.js": [ [ {} ] - ], + ], "mozilla/resources/range.txt": [ [ {} ] - ], + ], "mozilla/resources/range_small.txt": [ [ {} ] - ], + ], "mozilla/resources/ssl.https.html": [ [ {} ] - ], + ], "mozilla/resources/worker_success.js": [ [ {} ] - ], + ], "mozilla/restyle-out-of-document-ref.html": [ [ {} ] - ], + ], "mozilla/scroll_root_ref.html": [ [ {} ] - ], + ], "mozilla/scrolling_div_background_borders_background.png": [ [ {} ] - ], + ], "mozilla/scrolling_div_background_borders_ref.html": [ [ {} ] - ], + ], "mozilla/service-workers/resources/sw.js": [ [ {} ] - ], + ], "mozilla/service-workers/sw.js": [ [ {} ] - ], + ], "mozilla/simple_scroll_to_fragment_ref.html": [ [ {} ] - ], + ], "mozilla/sslfail-ref.html": [ [ {} ] - ], + ], "mozilla/stylesheet-adopt-panic-ref.html": [ [ {} ] - ], + ], "mozilla/svg/svg_ref.html": [ [ {} ] - ], + ], "mozilla/table_valign_bottom_ref.html": [ [ {} ] - ], + ], "mozilla/table_valign_middle_ref.html": [ [ {} ] - ], + ], "mozilla/table_valign_uneven_height_ref.html": [ [ {} ] - ], + ], "mozilla/test.jpg": [ [ {} ] - ], + ], "mozilla/test.png": [ [ {} ] - ], + ], "mozilla/test.txt": [ [ {} ] - ], + ], "mozilla/textarea_placeholder_ref.html": [ [ {} ] - ], + ], "mozilla/timer_eventInvalidation_test.html": [ [ {} ] - ], + ], "mozilla/video_poster_frame_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/clearcolor_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/draw_arrays_simple_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/img/rust-logo-256x256.png": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_abv_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_canvas_no_context.html": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_canvas_no_context_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_canvas_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_mipmap_ref.html": [ [ {} ] - ], + ], "mozilla/webgl/tex_image_2d_simple_ref.html": [ [ {} ] - ], + ], "mozilla/worklets/syntax_error.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_alpha_throws.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_arguments_throws.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_empty_name.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_no_paint.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_not_constructor.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_paint_not_callable.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_properties_throws.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_ref.html": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_size.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_size_ref.html": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_timeout.js": [ [ {} ] - ], + ], "mozilla/worklets/test_paint_worklet_timeout_ref.html": [ [ {} ] - ], + ], "mozilla/worklets/test_worklet.js": [ [ {} ] - ], + ], "mozilla/worklets/throw_exception.js": [ [ {} ] ] - }, + }, "testharness": { "bluetooth/advertisingEvent/watchAdvertisements-succeeds.html": [ [ - "/_mozilla/bluetooth/advertisingEvent/watchAdvertisements-succeeds.html", + "/_mozilla/bluetooth/advertisingEvent/watchAdvertisements-succeeds.html", {} ] - ], + ], "bluetooth/connect/connection-succeeds.html": [ [ - "/_mozilla/bluetooth/connect/connection-succeeds.html", + "/_mozilla/bluetooth/connect/connection-succeeds.html", {} ] - ], + ], "bluetooth/connect/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/connect/device-goes-out-of-range.html", + "/_mozilla/bluetooth/connect/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/connect/get-same-gatt-server.html": [ [ - "/_mozilla/bluetooth/connect/get-same-gatt-server.html", + "/_mozilla/bluetooth/connect/get-same-gatt-server.html", {} ] - ], + ], "bluetooth/disconnect/connect-disconnect-twice.html": [ [ - "/_mozilla/bluetooth/disconnect/connect-disconnect-twice.html", + "/_mozilla/bluetooth/disconnect/connect-disconnect-twice.html", {} ] - ], + ], "bluetooth/disconnect/disconnect-once.html": [ [ - "/_mozilla/bluetooth/disconnect/disconnect-once.html", + "/_mozilla/bluetooth/disconnect/disconnect-once.html", {} ] - ], + ], "bluetooth/disconnect/disconnect-twice-in-a-row.html": [ [ - "/_mozilla/bluetooth/disconnect/disconnect-twice-in-a-row.html", + "/_mozilla/bluetooth/disconnect/disconnect-twice-in-a-row.html", {} ] - ], + ], "bluetooth/disconnect/event-is-fired.html": [ [ - "/_mozilla/bluetooth/disconnect/event-is-fired.html", + "/_mozilla/bluetooth/disconnect/event-is-fired.html", {} ] - ], + ], "bluetooth/getAvailability/adapter-not-present.html": [ [ - "/_mozilla/bluetooth/getAvailability/adapter-not-present.html", + "/_mozilla/bluetooth/getAvailability/adapter-not-present.html", {} ] - ], + ], "bluetooth/getAvailability/adapter-off.html": [ [ - "/_mozilla/bluetooth/getAvailability/adapter-off.html", + "/_mozilla/bluetooth/getAvailability/adapter-off.html", {} ] - ], + ], "bluetooth/getAvailability/adapter-on.html": [ [ - "/_mozilla/bluetooth/getAvailability/adapter-on.html", + "/_mozilla/bluetooth/getAvailability/adapter-on.html", {} ] - ], + ], "bluetooth/getCharacteristic/blocklisted-characteristic.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/blocklisted-characteristic.html", + "/_mozilla/bluetooth/getCharacteristic/blocklisted-characteristic.html", {} ] - ], + ], "bluetooth/getCharacteristic/characteristic-found.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/characteristic-found.html", + "/_mozilla/bluetooth/getCharacteristic/characteristic-found.html", {} ] - ], + ], "bluetooth/getCharacteristic/characteristic-not-found.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/characteristic-not-found.html", + "/_mozilla/bluetooth/getCharacteristic/characteristic-not-found.html", {} ] - ], + ], "bluetooth/getCharacteristic/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getCharacteristic/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getCharacteristic/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/disconnect-called-before.html", + "/_mozilla/bluetooth/getCharacteristic/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getCharacteristic/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/disconnect-called-during.html", + "/_mozilla/bluetooth/getCharacteristic/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getCharacteristic/disconnect-invalidates-object.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/disconnect-invalidates-object.html", + "/_mozilla/bluetooth/getCharacteristic/disconnect-invalidates-object.html", {} ] - ], + ], "bluetooth/getCharacteristic/get-different-characteristic-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/get-different-characteristic-after-reconnection.html", + "/_mozilla/bluetooth/getCharacteristic/get-different-characteristic-after-reconnection.html", {} ] - ], + ], "bluetooth/getCharacteristic/get-same-characteristic.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/get-same-characteristic.html", + "/_mozilla/bluetooth/getCharacteristic/get-same-characteristic.html", {} ] - ], + ], "bluetooth/getCharacteristic/invalid-characteristic-name.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/invalid-characteristic-name.html", + "/_mozilla/bluetooth/getCharacteristic/invalid-characteristic-name.html", {} ] - ], + ], "bluetooth/getCharacteristic/reconnect-during.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/reconnect-during.html", + "/_mozilla/bluetooth/getCharacteristic/reconnect-during.html", {} ] - ], + ], "bluetooth/getCharacteristic/service-is-removed.html": [ [ - "/_mozilla/bluetooth/getCharacteristic/service-is-removed.html", + "/_mozilla/bluetooth/getCharacteristic/service-is-removed.html", {} ] - ], + ], "bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/blocklisted-characteristics.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/blocklisted-characteristics.html", + "/_mozilla/bluetooth/getCharacteristics/blocklisted-characteristics.html", {} ] - ], + ], "bluetooth/getCharacteristics/characteristics-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/characteristics-found-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/characteristics-found-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/characteristics-found.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/characteristics-found.html", + "/_mozilla/bluetooth/getCharacteristics/characteristics-found.html", {} ] - ], + ], "bluetooth/getCharacteristics/characteristics-not-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/characteristics-not-found-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/characteristics-not-found-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/characteristics-not-found.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/characteristics-not-found.html", + "/_mozilla/bluetooth/getCharacteristics/characteristics-not-found.html", {} ] - ], + ], "bluetooth/getCharacteristics/correct-characteristics.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/correct-characteristics.html", + "/_mozilla/bluetooth/getCharacteristics/correct-characteristics.html", {} ] - ], + ], "bluetooth/getCharacteristics/device-goes-out-of-range-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/device-goes-out-of-range-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/device-goes-out-of-range-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getCharacteristics/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getCharacteristics/disconnect-called-before-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/disconnect-called-before-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/disconnect-called-before-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/disconnect-called-before.html", + "/_mozilla/bluetooth/getCharacteristics/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getCharacteristics/disconnect-called-during-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/disconnect-called-during-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/disconnect-called-during-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/disconnect-called-during.html", + "/_mozilla/bluetooth/getCharacteristics/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getCharacteristics/disconnect-invalidates-objects.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/disconnect-invalidates-objects.html", + "/_mozilla/bluetooth/getCharacteristics/disconnect-invalidates-objects.html", {} ] - ], + ], "bluetooth/getCharacteristics/get-different-characteristics-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/get-different-characteristics-after-reconnection.html", + "/_mozilla/bluetooth/getCharacteristics/get-different-characteristics-after-reconnection.html", {} ] - ], + ], "bluetooth/getCharacteristics/get-same-characteristics.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/get-same-characteristics.html", + "/_mozilla/bluetooth/getCharacteristics/get-same-characteristics.html", {} ] - ], + ], "bluetooth/getCharacteristics/invalid-characteristic-name.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/invalid-characteristic-name.html", + "/_mozilla/bluetooth/getCharacteristics/invalid-characteristic-name.html", {} ] - ], + ], "bluetooth/getCharacteristics/service-is-removed-with-uuid.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/service-is-removed-with-uuid.html", + "/_mozilla/bluetooth/getCharacteristics/service-is-removed-with-uuid.html", {} ] - ], + ], "bluetooth/getCharacteristics/service-is-removed.html": [ [ - "/_mozilla/bluetooth/getCharacteristics/service-is-removed.html", + "/_mozilla/bluetooth/getCharacteristics/service-is-removed.html", {} ] - ], + ], "bluetooth/getDescriptor/blocklisted-descriptor.html": [ [ - "/_mozilla/bluetooth/getDescriptor/blocklisted-descriptor.html", + "/_mozilla/bluetooth/getDescriptor/blocklisted-descriptor.html", {} ] - ], + ], "bluetooth/getDescriptor/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/getDescriptor/characteristic-is-removed.html", + "/_mozilla/bluetooth/getDescriptor/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/getDescriptor/descriptor-found.html": [ [ - "/_mozilla/bluetooth/getDescriptor/descriptor-found.html", + "/_mozilla/bluetooth/getDescriptor/descriptor-found.html", {} ] - ], + ], "bluetooth/getDescriptor/descriptor-not-found.html": [ [ - "/_mozilla/bluetooth/getDescriptor/descriptor-not-found.html", + "/_mozilla/bluetooth/getDescriptor/descriptor-not-found.html", {} ] - ], + ], "bluetooth/getDescriptor/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getDescriptor/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getDescriptor/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getDescriptor/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getDescriptor/disconnect-called-before.html", + "/_mozilla/bluetooth/getDescriptor/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getDescriptor/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getDescriptor/disconnect-called-during.html", + "/_mozilla/bluetooth/getDescriptor/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getDescriptor/disconnect-invalidates-object.html": [ [ - "/_mozilla/bluetooth/getDescriptor/disconnect-invalidates-object.html", + "/_mozilla/bluetooth/getDescriptor/disconnect-invalidates-object.html", {} ] - ], + ], "bluetooth/getDescriptor/get-different-descriptor-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getDescriptor/get-different-descriptor-after-reconnection.html", + "/_mozilla/bluetooth/getDescriptor/get-different-descriptor-after-reconnection.html", {} ] - ], + ], "bluetooth/getDescriptor/get-same-descriptor.html": [ [ - "/_mozilla/bluetooth/getDescriptor/get-same-descriptor.html", + "/_mozilla/bluetooth/getDescriptor/get-same-descriptor.html", {} ] - ], + ], "bluetooth/getDescriptor/invalid-descriptor-name.html": [ [ - "/_mozilla/bluetooth/getDescriptor/invalid-descriptor-name.html", + "/_mozilla/bluetooth/getDescriptor/invalid-descriptor-name.html", {} ] - ], + ], "bluetooth/getDescriptors/blocklisted-descriptors-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/blocklisted-descriptors-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/blocklisted-descriptors-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/blocklisted-descriptors.html": [ [ - "/_mozilla/bluetooth/getDescriptors/blocklisted-descriptors.html", + "/_mozilla/bluetooth/getDescriptors/blocklisted-descriptors.html", {} ] - ], + ], "bluetooth/getDescriptors/characteristic-is-removed-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/characteristic-is-removed-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/characteristic-is-removed-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/getDescriptors/characteristic-is-removed.html", + "/_mozilla/bluetooth/getDescriptors/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/getDescriptors/correct-descriptors.html": [ [ - "/_mozilla/bluetooth/getDescriptors/correct-descriptors.html", + "/_mozilla/bluetooth/getDescriptors/correct-descriptors.html", {} ] - ], + ], "bluetooth/getDescriptors/descriptors-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/descriptors-found-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/descriptors-found-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/descriptors-found.html": [ [ - "/_mozilla/bluetooth/getDescriptors/descriptors-found.html", + "/_mozilla/bluetooth/getDescriptors/descriptors-found.html", {} ] - ], + ], "bluetooth/getDescriptors/descriptors-not-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/descriptors-not-found-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/descriptors-not-found-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/descriptors-not-found.html": [ [ - "/_mozilla/bluetooth/getDescriptors/descriptors-not-found.html", + "/_mozilla/bluetooth/getDescriptors/descriptors-not-found.html", {} ] - ], + ], "bluetooth/getDescriptors/device-goes-out-of-range-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/device-goes-out-of-range-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/device-goes-out-of-range-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getDescriptors/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getDescriptors/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getDescriptors/disconnect-called-before-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/disconnect-called-before-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/disconnect-called-before-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getDescriptors/disconnect-called-before.html", + "/_mozilla/bluetooth/getDescriptors/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getDescriptors/disconnect-called-during-with-uuid.html": [ [ - "/_mozilla/bluetooth/getDescriptors/disconnect-called-during-with-uuid.html", + "/_mozilla/bluetooth/getDescriptors/disconnect-called-during-with-uuid.html", {} ] - ], + ], "bluetooth/getDescriptors/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getDescriptors/disconnect-called-during.html", + "/_mozilla/bluetooth/getDescriptors/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getDescriptors/disconnect-invalidates-objects.html": [ [ - "/_mozilla/bluetooth/getDescriptors/disconnect-invalidates-objects.html", + "/_mozilla/bluetooth/getDescriptors/disconnect-invalidates-objects.html", {} ] - ], + ], "bluetooth/getDescriptors/get-different-descriptors-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getDescriptors/get-different-descriptors-after-reconnection.html", + "/_mozilla/bluetooth/getDescriptors/get-different-descriptors-after-reconnection.html", {} ] - ], + ], "bluetooth/getDescriptors/get-same-descriptors.html": [ [ - "/_mozilla/bluetooth/getDescriptors/get-same-descriptors.html", + "/_mozilla/bluetooth/getDescriptors/get-same-descriptors.html", {} ] - ], + ], "bluetooth/getDescriptors/invalid-descriptor-name.html": [ [ - "/_mozilla/bluetooth/getDescriptors/invalid-descriptor-name.html", + "/_mozilla/bluetooth/getDescriptors/invalid-descriptor-name.html", {} ] - ], + ], "bluetooth/getPrimaryService/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getPrimaryService/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getPrimaryService/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/disconnect-called-before.html", + "/_mozilla/bluetooth/getPrimaryService/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getPrimaryService/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/disconnect-called-during.html", + "/_mozilla/bluetooth/getPrimaryService/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getPrimaryService/disconnect-invalidates-object.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/disconnect-invalidates-object.html", + "/_mozilla/bluetooth/getPrimaryService/disconnect-invalidates-object.html", {} ] - ], + ], "bluetooth/getPrimaryService/disconnected-device.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/disconnected-device.html", + "/_mozilla/bluetooth/getPrimaryService/disconnected-device.html", {} ] - ], + ], "bluetooth/getPrimaryService/get-different-service-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/get-different-service-after-reconnection.html", + "/_mozilla/bluetooth/getPrimaryService/get-different-service-after-reconnection.html", {} ] - ], + ], "bluetooth/getPrimaryService/get-same-service.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/get-same-service.html", + "/_mozilla/bluetooth/getPrimaryService/get-same-service.html", {} ] - ], + ], "bluetooth/getPrimaryService/invalid-service-name.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/invalid-service-name.html", + "/_mozilla/bluetooth/getPrimaryService/invalid-service-name.html", {} ] - ], + ], "bluetooth/getPrimaryService/no-permission-absent-service.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/no-permission-absent-service.html", + "/_mozilla/bluetooth/getPrimaryService/no-permission-absent-service.html", {} ] - ], + ], "bluetooth/getPrimaryService/no-permission-present-service.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/no-permission-present-service.html", + "/_mozilla/bluetooth/getPrimaryService/no-permission-present-service.html", {} ] - ], + ], "bluetooth/getPrimaryService/service-found.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/service-found.html", + "/_mozilla/bluetooth/getPrimaryService/service-found.html", {} ] - ], + ], "bluetooth/getPrimaryService/service-not-found.html": [ [ - "/_mozilla/bluetooth/getPrimaryService/service-not-found.html", + "/_mozilla/bluetooth/getPrimaryService/service-not-found.html", {} ] - ], + ], "bluetooth/getPrimaryServices/blocklisted-services-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/blocklisted-services-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/blocklisted-services-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/blocklisted-services.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/blocklisted-services.html", + "/_mozilla/bluetooth/getPrimaryServices/blocklisted-services.html", {} ] - ], + ], "bluetooth/getPrimaryServices/correct-services.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/correct-services.html", + "/_mozilla/bluetooth/getPrimaryServices/correct-services.html", {} ] - ], + ], "bluetooth/getPrimaryServices/device-goes-out-of-range-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/device-goes-out-of-range-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/device-goes-out-of-range-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/device-goes-out-of-range.html", + "/_mozilla/bluetooth/getPrimaryServices/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnect-called-before-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-before-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-before-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-before.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-before.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnect-called-during-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-during-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-during-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-during.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnect-called-during.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnect-invalidates-objects.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnect-invalidates-objects.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnect-invalidates-objects.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnected-device-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnected-device-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnected-device-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/disconnected-device.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/disconnected-device.html", + "/_mozilla/bluetooth/getPrimaryServices/disconnected-device.html", {} ] - ], + ], "bluetooth/getPrimaryServices/get-different-services-after-reconnection.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/get-different-services-after-reconnection.html", + "/_mozilla/bluetooth/getPrimaryServices/get-different-services-after-reconnection.html", {} ] - ], + ], "bluetooth/getPrimaryServices/get-same-service-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/get-same-service-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/get-same-service-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/get-same-service.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/get-same-service.html", + "/_mozilla/bluetooth/getPrimaryServices/get-same-service.html", {} ] - ], + ], "bluetooth/getPrimaryServices/invalid-service-name.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/invalid-service-name.html", + "/_mozilla/bluetooth/getPrimaryServices/invalid-service-name.html", {} ] - ], + ], "bluetooth/getPrimaryServices/no-permission-absent-service-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/no-permission-absent-service-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/no-permission-absent-service-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/no-permission-present-service-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/no-permission-present-service-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/no-permission-present-service-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/no-permission-present-service.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/no-permission-present-service.html", + "/_mozilla/bluetooth/getPrimaryServices/no-permission-present-service.html", {} ] - ], + ], "bluetooth/getPrimaryServices/services-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/services-found-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/services-found-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/services-found.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/services-found.html", + "/_mozilla/bluetooth/getPrimaryServices/services-found.html", {} ] - ], + ], "bluetooth/getPrimaryServices/services-not-found-with-uuid.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/services-not-found-with-uuid.html", + "/_mozilla/bluetooth/getPrimaryServices/services-not-found-with-uuid.html", {} ] - ], + ], "bluetooth/getPrimaryServices/services-not-found.html": [ [ - "/_mozilla/bluetooth/getPrimaryServices/services-not-found.html", + "/_mozilla/bluetooth/getPrimaryServices/services-not-found.html", {} ] - ], + ], "bluetooth/idl-BluetoothUUID.html": [ [ - "/_mozilla/bluetooth/idl-BluetoothUUID.html", + "/_mozilla/bluetooth/idl-BluetoothUUID.html", {} ] - ], + ], "bluetooth/interfaces.html": [ [ - "/_mozilla/bluetooth/interfaces.html", + "/_mozilla/bluetooth/interfaces.html", {} ] - ], + ], "bluetooth/readValue/characteristic/blocklisted-characteristic.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/blocklisted-characteristic.html", + "/_mozilla/bluetooth/readValue/characteristic/blocklisted-characteristic.html", {} ] - ], + ], "bluetooth/readValue/characteristic/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/characteristic-is-removed.html", + "/_mozilla/bluetooth/readValue/characteristic/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/readValue/characteristic/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/device-goes-out-of-range.html", + "/_mozilla/bluetooth/readValue/characteristic/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/readValue/characteristic/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/disconnect-called-before.html", + "/_mozilla/bluetooth/readValue/characteristic/disconnect-called-before.html", {} ] - ], + ], "bluetooth/readValue/characteristic/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/disconnect-called-during.html", + "/_mozilla/bluetooth/readValue/characteristic/disconnect-called-during.html", {} ] - ], + ], "bluetooth/readValue/characteristic/event-is-fired.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/event-is-fired.html", + "/_mozilla/bluetooth/readValue/characteristic/event-is-fired.html", {} ] - ], + ], "bluetooth/readValue/characteristic/read-succeeds.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/read-succeeds.html", + "/_mozilla/bluetooth/readValue/characteristic/read-succeeds.html", {} ] - ], + ], "bluetooth/readValue/characteristic/read-updates-value.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/read-updates-value.html", + "/_mozilla/bluetooth/readValue/characteristic/read-updates-value.html", {} ] - ], + ], "bluetooth/readValue/characteristic/service-is-removed.html": [ [ - "/_mozilla/bluetooth/readValue/characteristic/service-is-removed.html", + "/_mozilla/bluetooth/readValue/characteristic/service-is-removed.html", {} ] - ], + ], "bluetooth/readValue/descriptor/blocklisted-descriptor.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/blocklisted-descriptor.html", + "/_mozilla/bluetooth/readValue/descriptor/blocklisted-descriptor.html", {} ] - ], + ], "bluetooth/readValue/descriptor/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/characteristic-is-removed.html", + "/_mozilla/bluetooth/readValue/descriptor/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/readValue/descriptor/descriptor-is-removed.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/descriptor-is-removed.html", + "/_mozilla/bluetooth/readValue/descriptor/descriptor-is-removed.html", {} ] - ], + ], "bluetooth/readValue/descriptor/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/device-goes-out-of-range.html", + "/_mozilla/bluetooth/readValue/descriptor/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/readValue/descriptor/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/disconnect-called-before.html", + "/_mozilla/bluetooth/readValue/descriptor/disconnect-called-before.html", {} ] - ], + ], "bluetooth/readValue/descriptor/read-succeeds.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/read-succeeds.html", + "/_mozilla/bluetooth/readValue/descriptor/read-succeeds.html", {} ] - ], + ], "bluetooth/readValue/descriptor/read-updates-value.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/read-updates-value.html", + "/_mozilla/bluetooth/readValue/descriptor/read-updates-value.html", {} ] - ], + ], "bluetooth/readValue/descriptor/service-is-removed.html": [ [ - "/_mozilla/bluetooth/readValue/descriptor/service-is-removed.html", + "/_mozilla/bluetooth/readValue/descriptor/service-is-removed.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/accept-all-devices-with-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/accept-all-devices-with-filter.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/accept-all-devices-with-filter.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/accept-all-devices.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/accept-all-devices.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/accept-all-devices.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-name.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-name.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html", {} ] - ], + ], "bluetooth/requestDevice/acceptAllDevices/optional-services-present.html": [ [ - "/_mozilla/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html", + "/_mozilla/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html", {} ] - ], + ], "bluetooth/requestDevice/adapter-not-present.html": [ [ - "/_mozilla/bluetooth/requestDevice/adapter-not-present.html", + "/_mozilla/bluetooth/requestDevice/adapter-not-present.html", {} ] - ], + ], "bluetooth/requestDevice/adapter-off.html": [ [ - "/_mozilla/bluetooth/requestDevice/adapter-off.html", + "/_mozilla/bluetooth/requestDevice/adapter-off.html", {} ] - ], + ], "bluetooth/requestDevice/blocklisted-service-in-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/blocklisted-service-in-filter.html", + "/_mozilla/bluetooth/requestDevice/blocklisted-service-in-filter.html", {} ] - ], + ], "bluetooth/requestDevice/blocklisted-service-in-optionalServices.html": [ [ - "/_mozilla/bluetooth/requestDevice/blocklisted-service-in-optionalServices.html", + "/_mozilla/bluetooth/requestDevice/blocklisted-service-in-optionalServices.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/blocklisted-service-data-key.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/blocklisted-service-data-key.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/blocklisted-service-data-key.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-filter.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-filter.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-filters-member.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-filters-member.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-filters-member.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-namePrefix.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-namePrefix.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-namePrefix.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-services-member.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-services-member.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/empty-services-member.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-name.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-name.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-namePrefix.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-namePrefix.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-namePrefix.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/no-arguments.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/no-arguments.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/no-arguments.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/no-filters-member.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/no-filters-member.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/no-filters-member.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-name.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-name.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-namePrefix.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-namePrefix.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-namePrefix.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-name.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-name.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-name.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-namePrefix.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-namePrefix.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-namePrefix.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-manufacturer-data-key.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-manufacturer-data-key.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-manufacturer-data-key.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-mask-length.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-mask-length.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-mask-length.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-data-key.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-data-key.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-data-key.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-optionalServices-member.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-optionalServices-member.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-optionalServices-member.html", {} ] - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-services-member.html": [ [ - "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-services-member.html", + "/_mozilla/bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-services-member.html", {} ] - ], + ], "bluetooth/requestDevice/device-found-using-mask.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-found-using-mask.html", + "/_mozilla/bluetooth/requestDevice/device-found-using-mask.html", {} ] - ], + ], "bluetooth/requestDevice/device-found-with-key-and-value.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-found-with-key-and-value.html", + "/_mozilla/bluetooth/requestDevice/device-found-with-key-and-value.html", {} ] - ], + ], "bluetooth/requestDevice/device-found-with-key-only.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-found-with-key-only.html", + "/_mozilla/bluetooth/requestDevice/device-found-with-key-only.html", {} ] - ], + ], "bluetooth/requestDevice/device-found-with-service-and-manufacturer-data.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-found-with-service-and-manufacturer-data.html", + "/_mozilla/bluetooth/requestDevice/device-found-with-service-and-manufacturer-data.html", {} ] - ], + ], "bluetooth/requestDevice/device-not-found-with-extra-data.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-not-found-with-extra-data.html", + "/_mozilla/bluetooth/requestDevice/device-not-found-with-extra-data.html", {} ] - ], + ], "bluetooth/requestDevice/device-not-found-with-service-and-manufacturer-data.html": [ [ - "/_mozilla/bluetooth/requestDevice/device-not-found-with-service-and-manufacturer-data.html", + "/_mozilla/bluetooth/requestDevice/device-not-found-with-service-and-manufacturer-data.html", {} ] - ], + ], "bluetooth/requestDevice/discovery-succeeds.html": [ [ - "/_mozilla/bluetooth/requestDevice/discovery-succeeds.html", + "/_mozilla/bluetooth/requestDevice/discovery-succeeds.html", {} ] - ], + ], "bluetooth/requestDevice/filter-does-not-match.html": [ [ - "/_mozilla/bluetooth/requestDevice/filter-does-not-match.html", + "/_mozilla/bluetooth/requestDevice/filter-does-not-match.html", {} ] - ], + ], "bluetooth/requestDevice/filter-matches.html": [ [ - "/_mozilla/bluetooth/requestDevice/filter-matches.html", + "/_mozilla/bluetooth/requestDevice/filter-matches.html", {} ] - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-empty-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-empty-filter.html", + "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-empty-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-prefix-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-prefix-filter.html", + "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-prefix-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-wrong-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-wrong-filter.html", + "/_mozilla/bluetooth/requestDevice/name-empty-device-from-name-wrong-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-empty-device-from-service-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-empty-device-from-service-filter.html", + "/_mozilla/bluetooth/requestDevice/name-empty-device-from-service-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-empty-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-empty-filter.html", + "/_mozilla/bluetooth/requestDevice/name-empty-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-empty-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-empty-filter.html", + "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-empty-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-prefix-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-prefix-filter.html", + "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-prefix-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-wrong-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-wrong-filter.html", + "/_mozilla/bluetooth/requestDevice/name-missing-device-from-name-wrong-filter.html", {} ] - ], + ], "bluetooth/requestDevice/name-missing-device-from-service-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/name-missing-device-from-service-filter.html", + "/_mozilla/bluetooth/requestDevice/name-missing-device-from-service-filter.html", {} ] - ], + ], "bluetooth/requestDevice/no-devices.html": [ [ - "/_mozilla/bluetooth/requestDevice/no-devices.html", + "/_mozilla/bluetooth/requestDevice/no-devices.html", {} ] - ], + ], "bluetooth/requestDevice/not-accept-all-devices-without-filter.html": [ [ - "/_mozilla/bluetooth/requestDevice/not-accept-all-devices-without-filter.html", + "/_mozilla/bluetooth/requestDevice/not-accept-all-devices-without-filter.html", {} ] - ], + ], "bluetooth/requestDevice/same-device.html": [ [ - "/_mozilla/bluetooth/requestDevice/same-device.html", + "/_mozilla/bluetooth/requestDevice/same-device.html", {} ] - ], + ], "bluetooth/requestDevice/single-filter-single-service.html": [ [ - "/_mozilla/bluetooth/requestDevice/single-filter-single-service.html", + "/_mozilla/bluetooth/requestDevice/single-filter-single-service.html", {} ] - ], + ], "bluetooth/requestDevice/single-filter-two-services-fails.html": [ [ - "/_mozilla/bluetooth/requestDevice/single-filter-two-services-fails.html", + "/_mozilla/bluetooth/requestDevice/single-filter-two-services-fails.html", {} ] - ], + ], "bluetooth/requestDevice/single-filter-two-services-succeeds.html": [ [ - "/_mozilla/bluetooth/requestDevice/single-filter-two-services-succeeds.html", + "/_mozilla/bluetooth/requestDevice/single-filter-two-services-succeeds.html", {} ] - ], + ], "bluetooth/requestDevice/two-filters.html": [ [ - "/_mozilla/bluetooth/requestDevice/two-filters.html", + "/_mozilla/bluetooth/requestDevice/two-filters.html", {} ] - ], + ], "bluetooth/startNotifications/blocklisted-characteristic.html": [ [ - "/_mozilla/bluetooth/startNotifications/blocklisted-characteristic.html", + "/_mozilla/bluetooth/startNotifications/blocklisted-characteristic.html", {} ] - ], + ], "bluetooth/startNotifications/characteristic-does-not-support-notifications.html": [ [ - "/_mozilla/bluetooth/startNotifications/characteristic-does-not-support-notifications.html", + "/_mozilla/bluetooth/startNotifications/characteristic-does-not-support-notifications.html", {} ] - ], + ], "bluetooth/startNotifications/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/startNotifications/characteristic-is-removed.html", + "/_mozilla/bluetooth/startNotifications/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/startNotifications/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/startNotifications/device-goes-out-of-range.html", + "/_mozilla/bluetooth/startNotifications/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/startNotifications/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/startNotifications/disconnect-called-before.html", + "/_mozilla/bluetooth/startNotifications/disconnect-called-before.html", {} ] - ], + ], "bluetooth/startNotifications/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/startNotifications/disconnect-called-during.html", + "/_mozilla/bluetooth/startNotifications/disconnect-called-during.html", {} ] - ], + ], "bluetooth/startNotifications/notify-failure.html": [ [ - "/_mozilla/bluetooth/startNotifications/notify-failure.html", + "/_mozilla/bluetooth/startNotifications/notify-failure.html", {} ] - ], + ], "bluetooth/startNotifications/notify-succeeds.html": [ [ - "/_mozilla/bluetooth/startNotifications/notify-succeeds.html", + "/_mozilla/bluetooth/startNotifications/notify-succeeds.html", {} ] - ], + ], "bluetooth/startNotifications/service-is-removed.html": [ [ - "/_mozilla/bluetooth/startNotifications/service-is-removed.html", + "/_mozilla/bluetooth/startNotifications/service-is-removed.html", {} ] - ], + ], "bluetooth/stopNotifications/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/stopNotifications/characteristic-is-removed.html", + "/_mozilla/bluetooth/stopNotifications/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/stopNotifications/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/stopNotifications/disconnect-called-before.html", + "/_mozilla/bluetooth/stopNotifications/disconnect-called-before.html", {} ] - ], + ], "bluetooth/stopNotifications/disconnect-called-during.html": [ [ - "/_mozilla/bluetooth/stopNotifications/disconnect-called-during.html", + "/_mozilla/bluetooth/stopNotifications/disconnect-called-during.html", {} ] - ], + ], "bluetooth/stopNotifications/notify-succeeds.html": [ [ - "/_mozilla/bluetooth/stopNotifications/notify-succeeds.html", + "/_mozilla/bluetooth/stopNotifications/notify-succeeds.html", {} ] - ], + ], "bluetooth/stopNotifications/stop-after-start-succeeds.html": [ [ - "/_mozilla/bluetooth/stopNotifications/stop-after-start-succeeds.html", + "/_mozilla/bluetooth/stopNotifications/stop-after-start-succeeds.html", {} ] - ], + ], "bluetooth/stopNotifications/stop-twice.html": [ [ - "/_mozilla/bluetooth/stopNotifications/stop-twice.html", + "/_mozilla/bluetooth/stopNotifications/stop-twice.html", {} ] - ], + ], "bluetooth/stopNotifications/stop-without-starting.html": [ [ - "/_mozilla/bluetooth/stopNotifications/stop-without-starting.html", + "/_mozilla/bluetooth/stopNotifications/stop-without-starting.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/blocklisted-characteristic.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/blocklisted-characteristic.html", + "/_mozilla/bluetooth/writeValue/characteristic/blocklisted-characteristic.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/characteristic-is-removed.html", + "/_mozilla/bluetooth/writeValue/characteristic/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/device-goes-out-of-range.html", + "/_mozilla/bluetooth/writeValue/characteristic/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/disconnect-called-before.html", + "/_mozilla/bluetooth/writeValue/characteristic/disconnect-called-before.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/service-is-removed.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/service-is-removed.html", + "/_mozilla/bluetooth/writeValue/characteristic/service-is-removed.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/value-too-long.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/value-too-long.html", + "/_mozilla/bluetooth/writeValue/characteristic/value-too-long.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/write-succeeds.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/write-succeeds.html", + "/_mozilla/bluetooth/writeValue/characteristic/write-succeeds.html", {} ] - ], + ], "bluetooth/writeValue/characteristic/write-updates-value.html": [ [ - "/_mozilla/bluetooth/writeValue/characteristic/write-updates-value.html", + "/_mozilla/bluetooth/writeValue/characteristic/write-updates-value.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/blocklisted-descriptor.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/blocklisted-descriptor.html", + "/_mozilla/bluetooth/writeValue/descriptor/blocklisted-descriptor.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/characteristic-is-removed.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/characteristic-is-removed.html", + "/_mozilla/bluetooth/writeValue/descriptor/characteristic-is-removed.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/descriptor-is-removed.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/descriptor-is-removed.html", + "/_mozilla/bluetooth/writeValue/descriptor/descriptor-is-removed.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/device-goes-out-of-range.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/device-goes-out-of-range.html", + "/_mozilla/bluetooth/writeValue/descriptor/device-goes-out-of-range.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/disconnect-called-before.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/disconnect-called-before.html", + "/_mozilla/bluetooth/writeValue/descriptor/disconnect-called-before.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/service-is-removed.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/service-is-removed.html", + "/_mozilla/bluetooth/writeValue/descriptor/service-is-removed.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/write-succeeds.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/write-succeeds.html", + "/_mozilla/bluetooth/writeValue/descriptor/write-succeeds.html", {} ] - ], + ], "bluetooth/writeValue/descriptor/write-updates-value.html": [ [ - "/_mozilla/bluetooth/writeValue/descriptor/write-updates-value.html", + "/_mozilla/bluetooth/writeValue/descriptor/write-updates-value.html", {} ] - ], + ], "css/animations/basic-linear-width.html": [ [ - "/_mozilla/css/animations/basic-linear-width.html", + "/_mozilla/css/animations/basic-linear-width.html", {} ] - ], + ], "css/animations/basic-transition.html": [ [ - "/_mozilla/css/animations/basic-transition.html", + "/_mozilla/css/animations/basic-transition.html", {} ] - ], + ], "css/animations/mixed-units.html": [ [ - "/_mozilla/css/animations/mixed-units.html", + "/_mozilla/css/animations/mixed-units.html", {} ] - ], + ], "css/animations/transition-raf.html": [ [ - "/_mozilla/css/animations/transition-raf.html", + "/_mozilla/css/animations/transition-raf.html", {} ] - ], + ], "css/bug_1345483.html": [ [ - "/_mozilla/css/bug_1345483.html", + "/_mozilla/css/bug_1345483.html", {} ] - ], + ], "css/calc-number-serialization.html": [ [ - "/_mozilla/css/calc-number-serialization.html", + "/_mozilla/css/calc-number-serialization.html", {} ] - ], + ], "css/css-position-3/position-sticky-get-bounding-client-rect.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-get-bounding-client-rect.html", + "/_mozilla/css/css-position-3/position-sticky-get-bounding-client-rect.html", {} ] - ], + ], "css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html", + "/_mozilla/css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html", {} ] - ], + ], "css/css-position-3/position-sticky-offset-top-left.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-offset-top-left.html", + "/_mozilla/css/css-position-3/position-sticky-offset-top-left.html", {} ] - ], + ], "css/css-position-3/position-sticky-parsing.html": [ [ - "/_mozilla/css/css-position-3/position-sticky-parsing.html", + "/_mozilla/css/css-position-3/position-sticky-parsing.html", {} ] - ], + ], "css/empty-keyframes.html": [ [ - "/_mozilla/css/empty-keyframes.html", + "/_mozilla/css/empty-keyframes.html", {} ] - ], + ], "css/flex-item-assign-inline-size.html": [ [ - "/_mozilla/css/flex-item-assign-inline-size.html", + "/_mozilla/css/flex-item-assign-inline-size.html", {} ] - ], + ], "css/float-abspos.html": [ [ - "/_mozilla/css/float-abspos.html", + "/_mozilla/css/float-abspos.html", {} ] - ], + ], "css/float_relative_to_position.html": [ [ - "/_mozilla/css/float_relative_to_position.html", + "/_mozilla/css/float_relative_to_position.html", {} ] - ], + ], "css/get-computed-style-for-url.html": [ [ - "/_mozilla/css/get-computed-style-for-url.html", + "/_mozilla/css/get-computed-style-for-url.html", {} ] - ], + ], "css/import_serialization.html": [ [ - "/_mozilla/css/import_serialization.html", + "/_mozilla/css/import_serialization.html", {} ] - ], + ], "css/issue_18544_flow_list_crash.html": [ [ - "/_mozilla/css/issue_18544_flow_list_crash.html", + "/_mozilla/css/issue_18544_flow_list_crash.html", {} ] - ], + ], "css/matchMedia.html": [ [ - "/_mozilla/css/matchMedia.html", + "/_mozilla/css/matchMedia.html", {} ] - ], + ], "css/media_bogus_query_sequence.html": [ [ - "/_mozilla/css/media_bogus_query_sequence.html", + "/_mozilla/css/media_bogus_query_sequence.html", {} ] - ], + ], "css/media_calc_crash.html": [ [ - "/_mozilla/css/media_calc_crash.html", + "/_mozilla/css/media_calc_crash.html", {} ] - ], + ], "css/meta_viewport_resize.html": [ [ - "/_mozilla/css/meta_viewport_resize.html", + "/_mozilla/css/meta_viewport_resize.html", {} ] - ], + ], "css/offset_properties_inline.html": [ [ - "/_mozilla/css/offset_properties_inline.html", + "/_mozilla/css/offset_properties_inline.html", {} ] - ], + ], "css/perspective.html": [ [ - "/_mozilla/css/perspective.html", + "/_mozilla/css/perspective.html", {} ] - ], + ], "css/stylesheet_media_queries.html": [ [ - "/_mozilla/css/stylesheet_media_queries.html", + "/_mozilla/css/stylesheet_media_queries.html", {} ] - ], + ], "css/test_font_family_parsing.html": [ [ - "/_mozilla/css/test_font_family_parsing.html", + "/_mozilla/css/test_font_family_parsing.html", {} ] - ], + ], "css/test_variable_legal_values.html": [ [ - "/_mozilla/css/test_variable_legal_values.html", + "/_mozilla/css/test_variable_legal_values.html", {} ] - ], + ], "css/test_variable_serialization_computed.html": [ [ - "/_mozilla/css/test_variable_serialization_computed.html", + "/_mozilla/css/test_variable_serialization_computed.html", {} ] - ], + ], "css/test_variable_serialization_specified.html": [ [ - "/_mozilla/css/test_variable_serialization_specified.html", + "/_mozilla/css/test_variable_serialization_specified.html", {} ] - ], + ], "css/white-space-pre-line-long-line.html": [ [ - "/_mozilla/css/white-space-pre-line-long-line.html", + "/_mozilla/css/white-space-pre-line-long-line.html", {} ] - ], + ], "css/white-space-pre-wrap-long-line.html": [ [ - "/_mozilla/css/white-space-pre-wrap-long-line.html", + "/_mozilla/css/white-space-pre-wrap-long-line.html", {} ] - ], + ], "css/writing-mode_change_display.html": [ [ - "/_mozilla/css/writing-mode_change_display.html", + "/_mozilla/css/writing-mode_change_display.html", {} ] - ], + ], "mozilla/DOMParser.html": [ [ - "/_mozilla/mozilla/DOMParser.html", + "/_mozilla/mozilla/DOMParser.html", {} ] - ], + ], "mozilla/Event.html": [ [ - "/_mozilla/mozilla/Event.html", + "/_mozilla/mozilla/Event.html", {} ] - ], + ], "mozilla/FileAPI/blob.html": [ [ - "/_mozilla/mozilla/FileAPI/blob.html", + "/_mozilla/mozilla/FileAPI/blob.html", {} ] - ], + ], "mozilla/FileAPI/file-select.html": [ [ - "/_mozilla/mozilla/FileAPI/file-select.html", + "/_mozilla/mozilla/FileAPI/file-select.html", {} ] - ], + ], "mozilla/FileAPI/file-upload.html": [ [ - "/_mozilla/mozilla/FileAPI/file-upload.html", + "/_mozilla/mozilla/FileAPI/file-upload.html", {} ] - ], + ], "mozilla/FocusEvent.html": [ [ - "/_mozilla/mozilla/FocusEvent.html", + "/_mozilla/mozilla/FocusEvent.html", {} ] - ], + ], "mozilla/MouseEvent.html": [ [ - "/_mozilla/mozilla/MouseEvent.html", + "/_mozilla/mozilla/MouseEvent.html", {} ] - ], + ], "mozilla/activation.html": [ [ - "/_mozilla/mozilla/activation.html", + "/_mozilla/mozilla/activation.html", {} ] - ], + ], "mozilla/adopted_node_is_same_origin_domain.html": [ [ - "/_mozilla/mozilla/adopted_node_is_same_origin_domain.html", + "/_mozilla/mozilla/adopted_node_is_same_origin_domain.html", {} ] - ], + ], "mozilla/animation-removed-node.html": [ [ - "/_mozilla/mozilla/animation-removed-node.html", + "/_mozilla/mozilla/animation-removed-node.html", {} ] - ], + ], "mozilla/binding_keyword.html": [ [ - "/_mozilla/mozilla/binding_keyword.html", + "/_mozilla/mozilla/binding_keyword.html", {} ] - ], + ], "mozilla/body_listener.html": [ [ - "/_mozilla/mozilla/body_listener.html", + "/_mozilla/mozilla/body_listener.html", {} ] - ], + ], "mozilla/calc.html": [ [ - "/_mozilla/mozilla/calc.html", + "/_mozilla/mozilla/calc.html", {} ] - ], + ], "mozilla/canvas.initial.reset.2dstate.html": [ [ - "/_mozilla/mozilla/canvas.initial.reset.2dstate.html", + "/_mozilla/mozilla/canvas.initial.reset.2dstate.html", {} ] - ], + ], "mozilla/canvas/fill_and_stroke_getters_setters.html": [ [ - "/_mozilla/mozilla/canvas/fill_and_stroke_getters_setters.html", + "/_mozilla/mozilla/canvas/fill_and_stroke_getters_setters.html", {} ] - ], + ], "mozilla/caption.html": [ [ - "/_mozilla/mozilla/caption.html", + "/_mozilla/mozilla/caption.html", {} ] - ], + ], "mozilla/child_reparenting.html": [ [ - "/_mozilla/mozilla/child_reparenting.html", + "/_mozilla/mozilla/child_reparenting.html", {} ] - ], + ], "mozilla/client-top-left-height-width.html": [ [ - "/_mozilla/mozilla/client-top-left-height-width.html", + "/_mozilla/mozilla/client-top-left-height-width.html", {} ] - ], + ], "mozilla/codegen_unions.html": [ [ - "/_mozilla/mozilla/codegen_unions.html", + "/_mozilla/mozilla/codegen_unions.html", {} ] - ], + ], "mozilla/collections.html": [ [ - "/_mozilla/mozilla/collections.html", + "/_mozilla/mozilla/collections.html", {} ] - ], + ], "mozilla/createEvent-storageevent.html": [ [ - "/_mozilla/mozilla/createEvent-storageevent.html", + "/_mozilla/mozilla/createEvent-storageevent.html", {} ] - ], + ], "mozilla/cross-origin-objects/cross-origin-objects.html": [ [ - "/_mozilla/mozilla/cross-origin-objects/cross-origin-objects.html", + "/_mozilla/mozilla/cross-origin-objects/cross-origin-objects.html", { "timeout": "long" } ] - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage.html": [ [ - "/_mozilla/mozilla/cross-origin-objects/cross-origin-postMessage.html", + "/_mozilla/mozilla/cross-origin-objects/cross-origin-postMessage.html", {} ] - ], + ], "mozilla/custom_auto_rooter.html": [ [ - "/_mozilla/mozilla/custom_auto_rooter.html", + "/_mozilla/mozilla/custom_auto_rooter.html", {} ] - ], + ], "mozilla/deep_serialization_succeeds.html": [ [ - "/_mozilla/mozilla/deep_serialization_succeeds.html", + "/_mozilla/mozilla/deep_serialization_succeeds.html", {} ] - ], + ], "mozilla/deterministic-raf.html": [ [ - "/_mozilla/mozilla/deterministic-raf.html", + "/_mozilla/mozilla/deterministic-raf.html", {} ] - ], + ], "mozilla/documentElement.html": [ [ - "/_mozilla/mozilla/documentElement.html", + "/_mozilla/mozilla/documentElement.html", {} ] - ], + ], "mozilla/document_activeElement.html": [ [ - "/_mozilla/mozilla/document_activeElement.html", + "/_mozilla/mozilla/document_activeElement.html", {} ] - ], + ], "mozilla/document_characterSet.html": [ [ - "/_mozilla/mozilla/document_characterSet.html", + "/_mozilla/mozilla/document_characterSet.html", {} ] - ], + ], "mozilla/document_characterSet_default.html": [ [ - "/_mozilla/mozilla/document_characterSet_default.html", + "/_mozilla/mozilla/document_characterSet_default.html", {} ] - ], + ], "mozilla/document_characterSet_invalid.html": [ [ - "/_mozilla/mozilla/document_characterSet_invalid.html", + "/_mozilla/mozilla/document_characterSet_invalid.html", {} ] - ], + ], "mozilla/document_characterSet_long.html": [ [ - "/_mozilla/mozilla/document_characterSet_long.html", + "/_mozilla/mozilla/document_characterSet_long.html", {} ] - ], + ], "mozilla/document_characterSet_short.html": [ [ - "/_mozilla/mozilla/document_characterSet_short.html", + "/_mozilla/mozilla/document_characterSet_short.html", {} ] - ], + ], "mozilla/document_compatMode_loose.html": [ [ - "/_mozilla/mozilla/document_compatMode_loose.html", + "/_mozilla/mozilla/document_compatMode_loose.html", {} ] - ], + ], "mozilla/document_compatMode_strict.html": [ [ - "/_mozilla/mozilla/document_compatMode_strict.html", + "/_mozilla/mozilla/document_compatMode_strict.html", {} ] - ], + ], "mozilla/document_contenttype.html": [ [ - "/_mozilla/mozilla/document_contenttype.html", + "/_mozilla/mozilla/document_contenttype.html", {} ] - ], + ], "mozilla/document_datalist_options.html": [ [ - "/_mozilla/mozilla/document_datalist_options.html", + "/_mozilla/mozilla/document_datalist_options.html", {} ] - ], + ], "mozilla/document_defaultView.html": [ [ - "/_mozilla/mozilla/document_defaultView.html", + "/_mozilla/mozilla/document_defaultView.html", {} ] - ], + ], "mozilla/document_elementsFromPoint.html": [ [ - "/_mozilla/mozilla/document_elementsFromPoint.html", + "/_mozilla/mozilla/document_elementsFromPoint.html", {} ] - ], + ], "mozilla/document_getElementById.html": [ [ - "/_mozilla/mozilla/document_getElementById.html", + "/_mozilla/mozilla/document_getElementById.html", {} ] - ], + ], "mozilla/document_getElementsByName.html": [ [ - "/_mozilla/mozilla/document_getElementsByName.html", + "/_mozilla/mozilla/document_getElementsByName.html", {} ] - ], + ], "mozilla/document_head.html": [ [ - "/_mozilla/mozilla/document_head.html", + "/_mozilla/mozilla/document_head.html", {} ] - ], + ], "mozilla/document_images_cache.html": [ [ - "/_mozilla/mozilla/document_images_cache.html", + "/_mozilla/mozilla/document_images_cache.html", {} ] - ], + ], "mozilla/document_implementation.html": [ [ - "/_mozilla/mozilla/document_implementation.html", + "/_mozilla/mozilla/document_implementation.html", {} ] - ], + ], "mozilla/document_links_cache.html": [ [ - "/_mozilla/mozilla/document_links_cache.html", + "/_mozilla/mozilla/document_links_cache.html", {} ] - ], + ], "mozilla/document_readystate.html": [ [ - "/_mozilla/mozilla/document_readystate.html", + "/_mozilla/mozilla/document_readystate.html", {} ] - ], + ], "mozilla/document_set_node_value.html": [ [ - "/_mozilla/mozilla/document_set_node_value.html", + "/_mozilla/mozilla/document_set_node_value.html", {} ] - ], + ], "mozilla/document_title_nontextchildren.html": [ [ - "/_mozilla/mozilla/document_title_nontextchildren.html", + "/_mozilla/mozilla/document_title_nontextchildren.html", {} ] - ], + ], "mozilla/document_url.html": [ [ - "/_mozilla/mozilla/document_url.html", + "/_mozilla/mozilla/document_url.html", {} ] - ], + ], "mozilla/double_focus.html": [ [ - "/_mozilla/mozilla/double_focus.html", + "/_mozilla/mozilla/double_focus.html", {} ] - ], + ], "mozilla/element_attribute.html": [ [ - "/_mozilla/mozilla/element_attribute.html", + "/_mozilla/mozilla/element_attribute.html", {} ] - ], + ], "mozilla/element_attributes.html": [ [ - "/_mozilla/mozilla/element_attributes.html", + "/_mozilla/mozilla/element_attributes.html", {} ] - ], + ], "mozilla/element_className.html": [ [ - "/_mozilla/mozilla/element_className.html", + "/_mozilla/mozilla/element_className.html", {} ] - ], + ], "mozilla/element_getcomputedstyle.html": [ [ - "/_mozilla/mozilla/element_getcomputedstyle.html", + "/_mozilla/mozilla/element_getcomputedstyle.html", {} ] - ], + ], "mozilla/element_matches.html": [ [ - "/_mozilla/mozilla/element_matches.html", + "/_mozilla/mozilla/element_matches.html", {} ] - ], + ], "mozilla/element_matches_empty.html": [ [ - "/_mozilla/mozilla/element_matches_empty.html", + "/_mozilla/mozilla/element_matches_empty.html", {} ] - ], + ], "mozilla/element_parentOffset.html": [ [ - "/_mozilla/mozilla/element_parentOffset.html", + "/_mozilla/mozilla/element_parentOffset.html", {} ] - ], + ], "mozilla/element_setAttributeNode.html": [ [ - "/_mozilla/mozilla/element_setAttributeNode.html", + "/_mozilla/mozilla/element_setAttributeNode.html", {} ] - ], + ], "mozilla/empty_clientrect.html": [ [ - "/_mozilla/mozilla/empty_clientrect.html", + "/_mozilla/mozilla/empty_clientrect.html", {} ] - ], + ], "mozilla/enabled_disabled_selectors.html": [ [ - "/_mozilla/mozilla/enabled_disabled_selectors.html", + "/_mozilla/mozilla/enabled_disabled_selectors.html", {} ] - ], + ], "mozilla/event_dispatch.html": [ [ - "/_mozilla/mozilla/event_dispatch.html", + "/_mozilla/mozilla/event_dispatch.html", {} ] - ], + ], "mozilla/event_dispatch_dynamic.html": [ [ - "/_mozilla/mozilla/event_dispatch_dynamic.html", + "/_mozilla/mozilla/event_dispatch_dynamic.html", {} ] - ], + ], "mozilla/event_dispatch_order.html": [ [ - "/_mozilla/mozilla/event_dispatch_order.html", + "/_mozilla/mozilla/event_dispatch_order.html", {} ] - ], + ], "mozilla/event_handler_syntax_error.html": [ [ - "/_mozilla/mozilla/event_handler_syntax_error.html", + "/_mozilla/mozilla/event_handler_syntax_error.html", {} ] - ], + ], "mozilla/event_listener.html": [ [ - "/_mozilla/mozilla/event_listener.html", + "/_mozilla/mozilla/event_listener.html", {} ] - ], + ], "mozilla/first-reflow-sheet-assert.html": [ [ - "/_mozilla/mozilla/first-reflow-sheet-assert.html", + "/_mozilla/mozilla/first-reflow-sheet-assert.html", {} ] - ], + ], "mozilla/focus_blur.html": [ [ - "/_mozilla/mozilla/focus_blur.html", + "/_mozilla/mozilla/focus_blur.html", {} ] - ], + ], "mozilla/follow-hyperlink.html": [ [ - "/_mozilla/mozilla/follow-hyperlink.html", + "/_mozilla/mozilla/follow-hyperlink.html", {} ] - ], + ], "mozilla/form_submit_about.html": [ [ - "/_mozilla/mozilla/form_submit_about.html", + "/_mozilla/mozilla/form_submit_about.html", {} ] - ], + ], "mozilla/form_tab_keyevent.html": [ [ - "/_mozilla/mozilla/form_tab_keyevent.html", + "/_mozilla/mozilla/form_tab_keyevent.html", {} ] - ], + ], "mozilla/fullscreen-remove-single.html": [ [ - "/_mozilla/mozilla/fullscreen-remove-single.html", + "/_mozilla/mozilla/fullscreen-remove-single.html", {} ] - ], + ], "mozilla/getBoundingClientRect.html": [ [ - "/_mozilla/mozilla/getBoundingClientRect.html", + "/_mozilla/mozilla/getBoundingClientRect.html", {} ] - ], + ], "mozilla/getComputedStyle.html": [ [ - "/_mozilla/mozilla/getComputedStyle.html", + "/_mozilla/mozilla/getComputedStyle.html", {} ] - ], + ], "mozilla/getPropertyPriority.html": [ [ - "/_mozilla/mozilla/getPropertyPriority.html", + "/_mozilla/mozilla/getPropertyPriority.html", {} ] - ], + ], "mozilla/global.html": [ [ - "/_mozilla/mozilla/global.html", + "/_mozilla/mozilla/global.html", {} ] - ], + ], "mozilla/globals/entry.html": [ [ - "/_mozilla/mozilla/globals/entry.html", + "/_mozilla/mozilla/globals/entry.html", {} ] - ], + ], "mozilla/globals/entry.worker.js": [ [ - "/_mozilla/mozilla/globals/entry.worker.html", + "/_mozilla/mozilla/globals/entry.worker.html", {} ] - ], + ], "mozilla/hit_test_multiple_sc.html": [ [ - "/_mozilla/mozilla/hit_test_multiple_sc.html", + "/_mozilla/mozilla/hit_test_multiple_sc.html", {} ] - ], + ], "mozilla/hit_test_nested_sc.html": [ [ - "/_mozilla/mozilla/hit_test_nested_sc.html", + "/_mozilla/mozilla/hit_test_nested_sc.html", {} ] - ], + ], "mozilla/hit_test_pos_fixed.html": [ [ - "/_mozilla/mozilla/hit_test_pos_fixed.html", + "/_mozilla/mozilla/hit_test_pos_fixed.html", {} ] - ], + ], "mozilla/htmlcollection.html": [ [ - "/_mozilla/mozilla/htmlcollection.html", + "/_mozilla/mozilla/htmlcollection.html", {} ] - ], + ], "mozilla/htmlfieldsetelement_elements.html": [ [ - "/_mozilla/mozilla/htmlfieldsetelement_elements.html", + "/_mozilla/mozilla/htmlfieldsetelement_elements.html", {} ] - ], + ], "mozilla/htmlfontelement_size_attribute.html": [ [ - "/_mozilla/mozilla/htmlfontelement_size_attribute.html", + "/_mozilla/mozilla/htmlfontelement_size_attribute.html", {} ] - ], + ], "mozilla/htmlimageelement.html": [ [ - "/_mozilla/mozilla/htmlimageelement.html", + "/_mozilla/mozilla/htmlimageelement.html", {} ] - ], + ], "mozilla/htmllabel-activation.html": [ [ - "/_mozilla/mozilla/htmllabel-activation.html", + "/_mozilla/mozilla/htmllabel-activation.html", {} ] - ], + ], "mozilla/htmlspacechars.html": [ [ - "/_mozilla/mozilla/htmlspacechars.html", + "/_mozilla/mozilla/htmlspacechars.html", {} ] - ], + ], "mozilla/http-cache-xhr.html": [ [ - "/_mozilla/mozilla/http-cache-xhr.html", + "/_mozilla/mozilla/http-cache-xhr.html", {} ] - ], + ], "mozilla/http-cache.html": [ [ - "/_mozilla/mozilla/http-cache.html", + "/_mozilla/mozilla/http-cache.html", {} ] - ], + ], "mozilla/iframe-unblock-onload.html": [ [ - "/_mozilla/mozilla/iframe-unblock-onload.html", + "/_mozilla/mozilla/iframe-unblock-onload.html", {} ] - ], + ], "mozilla/iframe_contentDocument.html": [ [ - "/_mozilla/mozilla/iframe_contentDocument.html", + "/_mozilla/mozilla/iframe_contentDocument.html", {} ] - ], + ], "mozilla/iframe_hierarchy.html": [ [ - "/_mozilla/mozilla/iframe_hierarchy.html", + "/_mozilla/mozilla/iframe_hierarchy.html", {} ] - ], + ], "mozilla/iframe_replacement.html": [ [ - "/_mozilla/mozilla/iframe_replacement.html", + "/_mozilla/mozilla/iframe_replacement.html", {} ] - ], + ], "mozilla/img_async_src_set_before_window_load.html": [ [ - "/_mozilla/mozilla/img_async_src_set_before_window_load.html", + "/_mozilla/mozilla/img_async_src_set_before_window_load.html", {} ] - ], + ], "mozilla/img_find_non_sibling_map.html": [ [ - "/_mozilla/mozilla/img_find_non_sibling_map.html", + "/_mozilla/mozilla/img_find_non_sibling_map.html", {} ] - ], + ], "mozilla/img_multiple_request.html": [ [ - "/_mozilla/mozilla/img_multiple_request.html", + "/_mozilla/mozilla/img_multiple_request.html", {} ] - ], + ], "mozilla/img_no_panic_on_no_map.html": [ [ - "/_mozilla/mozilla/img_no_panic_on_no_map.html", + "/_mozilla/mozilla/img_no_panic_on_no_map.html", {} ] - ], + ], "mozilla/img_placeholder_load.html": [ [ - "/_mozilla/mozilla/img_placeholder_load.html", + "/_mozilla/mozilla/img_placeholder_load.html", {} ] - ], + ], "mozilla/img_width_height.html": [ [ - "/_mozilla/mozilla/img_width_height.html", + "/_mozilla/mozilla/img_width_height.html", {} ] - ], + ], "mozilla/inline-event-listener-panic.html": [ [ - "/_mozilla/mozilla/inline-event-listener-panic.html", + "/_mozilla/mozilla/inline-event-listener-panic.html", {} ] - ], + ], "mozilla/inline_event_handler.html": [ [ - "/_mozilla/mozilla/inline_event_handler.html", + "/_mozilla/mozilla/inline_event_handler.html", {} ] - ], + ], "mozilla/innerHTML.html": [ [ - "/_mozilla/mozilla/innerHTML.html", + "/_mozilla/mozilla/innerHTML.html", {} ] - ], + ], "mozilla/input_value.html": [ [ - "/_mozilla/mozilla/input_value.html", + "/_mozilla/mozilla/input_value.html", {} ] - ], + ], "mozilla/interface_member_exposed.html": [ [ - "/_mozilla/mozilla/interface_member_exposed.html", + "/_mozilla/mozilla/interface_member_exposed.html", {} ] - ], + ], "mozilla/interfaces.html": [ [ - "/_mozilla/mozilla/interfaces.html", + "/_mozilla/mozilla/interfaces.html", {} ] - ], + ], "mozilla/interfaces.worker.js": [ [ - "/_mozilla/mozilla/interfaces.worker.html", + "/_mozilla/mozilla/interfaces.worker.html", {} ] - ], + ], "mozilla/invalid-this.html": [ [ - "/_mozilla/mozilla/invalid-this.html", + "/_mozilla/mozilla/invalid-this.html", {} ] - ], + ], "mozilla/iterable.html": [ [ - "/_mozilla/mozilla/iterable.html", + "/_mozilla/mozilla/iterable.html", {} ] - ], + ], "mozilla/keyframe-infinite-percentage.html": [ [ - "/_mozilla/mozilla/keyframe-infinite-percentage.html", + "/_mozilla/mozilla/keyframe-infinite-percentage.html", {} ] - ], + ], "mozilla/lenient_this.html": [ [ - "/_mozilla/mozilla/lenient_this.html", + "/_mozilla/mozilla/lenient_this.html", {} ] - ], + ], "mozilla/link_rel_crash.html": [ [ - "/_mozilla/mozilla/link_rel_crash.html", + "/_mozilla/mozilla/link_rel_crash.html", {} ] - ], + ], "mozilla/load_event.html": [ [ - "/_mozilla/mozilla/load_event.html", + "/_mozilla/mozilla/load_event.html", {} ] - ], + ], "mozilla/localeCompare.html": [ [ - "/_mozilla/mozilla/localeCompare.html", + "/_mozilla/mozilla/localeCompare.html", {} ] - ], + ], "mozilla/media_query_list_gc.html": [ [ - "/_mozilla/mozilla/media_query_list_gc.html", + "/_mozilla/mozilla/media_query_list_gc.html", {} ] - ], + ], "mozilla/microdata/dup_prop_type_test.html": [ [ - "/_mozilla/mozilla/microdata/dup_prop_type_test.html", + "/_mozilla/mozilla/microdata/dup_prop_type_test.html", {} ] - ], + ], "mozilla/microdata/extra_space_test.html": [ [ - "/_mozilla/mozilla/microdata/extra_space_test.html", + "/_mozilla/mozilla/microdata/extra_space_test.html", {} ] - ], + ], "mozilla/microdata/none_check.html": [ [ - "/_mozilla/mozilla/microdata/none_check.html", + "/_mozilla/mozilla/microdata/none_check.html", {} ] - ], + ], "mozilla/microdata/regular_prop_type_test.html": [ [ - "/_mozilla/mozilla/microdata/regular_prop_type_test.html", + "/_mozilla/mozilla/microdata/regular_prop_type_test.html", {} ] - ], + ], "mozilla/microdata/single_prop_type_test.html": [ [ - "/_mozilla/mozilla/microdata/single_prop_type_test.html", + "/_mozilla/mozilla/microdata/single_prop_type_test.html", {} ] - ], + ], "mozilla/mime_sniffing_font_context.html": [ [ - "/_mozilla/mozilla/mime_sniffing_font_context.html", + "/_mozilla/mozilla/mime_sniffing_font_context.html", {} ] - ], + ], "mozilla/mql_borrow.html": [ [ - "/_mozilla/mozilla/mql_borrow.html", + "/_mozilla/mozilla/mql_borrow.html", {} ] - ], + ], "mozilla/multiple_redirects.html": [ [ - "/_mozilla/mozilla/multiple_redirects.html", + "/_mozilla/mozilla/multiple_redirects.html", {} ] - ], + ], "mozilla/navigator.html": [ [ - "/_mozilla/mozilla/navigator.html", + "/_mozilla/mozilla/navigator.html", {} ] - ], + ], "mozilla/nested_asap_script.html": [ [ - "/_mozilla/mozilla/nested_asap_script.html", + "/_mozilla/mozilla/nested_asap_script.html", {} ] - ], + ], "mozilla/network_error_page_load.html": [ [ - "/_mozilla/mozilla/network_error_page_load.html", + "/_mozilla/mozilla/network_error_page_load.html", {} ] - ], + ], "mozilla/node_compareDocumentPosition.html": [ [ - "/_mozilla/mozilla/node_compareDocumentPosition.html", + "/_mozilla/mozilla/node_compareDocumentPosition.html", {} ] - ], + ], "mozilla/node_contains.html": [ [ - "/_mozilla/mozilla/node_contains.html", + "/_mozilla/mozilla/node_contains.html", {} ] - ], + ], "mozilla/node_insertBefore.html": [ [ - "/_mozilla/mozilla/node_insertBefore.html", + "/_mozilla/mozilla/node_insertBefore.html", {} ] - ], + ], "mozilla/node_isEqualNode.html": [ [ - "/_mozilla/mozilla/node_isEqualNode.html", + "/_mozilla/mozilla/node_isEqualNode.html", {} ] - ], + ], "mozilla/node_lookupPrefix.html": [ [ - "/_mozilla/mozilla/node_lookupPrefix.html", + "/_mozilla/mozilla/node_lookupPrefix.html", {} ] - ], + ], "mozilla/node_normalize.html": [ [ - "/_mozilla/mozilla/node_normalize.html", + "/_mozilla/mozilla/node_normalize.html", {} ] - ], + ], "mozilla/node_replaceChild.html": [ [ - "/_mozilla/mozilla/node_replaceChild.html", + "/_mozilla/mozilla/node_replaceChild.html", {} ] - ], + ], "mozilla/non-invertible-transform.html": [ [ - "/_mozilla/mozilla/non-invertible-transform.html", + "/_mozilla/mozilla/non-invertible-transform.html", {} ] - ], + ], "mozilla/out-of-order-stylesheet-loads-and-imports.html": [ [ - "/_mozilla/mozilla/out-of-order-stylesheet-loads-and-imports.html", + "/_mozilla/mozilla/out-of-order-stylesheet-loads-and-imports.html", {} ] - ], + ], "mozilla/out-of-order-stylesheet-loads.html": [ [ - "/_mozilla/mozilla/out-of-order-stylesheet-loads.html", + "/_mozilla/mozilla/out-of-order-stylesheet-loads.html", {} ] - ], + ], "mozilla/paint_timing.html": [ [ - "/_mozilla/mozilla/paint_timing.html", + "/_mozilla/mozilla/paint_timing.html", {} ] - ], + ], "mozilla/parentNode_querySelector.html": [ [ - "/_mozilla/mozilla/parentNode_querySelector.html", + "/_mozilla/mozilla/parentNode_querySelector.html", {} ] - ], + ], "mozilla/parentNode_querySelectorAll.html": [ [ - "/_mozilla/mozilla/parentNode_querySelectorAll.html", + "/_mozilla/mozilla/parentNode_querySelectorAll.html", {} ] - ], + ], "mozilla/parentnodes.html": [ [ - "/_mozilla/mozilla/parentnodes.html", + "/_mozilla/mozilla/parentnodes.html", {} ] - ], + ], "mozilla/postmessage_closed.html": [ [ - "/_mozilla/mozilla/postmessage_closed.html", + "/_mozilla/mozilla/postmessage_closed.html", {} ] - ], + ], "mozilla/preferences.html": [ [ - "/_mozilla/mozilla/preferences.html", + "/_mozilla/mozilla/preferences.html", {} ] - ], + ], "mozilla/preserve_wrapper_callback.html": [ [ - "/_mozilla/mozilla/preserve_wrapper_callback.html", + "/_mozilla/mozilla/preserve_wrapper_callback.html", {} ] - ], + ], "mozilla/promise.html": [ [ - "/_mozilla/mozilla/promise.html", + "/_mozilla/mozilla/promise.html", {} ] - ], + ], "mozilla/prototypes.html": [ [ - "/_mozilla/mozilla/prototypes.html", + "/_mozilla/mozilla/prototypes.html", {} ] - ], + ], "mozilla/proxy_setter.html": [ [ - "/_mozilla/mozilla/proxy_setter.html", + "/_mozilla/mozilla/proxy_setter.html", {} ] - ], + ], "mozilla/range_deleteContents.html": [ [ - "/_mozilla/mozilla/range_deleteContents.html", + "/_mozilla/mozilla/range_deleteContents.html", {} ] - ], + ], "mozilla/range_request_blob_url.html": [ [ - "/_mozilla/mozilla/range_request_blob_url.html", + "/_mozilla/mozilla/range_request_blob_url.html", {} ] - ], + ], "mozilla/range_request_file_url.html": [ [ - "/_mozilla/mozilla/range_request_file_url.html", + "/_mozilla/mozilla/range_request_file_url.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html", {} ] - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ [ - "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", + "/_mozilla/mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html", {} ] - ], + ], "mozilla/response-data-brotli.htm": [ [ - "/_mozilla/mozilla/response-data-brotli.htm", + "/_mozilla/mozilla/response-data-brotli.htm", {} ] - ], + ], "mozilla/script_type.html": [ [ - "/_mozilla/mozilla/script_type.html", + "/_mozilla/mozilla/script_type.html", {} ] - ], + ], "mozilla/scrollBy.html": [ [ - "/_mozilla/mozilla/scrollBy.html", + "/_mozilla/mozilla/scrollBy.html", {} ] - ], + ], "mozilla/scrollTo.html": [ [ - "/_mozilla/mozilla/scrollTo.html", + "/_mozilla/mozilla/scrollTo.html", {} ] - ], + ], "mozilla/scroll_top_null_target.html": [ [ - "/_mozilla/mozilla/scroll_top_null_target.html", + "/_mozilla/mozilla/scroll_top_null_target.html", {} ] - ], + ], "mozilla/secure.https.html": [ [ - "/_mozilla/mozilla/secure.https.html", + "/_mozilla/mozilla/secure.https.html", {} ] - ], + ], "mozilla/sequence-hole.html": [ [ - "/_mozilla/mozilla/sequence-hole.html", + "/_mozilla/mozilla/sequence-hole.html", {} ] - ], + ], "mozilla/service-workers/service-worker-registration.html": [ [ - "/_mozilla/mozilla/service-workers/service-worker-registration.html", + "/_mozilla/mozilla/service-workers/service-worker-registration.html", {} ] - ], + ], "mozilla/servo-max-session-history.html": [ [ - "/_mozilla/mozilla/servo-max-session-history.html", + "/_mozilla/mozilla/servo-max-session-history.html", {} ] - ], + ], "mozilla/sigsegv.html": [ [ - "/_mozilla/mozilla/sigsegv.html", + "/_mozilla/mozilla/sigsegv.html", {} ] - ], + ], "mozilla/storage.html": [ [ - "/_mozilla/mozilla/storage.html", + "/_mozilla/mozilla/storage.html", {} ] - ], + ], "mozilla/style_no_trailing_space.html": [ [ - "/_mozilla/mozilla/style_no_trailing_space.html", + "/_mozilla/mozilla/style_no_trailing_space.html", {} ] - ], + ], "mozilla/style_remove_prop.html": [ [ - "/_mozilla/mozilla/style_remove_prop.html", + "/_mozilla/mozilla/style_remove_prop.html", {} ] - ], + ], "mozilla/table_rowspan_colspan_crashtest.html": [ [ - "/_mozilla/mozilla/table_rowspan_colspan_crashtest.html", + "/_mozilla/mozilla/table_rowspan_colspan_crashtest.html", {} ] - ], + ], "mozilla/task_queue_throttling.any.js": [ [ - "/_mozilla/mozilla/task_queue_throttling.any.html", + "/_mozilla/mozilla/task_queue_throttling.any.html", {} - ], + ], [ - "/_mozilla/mozilla/task_queue_throttling.any.worker.html", + "/_mozilla/mozilla/task_queue_throttling.any.worker.html", {} ] - ], + ], "mozilla/textcontent.html": [ [ - "/_mozilla/mozilla/textcontent.html", + "/_mozilla/mozilla/textcontent.html", {} ] - ], + ], "mozilla/textcontrol-selection-cannot-exceed-content.html": [ [ - "/_mozilla/mozilla/textcontrol-selection-cannot-exceed-content.html", + "/_mozilla/mozilla/textcontrol-selection-cannot-exceed-content.html", {} ] - ], + ], "mozilla/timeout-in-discarded-document.html": [ [ - "/_mozilla/mozilla/timeout-in-discarded-document.html", + "/_mozilla/mozilla/timeout-in-discarded-document.html", {} ] - ], + ], "mozilla/timer_eventInvalidation.html": [ [ - "/_mozilla/mozilla/timer_eventInvalidation.html", + "/_mozilla/mozilla/timer_eventInvalidation.html", {} ] - ], + ], "mozilla/title.html": [ [ - "/_mozilla/mozilla/title.html", + "/_mozilla/mozilla/title.html", {} ] - ], + ], "mozilla/trace_null.html": [ [ - "/_mozilla/mozilla/trace_null.html", + "/_mozilla/mozilla/trace_null.html", {} ] - ], + ], "mozilla/track_line.html": [ [ - "/_mozilla/mozilla/track_line.html", + "/_mozilla/mozilla/track_line.html", {} ] - ], + ], "mozilla/transitionend_safety.html": [ [ - "/_mozilla/mozilla/transitionend_safety.html", + "/_mozilla/mozilla/transitionend_safety.html", {} ] - ], + ], "mozilla/union.html": [ [ - "/_mozilla/mozilla/union.html", + "/_mozilla/mozilla/union.html", {} ] - ], + ], "mozilla/unitless-length.html": [ [ - "/_mozilla/mozilla/unitless-length.html", + "/_mozilla/mozilla/unitless-length.html", {} ] - ], + ], "mozilla/upstream/css_variables_setProperty_recompute.html": [ [ - "/_mozilla/mozilla/upstream/css_variables_setProperty_recompute.html", + "/_mozilla/mozilla/upstream/css_variables_setProperty_recompute.html", {} ] - ], + ], "mozilla/variadic-interface.html": [ [ - "/_mozilla/mozilla/variadic-interface.html", + "/_mozilla/mozilla/variadic-interface.html", {} ] - ], + ], "mozilla/weakref.html": [ [ - "/_mozilla/mozilla/weakref.html", + "/_mozilla/mozilla/weakref.html", {} ] - ], + ], "mozilla/webgl/bindBuffer.html": [ [ - "/_mozilla/mozilla/webgl/bindBuffer.html", + "/_mozilla/mozilla/webgl/bindBuffer.html", {} ] - ], + ], "mozilla/webgl/bufferData.html": [ [ - "/_mozilla/mozilla/webgl/bufferData.html", + "/_mozilla/mozilla/webgl/bufferData.html", {} ] - ], + ], "mozilla/webgl/bufferSubData.html": [ [ - "/_mozilla/mozilla/webgl/bufferSubData.html", + "/_mozilla/mozilla/webgl/bufferSubData.html", {} ] - ], + ], "mozilla/webgl/clear.html": [ [ - "/_mozilla/mozilla/webgl/clear.html", + "/_mozilla/mozilla/webgl/clear.html", {} ] - ], + ], "mozilla/webgl/context_creation_error.html": [ [ - "/_mozilla/mozilla/webgl/context_creation_error.html", + "/_mozilla/mozilla/webgl/context_creation_error.html", {} ] - ], + ], "mozilla/webgl/getFramebufferAttachmentParameter.html": [ [ - "/_mozilla/mozilla/webgl/getFramebufferAttachmentParameter.html", + "/_mozilla/mozilla/webgl/getFramebufferAttachmentParameter.html", {} ] - ], + ], "mozilla/webgl/get_supported_extensions.html": [ [ - "/_mozilla/mozilla/webgl/get_supported_extensions.html", + "/_mozilla/mozilla/webgl/get_supported_extensions.html", {} ] - ], + ], "mozilla/webgl/invalid_vertex_attributes.html": [ [ - "/_mozilla/mozilla/webgl/invalid_vertex_attributes.html", + "/_mozilla/mozilla/webgl/invalid_vertex_attributes.html", {} ] - ], + ], "mozilla/websocket_connection_fail.html": [ [ - "/_mozilla/mozilla/websocket_connection_fail.html", + "/_mozilla/mozilla/websocket_connection_fail.html", {} ] - ], + ], "mozilla/window-postmessage-sameorigin.html": [ [ - "/_mozilla/mozilla/window-postmessage-sameorigin.html", + "/_mozilla/mozilla/window-postmessage-sameorigin.html", {} ] - ], + ], "mozilla/window.html": [ [ - "/_mozilla/mozilla/window.html", + "/_mozilla/mozilla/window.html", {} ] - ], + ], "mozilla/window_performance.html": [ [ - "/_mozilla/mozilla/window_performance.html", + "/_mozilla/mozilla/window_performance.html", {} ] - ], + ], "mozilla/window_performance_topLevelDomComplete.html": [ [ - "/_mozilla/mozilla/window_performance_topLevelDomComplete.html", + "/_mozilla/mozilla/window_performance_topLevelDomComplete.html", {} ] - ], + ], "mozilla/window_requestAnimationFrame.html": [ [ - "/_mozilla/mozilla/window_requestAnimationFrame.html", + "/_mozilla/mozilla/window_requestAnimationFrame.html", {} ] - ], + ], "mozilla/window_requestAnimationFrame2.html": [ [ - "/_mozilla/mozilla/window_requestAnimationFrame2.html", + "/_mozilla/mozilla/window_requestAnimationFrame2.html", {} ] - ], + ], "mozilla/window_resize_not_triggered_on_load.html": [ [ - "/_mozilla/mozilla/window_resize_not_triggered_on_load.html", + "/_mozilla/mozilla/window_resize_not_triggered_on_load.html", {} ] - ], + ], "mozilla/window_setInterval.html": [ [ - "/_mozilla/mozilla/window_setInterval.html", + "/_mozilla/mozilla/window_setInterval.html", {} ] - ], + ], "mozilla/windowproxy.html": [ [ - "/_mozilla/mozilla/windowproxy.html", + "/_mozilla/mozilla/windowproxy.html", {} ] - ], + ], "mozilla/worklets/test_paint_worklet_loading.html": [ [ - "/_mozilla/mozilla/worklets/test_paint_worklet_loading.html", + "/_mozilla/mozilla/worklets/test_paint_worklet_loading.html", {} ] - ], + ], "mozilla/worklets/test_worklet.html": [ [ - "/_mozilla/mozilla/worklets/test_worklet.html", + "/_mozilla/mozilla/worklets/test_worklet.html", {} ] ] } - }, + }, "paths": { "bluetooth/advertisingEvent/watchAdvertisements-succeeds.html": [ - "a6dde05460cdf004ff7ce411317f5968b52b8e18", + "a6dde05460cdf004ff7ce411317f5968b52b8e18", "testharness" - ], + ], "bluetooth/bluetooth-helpers.js": [ - "16a280cca298bcaa5796b36b48d331bfd15baae8", + "16a280cca298bcaa5796b36b48d331bfd15baae8", "support" - ], + ], "bluetooth/connect/connection-succeeds.html": [ - "1759b464bcce8e84401ff0496c9e33bd2e85f7b5", + "1759b464bcce8e84401ff0496c9e33bd2e85f7b5", "testharness" - ], + ], "bluetooth/connect/device-goes-out-of-range.html": [ - "2c2fae692819d17813a9a4d6a205e721aeb1c2e4", + "2c2fae692819d17813a9a4d6a205e721aeb1c2e4", "testharness" - ], + ], "bluetooth/connect/get-same-gatt-server.html": [ - "2889f19a025f8828c4320b19f0fb1e0832395405", + "2889f19a025f8828c4320b19f0fb1e0832395405", "testharness" - ], + ], "bluetooth/disconnect/connect-disconnect-twice.html": [ - "1765654bde0de39a48e84bb01e250e988ad7a23b", + "1765654bde0de39a48e84bb01e250e988ad7a23b", "testharness" - ], + ], "bluetooth/disconnect/disconnect-once.html": [ - "88a342ee9c00216f15cd9d49bb93568b6f07fe23", + "88a342ee9c00216f15cd9d49bb93568b6f07fe23", "testharness" - ], + ], "bluetooth/disconnect/disconnect-twice-in-a-row.html": [ - "98454f3e938f3666a224e33e151fb4009866835c", + "98454f3e938f3666a224e33e151fb4009866835c", "testharness" - ], + ], "bluetooth/disconnect/event-is-fired.html": [ - "ebda92ec77223b8df0547f3682b1c48e548e4385", + "ebda92ec77223b8df0547f3682b1c48e548e4385", "testharness" - ], + ], "bluetooth/getAvailability/adapter-not-present.html": [ - "a14cdc29048140a5c4ae334985fef72c4f31bc03", + "a14cdc29048140a5c4ae334985fef72c4f31bc03", "testharness" - ], + ], "bluetooth/getAvailability/adapter-off.html": [ - "eac2c10aabe090722e743ce603272e6b61227a01", + "eac2c10aabe090722e743ce603272e6b61227a01", "testharness" - ], + ], "bluetooth/getAvailability/adapter-on.html": [ - "85b1fd4a3d46330b04438032eba341f3298312ec", + "85b1fd4a3d46330b04438032eba341f3298312ec", "testharness" - ], + ], "bluetooth/getCharacteristic/blocklisted-characteristic.html": [ - "89768ed86cc8cbc008369c5ec39f9bddbdc130f1", + "89768ed86cc8cbc008369c5ec39f9bddbdc130f1", "testharness" - ], + ], "bluetooth/getCharacteristic/characteristic-found.html": [ - "39e6dbaf3e7423baaf9b5a71743931defcfa482b", + "39e6dbaf3e7423baaf9b5a71743931defcfa482b", "testharness" - ], + ], "bluetooth/getCharacteristic/characteristic-not-found.html": [ - "636d5cc88a2fd2f7cd0cff508eb4729e95ebad93", + "636d5cc88a2fd2f7cd0cff508eb4729e95ebad93", "testharness" - ], + ], "bluetooth/getCharacteristic/device-goes-out-of-range.html": [ - "ff3e01fc13b920efd4c34a5dba3f783c5815901a", + "ff3e01fc13b920efd4c34a5dba3f783c5815901a", "testharness" - ], + ], "bluetooth/getCharacteristic/disconnect-called-before.html": [ - "78d744ccc12dd82accbb777fb5b83a84772d2a81", + "78d744ccc12dd82accbb777fb5b83a84772d2a81", "testharness" - ], + ], "bluetooth/getCharacteristic/disconnect-called-during.html": [ - "2138af95a6adf5bface296e2ac890067d731f1fc", + "2138af95a6adf5bface296e2ac890067d731f1fc", "testharness" - ], + ], "bluetooth/getCharacteristic/disconnect-invalidates-object.html": [ - "aceedac5a50d0c50fc9bfe5bd7c168fb41d6ce95", + "aceedac5a50d0c50fc9bfe5bd7c168fb41d6ce95", "testharness" - ], + ], "bluetooth/getCharacteristic/get-different-characteristic-after-reconnection.html": [ - "ea12517484392bfd44f7b393991b62f3005dc0c8", + "ea12517484392bfd44f7b393991b62f3005dc0c8", "testharness" - ], + ], "bluetooth/getCharacteristic/get-same-characteristic.html": [ - "6395753ac64762e51054cb337cab4286e42ca36c", + "6395753ac64762e51054cb337cab4286e42ca36c", "testharness" - ], + ], "bluetooth/getCharacteristic/invalid-characteristic-name.html": [ - "7ccecfe181ebb70550974254ed0bbc9395839c7e", + "7ccecfe181ebb70550974254ed0bbc9395839c7e", "testharness" - ], + ], "bluetooth/getCharacteristic/reconnect-during.html": [ - "17380f495198ee15cc11c60dd8cc561cfb8c4b79", + "17380f495198ee15cc11c60dd8cc561cfb8c4b79", "testharness" - ], + ], "bluetooth/getCharacteristic/service-is-removed.html": [ - "125c96855d2c5784932794d95365f5e5bcb6c205", + "125c96855d2c5784932794d95365f5e5bcb6c205", "testharness" - ], + ], "bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html": [ - "f6e6122db5a69a9aae4563b29870075b915864e1", + "f6e6122db5a69a9aae4563b29870075b915864e1", "testharness" - ], + ], "bluetooth/getCharacteristics/blocklisted-characteristics.html": [ - "29fe51b6ac06ec4ae727f5afb444f006db5daae8", + "29fe51b6ac06ec4ae727f5afb444f006db5daae8", "testharness" - ], + ], "bluetooth/getCharacteristics/characteristics-found-with-uuid.html": [ - "eadb7960cd1f3a87d83828991a5e4bcc08846d8c", + "eadb7960cd1f3a87d83828991a5e4bcc08846d8c", "testharness" - ], + ], "bluetooth/getCharacteristics/characteristics-found.html": [ - "2669e4423456123d68edfbca0a5b4c13e4aeab85", + "2669e4423456123d68edfbca0a5b4c13e4aeab85", "testharness" - ], + ], "bluetooth/getCharacteristics/characteristics-not-found-with-uuid.html": [ - "777202ec4f80fbfe167fc9eefb26605898ac8a82", + "777202ec4f80fbfe167fc9eefb26605898ac8a82", "testharness" - ], + ], "bluetooth/getCharacteristics/characteristics-not-found.html": [ - "73dc6946e37e8b936c82efae0c600a900ef9aa4e", + "73dc6946e37e8b936c82efae0c600a900ef9aa4e", "testharness" - ], + ], "bluetooth/getCharacteristics/correct-characteristics.html": [ - "c1b8e39c5991792949b69aefcc565f2520bedc90", + "c1b8e39c5991792949b69aefcc565f2520bedc90", "testharness" - ], + ], "bluetooth/getCharacteristics/device-goes-out-of-range-with-uuid.html": [ - "7cd657423e715adbfdcc2769cc8bb48b0c5d8d35", + "7cd657423e715adbfdcc2769cc8bb48b0c5d8d35", "testharness" - ], + ], "bluetooth/getCharacteristics/device-goes-out-of-range.html": [ - "64cd88c116461b48dad19bcfe2e8f8aace21d7cb", + "64cd88c116461b48dad19bcfe2e8f8aace21d7cb", "testharness" - ], + ], "bluetooth/getCharacteristics/disconnect-called-before-with-uuid.html": [ - "27c2c9ee74873611547327e8224e9659ae9e8bab", + "27c2c9ee74873611547327e8224e9659ae9e8bab", "testharness" - ], + ], "bluetooth/getCharacteristics/disconnect-called-before.html": [ - "4d5b4ad7ec852f1ee6940bb84a0d8ad588520185", + "4d5b4ad7ec852f1ee6940bb84a0d8ad588520185", "testharness" - ], + ], "bluetooth/getCharacteristics/disconnect-called-during-with-uuid.html": [ - "0b6a91bfbcfdb7bbcc041315ce306eb8eeb9e4c4", + "0b6a91bfbcfdb7bbcc041315ce306eb8eeb9e4c4", "testharness" - ], + ], "bluetooth/getCharacteristics/disconnect-called-during.html": [ - "83c1d46900bbcf519380cf816cc8b78bb35cab9b", + "83c1d46900bbcf519380cf816cc8b78bb35cab9b", "testharness" - ], + ], "bluetooth/getCharacteristics/disconnect-invalidates-objects.html": [ - "a80ab4bbb878d127205a81c907338db3429ea14b", + "a80ab4bbb878d127205a81c907338db3429ea14b", "testharness" - ], + ], "bluetooth/getCharacteristics/get-different-characteristics-after-reconnection.html": [ - "12a84b521df1a83827721323ff528aa1608fa4ee", + "12a84b521df1a83827721323ff528aa1608fa4ee", "testharness" - ], + ], "bluetooth/getCharacteristics/get-same-characteristics.html": [ - "f16d46298b718e643d2aeefcf112883b213c754a", + "f16d46298b718e643d2aeefcf112883b213c754a", "testharness" - ], + ], "bluetooth/getCharacteristics/invalid-characteristic-name.html": [ - "4f5bdfc0e181b8e8c36b1929cb1d31951bc53ca6", + "4f5bdfc0e181b8e8c36b1929cb1d31951bc53ca6", "testharness" - ], + ], "bluetooth/getCharacteristics/service-is-removed-with-uuid.html": [ - "fb1c95a71e2d0bb8ec232abd6618f3630e121fe2", + "fb1c95a71e2d0bb8ec232abd6618f3630e121fe2", "testharness" - ], + ], "bluetooth/getCharacteristics/service-is-removed.html": [ - "71ee3a18d3aa19ae189c38b5c6877f6d8c843b44", + "71ee3a18d3aa19ae189c38b5c6877f6d8c843b44", "testharness" - ], + ], "bluetooth/getDescriptor/blocklisted-descriptor.html": [ - "03478b396e5df68905c34a66c1b6268663c2400b", + "03478b396e5df68905c34a66c1b6268663c2400b", "testharness" - ], + ], "bluetooth/getDescriptor/characteristic-is-removed.html": [ - "8dfb9ed8fedd2887deb605daf35d018c59b4a780", + "8dfb9ed8fedd2887deb605daf35d018c59b4a780", "testharness" - ], + ], "bluetooth/getDescriptor/descriptor-found.html": [ - "d53f9324d9a3fc848bae3ec164196834d772f79a", + "d53f9324d9a3fc848bae3ec164196834d772f79a", "testharness" - ], + ], "bluetooth/getDescriptor/descriptor-not-found.html": [ - "2547b8a8063fa5109a0bf09e3953d6f87b8cfed9", + "2547b8a8063fa5109a0bf09e3953d6f87b8cfed9", "testharness" - ], + ], "bluetooth/getDescriptor/device-goes-out-of-range.html": [ - "5fbc947d6b8449645c3c8f0608ce83650a05526e", + "5fbc947d6b8449645c3c8f0608ce83650a05526e", "testharness" - ], + ], "bluetooth/getDescriptor/disconnect-called-before.html": [ - "561d066c6c5ac1f35dce613ddea1278e6733d7cf", + "561d066c6c5ac1f35dce613ddea1278e6733d7cf", "testharness" - ], + ], "bluetooth/getDescriptor/disconnect-called-during.html": [ - "647a61960b1c2ccd7858577701da54802f582d66", + "647a61960b1c2ccd7858577701da54802f582d66", "testharness" - ], + ], "bluetooth/getDescriptor/disconnect-invalidates-object.html": [ - "7d7fb2096661d6f17379cda1ed3a377b0eabfa25", + "7d7fb2096661d6f17379cda1ed3a377b0eabfa25", "testharness" - ], + ], "bluetooth/getDescriptor/get-different-descriptor-after-reconnection.html": [ - "fc7398daf14323031d68662f6b4c27285a4dd710", + "fc7398daf14323031d68662f6b4c27285a4dd710", "testharness" - ], + ], "bluetooth/getDescriptor/get-same-descriptor.html": [ - "c00c54a78d79b90dff4ecce22961515553a44665", + "c00c54a78d79b90dff4ecce22961515553a44665", "testharness" - ], + ], "bluetooth/getDescriptor/invalid-descriptor-name.html": [ - "daf5085c8499e882e9d66a3b61728556d75c5a0b", + "daf5085c8499e882e9d66a3b61728556d75c5a0b", "testharness" - ], + ], "bluetooth/getDescriptors/blocklisted-descriptors-with-uuid.html": [ - "dc79f6117f178ae288025d9861c2caa2a0b3b054", + "dc79f6117f178ae288025d9861c2caa2a0b3b054", "testharness" - ], + ], "bluetooth/getDescriptors/blocklisted-descriptors.html": [ - "b9547795c96479b0bf526ebb7d40a06c4a5bd777", + "b9547795c96479b0bf526ebb7d40a06c4a5bd777", "testharness" - ], + ], "bluetooth/getDescriptors/characteristic-is-removed-with-uuid.html": [ - "9c941681b510d2552a0369896c556bb4ed664d72", + "9c941681b510d2552a0369896c556bb4ed664d72", "testharness" - ], + ], "bluetooth/getDescriptors/characteristic-is-removed.html": [ - "00c0dc9b3a088acf05812dec2cb1b84cd4ad9841", + "00c0dc9b3a088acf05812dec2cb1b84cd4ad9841", "testharness" - ], + ], "bluetooth/getDescriptors/correct-descriptors.html": [ - "92d1fecfab24adeb15285388ade284c797844d61", + "92d1fecfab24adeb15285388ade284c797844d61", "testharness" - ], + ], "bluetooth/getDescriptors/descriptors-found-with-uuid.html": [ - "813603d308f1af78b73723a79e2fd11f8d1037a3", + "813603d308f1af78b73723a79e2fd11f8d1037a3", "testharness" - ], + ], "bluetooth/getDescriptors/descriptors-found.html": [ - "2bd9b7f44493b7b37af5910349e3c8d79133dd5a", + "2bd9b7f44493b7b37af5910349e3c8d79133dd5a", "testharness" - ], + ], "bluetooth/getDescriptors/descriptors-not-found-with-uuid.html": [ - "5597854b9024bf297bdc15547c0707ff5c6ec3a8", + "5597854b9024bf297bdc15547c0707ff5c6ec3a8", "testharness" - ], + ], "bluetooth/getDescriptors/descriptors-not-found.html": [ - "81a2b9e0f2eaa332d657c8c8894c8c14d749be52", + "81a2b9e0f2eaa332d657c8c8894c8c14d749be52", "testharness" - ], + ], "bluetooth/getDescriptors/device-goes-out-of-range-with-uuid.html": [ - "1d66b23b494f3469081facadf741b56f1446729a", + "1d66b23b494f3469081facadf741b56f1446729a", "testharness" - ], + ], "bluetooth/getDescriptors/device-goes-out-of-range.html": [ - "aeeda110349367eda3fe21bb9df8e6ede6a8b2df", + "aeeda110349367eda3fe21bb9df8e6ede6a8b2df", "testharness" - ], + ], "bluetooth/getDescriptors/disconnect-called-before-with-uuid.html": [ - "e5ec70f1aa4bc62c86dfc4ff482d6c2d86dabd77", + "e5ec70f1aa4bc62c86dfc4ff482d6c2d86dabd77", "testharness" - ], + ], "bluetooth/getDescriptors/disconnect-called-before.html": [ - "2b82aeb7018a3350aa4a4aecb57dd19c9681dc50", + "2b82aeb7018a3350aa4a4aecb57dd19c9681dc50", "testharness" - ], + ], "bluetooth/getDescriptors/disconnect-called-during-with-uuid.html": [ - "0bd5677bca783f6471197dbb1defc31da9f354fc", + "0bd5677bca783f6471197dbb1defc31da9f354fc", "testharness" - ], + ], "bluetooth/getDescriptors/disconnect-called-during.html": [ - "63c9b20eb423afd85de24f3fdfe4153caa77838e", + "63c9b20eb423afd85de24f3fdfe4153caa77838e", "testharness" - ], + ], "bluetooth/getDescriptors/disconnect-invalidates-objects.html": [ - "0cd9675758b69b3ea9e76a36f2defe31fd397c69", + "0cd9675758b69b3ea9e76a36f2defe31fd397c69", "testharness" - ], + ], "bluetooth/getDescriptors/get-different-descriptors-after-reconnection.html": [ - "cbdd3949eb1704e2d1139e2bc653907da892a16d", + "cbdd3949eb1704e2d1139e2bc653907da892a16d", "testharness" - ], + ], "bluetooth/getDescriptors/get-same-descriptors.html": [ - "5390cce73e49e55d49f428785b0f63930290b198", + "5390cce73e49e55d49f428785b0f63930290b198", "testharness" - ], + ], "bluetooth/getDescriptors/invalid-descriptor-name.html": [ - "3a90d51c8e7b09034640edf88c8803c17868a3be", + "3a90d51c8e7b09034640edf88c8803c17868a3be", "testharness" - ], + ], "bluetooth/getPrimaryService/device-goes-out-of-range.html": [ - "b5727d7d2c6ca8e127cb56e6d6a9e12de414256f", + "b5727d7d2c6ca8e127cb56e6d6a9e12de414256f", "testharness" - ], + ], "bluetooth/getPrimaryService/disconnect-called-before.html": [ - "75fdefb573bece24b9bc6ca57eda88e048048499", + "75fdefb573bece24b9bc6ca57eda88e048048499", "testharness" - ], + ], "bluetooth/getPrimaryService/disconnect-called-during.html": [ - "4c5de5ec56768f11cf5694e48dd7d7289863c558", + "4c5de5ec56768f11cf5694e48dd7d7289863c558", "testharness" - ], + ], "bluetooth/getPrimaryService/disconnect-invalidates-object.html": [ - "e5914b9357573b4904eb4401b5776ed290344a88", + "e5914b9357573b4904eb4401b5776ed290344a88", "testharness" - ], + ], "bluetooth/getPrimaryService/disconnected-device.html": [ - "15791a329b441a50405b547a8b93e153861a32e5", + "15791a329b441a50405b547a8b93e153861a32e5", "testharness" - ], + ], "bluetooth/getPrimaryService/get-different-service-after-reconnection.html": [ - "3b358c37d081113e25626078f2b31a4e1634f634", + "3b358c37d081113e25626078f2b31a4e1634f634", "testharness" - ], + ], "bluetooth/getPrimaryService/get-same-service.html": [ - "a7bdb40b0b76c5ea742ec0d1ff3aa156579c7d7b", + "a7bdb40b0b76c5ea742ec0d1ff3aa156579c7d7b", "testharness" - ], + ], "bluetooth/getPrimaryService/invalid-service-name.html": [ - "479747c7aab9ccd919a81cc106d5a108a402dc89", + "479747c7aab9ccd919a81cc106d5a108a402dc89", "testharness" - ], + ], "bluetooth/getPrimaryService/no-permission-absent-service.html": [ - "22b7d47755f3a55e764434e77fc184c73f6dafcf", + "22b7d47755f3a55e764434e77fc184c73f6dafcf", "testharness" - ], + ], "bluetooth/getPrimaryService/no-permission-present-service.html": [ - "3aff9b9798bb517487afc34c84ff26e81ebaeaae", + "3aff9b9798bb517487afc34c84ff26e81ebaeaae", "testharness" - ], + ], "bluetooth/getPrimaryService/service-found.html": [ - "c082c2a8ecb90f8eb8cb1700ef9263784eec3402", + "c082c2a8ecb90f8eb8cb1700ef9263784eec3402", "testharness" - ], + ], "bluetooth/getPrimaryService/service-not-found.html": [ - "4ee55337813b157182cef54fab55e999cc1b971f", + "4ee55337813b157182cef54fab55e999cc1b971f", "testharness" - ], + ], "bluetooth/getPrimaryServices/blocklisted-services-with-uuid.html": [ - "36a6c968519b7acc0637750c85b61a84b3895988", + "36a6c968519b7acc0637750c85b61a84b3895988", "testharness" - ], + ], "bluetooth/getPrimaryServices/blocklisted-services.html": [ - "16e08f15cd0b91e6d710401c8de762ebe2921791", + "16e08f15cd0b91e6d710401c8de762ebe2921791", "testharness" - ], + ], "bluetooth/getPrimaryServices/correct-services.html": [ - "55e2a1b1ad7b7cdcf277f7287bcbfaf91b182426", + "55e2a1b1ad7b7cdcf277f7287bcbfaf91b182426", "testharness" - ], + ], "bluetooth/getPrimaryServices/device-goes-out-of-range-with-uuid.html": [ - "da7663e911d8d8dd0e757474587ed9e062bf0cc5", + "da7663e911d8d8dd0e757474587ed9e062bf0cc5", "testharness" - ], + ], "bluetooth/getPrimaryServices/device-goes-out-of-range.html": [ - "d507d7364de625909d703ec10e1a736aa0316d6a", + "d507d7364de625909d703ec10e1a736aa0316d6a", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnect-called-before-with-uuid.html": [ - "688b879685f16a5d8ab5867b6a34ffda0af32793", + "688b879685f16a5d8ab5867b6a34ffda0af32793", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnect-called-before.html": [ - "972ab89d2e2d4f2389b33d63afd710c6a4bd5993", + "972ab89d2e2d4f2389b33d63afd710c6a4bd5993", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnect-called-during-with-uuid.html": [ - "fd69a0a641863412a7b40f5aba7bcaf753af81ba", + "fd69a0a641863412a7b40f5aba7bcaf753af81ba", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnect-called-during.html": [ - "3fd0326d1a3f219769874b7805e16e691b0a2292", + "3fd0326d1a3f219769874b7805e16e691b0a2292", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnect-invalidates-objects.html": [ - "e505e561de25fd7b17afae0e134e3d242d7c80b6", + "e505e561de25fd7b17afae0e134e3d242d7c80b6", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnected-device-with-uuid.html": [ - "891c8067d98cf628d5f9c80a5e5560c5d12e7610", + "891c8067d98cf628d5f9c80a5e5560c5d12e7610", "testharness" - ], + ], "bluetooth/getPrimaryServices/disconnected-device.html": [ - "4e5f9422f3754dd7533b35ab2c35cac78fc235e1", + "4e5f9422f3754dd7533b35ab2c35cac78fc235e1", "testharness" - ], + ], "bluetooth/getPrimaryServices/get-different-services-after-reconnection.html": [ - "91e71efa5cbe7533257b8f91787575d8dffd8bb4", + "91e71efa5cbe7533257b8f91787575d8dffd8bb4", "testharness" - ], + ], "bluetooth/getPrimaryServices/get-same-service-with-uuid.html": [ - "8d57933b16c0634d9c5c09d57fd86ad365a794b0", + "8d57933b16c0634d9c5c09d57fd86ad365a794b0", "testharness" - ], + ], "bluetooth/getPrimaryServices/get-same-service.html": [ - "d5e19abdddcf6f933be7eafb12887028d94d3b57", + "d5e19abdddcf6f933be7eafb12887028d94d3b57", "testharness" - ], + ], "bluetooth/getPrimaryServices/invalid-service-name.html": [ - "5cc3ac8a49a2296986012a7468656cb27ebeb79e", + "5cc3ac8a49a2296986012a7468656cb27ebeb79e", "testharness" - ], + ], "bluetooth/getPrimaryServices/no-permission-absent-service-with-uuid.html": [ - "7b40c1a88a755d0689b288b20aa54ba64ac18e3a", + "7b40c1a88a755d0689b288b20aa54ba64ac18e3a", "testharness" - ], + ], "bluetooth/getPrimaryServices/no-permission-present-service-with-uuid.html": [ - "ebfdac1efe5adc6d50e3971fa23a87b8c37e3434", + "ebfdac1efe5adc6d50e3971fa23a87b8c37e3434", "testharness" - ], + ], "bluetooth/getPrimaryServices/no-permission-present-service.html": [ - "d2f3f139e4a4ebe1154d10c98c5da2e4110518fc", + "d2f3f139e4a4ebe1154d10c98c5da2e4110518fc", "testharness" - ], + ], "bluetooth/getPrimaryServices/services-found-with-uuid.html": [ - "3f36b8bfef77a92ce74d68c048c4d3abe756fe39", + "3f36b8bfef77a92ce74d68c048c4d3abe756fe39", "testharness" - ], + ], "bluetooth/getPrimaryServices/services-found.html": [ - "3a61b00d0c115879d5743243a199ae92f048e206", + "3a61b00d0c115879d5743243a199ae92f048e206", "testharness" - ], + ], "bluetooth/getPrimaryServices/services-not-found-with-uuid.html": [ - "dab32a538bb839b223baf05a71cae64f8224ddc4", + "dab32a538bb839b223baf05a71cae64f8224ddc4", "testharness" - ], + ], "bluetooth/getPrimaryServices/services-not-found.html": [ - "23492bcaed9c8877777aea74e4189f7817cd71df", + "23492bcaed9c8877777aea74e4189f7817cd71df", "testharness" - ], + ], "bluetooth/idl-BluetoothUUID.html": [ - "27f8f846384687e2b7453f80f7ae325b14233d93", + "27f8f846384687e2b7453f80f7ae325b14233d93", "testharness" - ], + ], "bluetooth/interfaces.html": [ - "2aece858f4fe72430162f2716537a1cf7c62e306", + "2aece858f4fe72430162f2716537a1cf7c62e306", "testharness" - ], + ], "bluetooth/readValue/characteristic/blocklisted-characteristic.html": [ - "6088bbac63a1a8b1e23d88112ef85b001f011818", + "6088bbac63a1a8b1e23d88112ef85b001f011818", "testharness" - ], + ], "bluetooth/readValue/characteristic/characteristic-is-removed.html": [ - "f4c16516cbf69bdd87aebc3522480c8b95db71c6", + "f4c16516cbf69bdd87aebc3522480c8b95db71c6", "testharness" - ], + ], "bluetooth/readValue/characteristic/device-goes-out-of-range.html": [ - "1eb38ea7f48986c8ecf82857940bfdd67be8abb2", + "1eb38ea7f48986c8ecf82857940bfdd67be8abb2", "testharness" - ], + ], "bluetooth/readValue/characteristic/disconnect-called-before.html": [ - "560f83a762eebb4c1258c166743b8244fd7a9950", + "560f83a762eebb4c1258c166743b8244fd7a9950", "testharness" - ], + ], "bluetooth/readValue/characteristic/disconnect-called-during.html": [ - "52521969a1bece7a17e1480aded33a3c0d61e7c4", + "52521969a1bece7a17e1480aded33a3c0d61e7c4", "testharness" - ], + ], "bluetooth/readValue/characteristic/event-is-fired.html": [ - "6005a9609f2a24c13f541755a523d5be916b8827", + "6005a9609f2a24c13f541755a523d5be916b8827", "testharness" - ], + ], "bluetooth/readValue/characteristic/read-succeeds.html": [ - "e6c136e9564fce4736353e4e42f09a660e0756ae", + "e6c136e9564fce4736353e4e42f09a660e0756ae", "testharness" - ], + ], "bluetooth/readValue/characteristic/read-updates-value.html": [ - "e389210bcec4644cb4ed1108053241dad3557412", + "e389210bcec4644cb4ed1108053241dad3557412", "testharness" - ], + ], "bluetooth/readValue/characteristic/service-is-removed.html": [ - "ab968427360fa9a1f5fc5f55feb4830319690ecd", + "ab968427360fa9a1f5fc5f55feb4830319690ecd", "testharness" - ], + ], "bluetooth/readValue/descriptor/blocklisted-descriptor.html": [ - "a570eb0f318e05309fc2d984eb250383cb6396c1", + "a570eb0f318e05309fc2d984eb250383cb6396c1", "testharness" - ], + ], "bluetooth/readValue/descriptor/characteristic-is-removed.html": [ - "b6efe288f8936e0bc6c1ce1198d4738a3feeb7d5", + "b6efe288f8936e0bc6c1ce1198d4738a3feeb7d5", "testharness" - ], + ], "bluetooth/readValue/descriptor/descriptor-is-removed.html": [ - "9891d9aa7ae601f0fb1f55560faf80b0f7d7ec1f", + "9891d9aa7ae601f0fb1f55560faf80b0f7d7ec1f", "testharness" - ], + ], "bluetooth/readValue/descriptor/device-goes-out-of-range.html": [ - "23ecadc835440cd31d2090e82efb0251918275fb", + "23ecadc835440cd31d2090e82efb0251918275fb", "testharness" - ], + ], "bluetooth/readValue/descriptor/disconnect-called-before.html": [ - "e09ceae12cac6ef0c77de3023a37c5a0571d7869", + "e09ceae12cac6ef0c77de3023a37c5a0571d7869", "testharness" - ], + ], "bluetooth/readValue/descriptor/read-succeeds.html": [ - "1bb43cbdc0a6dd9a440f97dd4a0111ba67a4bc00", + "1bb43cbdc0a6dd9a440f97dd4a0111ba67a4bc00", "testharness" - ], + ], "bluetooth/readValue/descriptor/read-updates-value.html": [ - "7499b10713d3f6a8da37e1efb454a0dace95357d", + "7499b10713d3f6a8da37e1efb454a0dace95357d", "testharness" - ], + ], "bluetooth/readValue/descriptor/service-is-removed.html": [ - "4cd7130dad20891986f057a1e4217b5f152003d1", + "4cd7130dad20891986f057a1e4217b5f152003d1", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/accept-all-devices-with-filter.html": [ - "b9c9b3563721c6e2620b148e419ae4130f692438", + "b9c9b3563721c6e2620b148e419ae4130f692438", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/accept-all-devices.html": [ - "f07b209d7a633dc137ce30a138a916f5d58c8ec5", + "f07b209d7a633dc137ce30a138a916f5d58c8ec5", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.html": [ - "3b392ffa68488e8ce950064b4d9762737b5b1ef6", + "3b392ffa68488e8ce950064b4d9762737b5b1ef6", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-name.html": [ - "d00138cd1f6b826cc76e4585fb88deeaa44e645f", + "d00138cd1f6b826cc76e4585fb88deeaa44e645f", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html": [ - "e9cf085104a9dcdec3d5d76338f51e2166447df5", + "e9cf085104a9dcdec3d5d76338f51e2166447df5", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html": [ - "87a05bcf6b114f282013e9fcfbfcc6946a7cfc9d", + "87a05bcf6b114f282013e9fcfbfcc6946a7cfc9d", "testharness" - ], + ], "bluetooth/requestDevice/acceptAllDevices/optional-services-present.html": [ - "43283ceee6bbb591bf5b979ab292407d01c8a273", + "43283ceee6bbb591bf5b979ab292407d01c8a273", "testharness" - ], + ], "bluetooth/requestDevice/adapter-not-present.html": [ - "d793d5c650577dc7b593a284bc5e226772566c76", + "d793d5c650577dc7b593a284bc5e226772566c76", "testharness" - ], + ], "bluetooth/requestDevice/adapter-off.html": [ - "d3760c94f58c1b30aaa5ab0f6c59d69d0a2f3377", + "d3760c94f58c1b30aaa5ab0f6c59d69d0a2f3377", "testharness" - ], + ], "bluetooth/requestDevice/blocklisted-service-in-filter.html": [ - "e9fdc7f4f34ac5c42c0c8d061aa24b85b5f1db30", + "e9fdc7f4f34ac5c42c0c8d061aa24b85b5f1db30", "testharness" - ], + ], "bluetooth/requestDevice/blocklisted-service-in-optionalServices.html": [ - "1477eeed6b77577979a1d6b4831e2686dd06891f", + "1477eeed6b77577979a1d6b4831e2686dd06891f", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/blocklisted-service-data-key.html": [ - "611586b68aca2c3ce6a4d6d53c705a17244bcd51", + "611586b68aca2c3ce6a4d6d53c705a17244bcd51", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-filter.html": [ - "b33a88858a61a669ef6948973c367f2317c1c84f", + "b33a88858a61a669ef6948973c367f2317c1c84f", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-filters-member.html": [ - "b07ec1df543ece7a0ddc545e4c08134c2e01d3fe", + "b07ec1df543ece7a0ddc545e4c08134c2e01d3fe", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-namePrefix.html": [ - "dc29d161ca2e18e2a9e728809a34ce0790625c72", + "dc29d161ca2e18e2a9e728809a34ce0790625c72", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/empty-services-member.html": [ - "92eafc0fbe45491b22545df73f8b3b1a5f4de019", + "92eafc0fbe45491b22545df73f8b3b1a5f4de019", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.html": [ - "a362d28a6c9150b8bbfab2710928a0218cf65db4", + "a362d28a6c9150b8bbfab2710928a0218cf65db4", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-name.html": [ - "0cdf10470f3ae1e8dbb94ea41278f3a54e0da214", + "0cdf10470f3ae1e8dbb94ea41278f3a54e0da214", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/max-length-for-device-name-namePrefix.html": [ - "17c843627aa456b3d7c4a2d204d6072138ec925b", + "17c843627aa456b3d7c4a2d204d6072138ec925b", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/no-arguments.html": [ - "ddc8472f3d07258bb496668b37588aed33693c2f", + "ddc8472f3d07258bb496668b37588aed33693c2f", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/no-filters-member.html": [ - "a06034f1f1a98a5ba4fafeac39feb2d5a1c84a49", + "a06034f1f1a98a5ba4fafeac39feb2d5a1c84a49", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-name.html": [ - "e6ca7e1c36a778605f92a36fa8243911f5d1e9ba", + "e6ca7e1c36a778605f92a36fa8243911f5d1e9ba", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-max-length-for-device-name-namePrefix.html": [ - "7f1357fcf967b9e80a864c8d916452fb00b00dd4", + "7f1357fcf967b9e80a864c8d916452fb00b00dd4", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-name.html": [ - "2ae6027d0dfe4693d5bb843dc7ad33d845b6f3bc", + "2ae6027d0dfe4693d5bb843dc7ad33d845b6f3bc", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/unicode-valid-length-name-namePrefix.html": [ - "2df54e64d470d1ae8135f63b3717d97ff2394cbd", + "2df54e64d470d1ae8135f63b3717d97ff2394cbd", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-manufacturer-data-key.html": [ - "87cf9d9ab5d52080fead4ffd19846c22f09216c3", + "87cf9d9ab5d52080fead4ffd19846c22f09216c3", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-mask-length.html": [ - "9370fa06092086bd15a3668d1584e6acccae7ce4", + "9370fa06092086bd15a3668d1584e6acccae7ce4", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-data-key.html": [ - "39560d182fff6a681a44e10e0fe4b0e28e29cdab", + "39560d182fff6a681a44e10e0fe4b0e28e29cdab", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-optionalServices-member.html": [ - "ac0a188f17c24b4e692fc746a9fffa53ae07515e", + "ac0a188f17c24b4e692fc746a9fffa53ae07515e", "testharness" - ], + ], "bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-services-member.html": [ - "6cb98aab75991bd3137102cfc615f342cda6cb52", + "6cb98aab75991bd3137102cfc615f342cda6cb52", "testharness" - ], + ], "bluetooth/requestDevice/device-found-using-mask.html": [ - "a58670b1d6908f8140a21300872f0ecc22f3353a", + "a58670b1d6908f8140a21300872f0ecc22f3353a", "testharness" - ], + ], "bluetooth/requestDevice/device-found-with-key-and-value.html": [ - "d6eaee35bbbc48d08ca633062bcaed9a4c73293f", + "d6eaee35bbbc48d08ca633062bcaed9a4c73293f", "testharness" - ], + ], "bluetooth/requestDevice/device-found-with-key-only.html": [ - "30da8d71a52d4839f2960952a56d0dfd6650fbe9", + "30da8d71a52d4839f2960952a56d0dfd6650fbe9", "testharness" - ], + ], "bluetooth/requestDevice/device-found-with-service-and-manufacturer-data.html": [ - "c14bd2512093ac471173df9b84f2c2516cca69ab", + "c14bd2512093ac471173df9b84f2c2516cca69ab", "testharness" - ], + ], "bluetooth/requestDevice/device-not-found-with-extra-data.html": [ - "da121693728314d516e11e42f1d333b638987b33", + "da121693728314d516e11e42f1d333b638987b33", "testharness" - ], + ], "bluetooth/requestDevice/device-not-found-with-service-and-manufacturer-data.html": [ - "783af132f4d0dbae1b6f53741c00bbf6964e7b19", + "783af132f4d0dbae1b6f53741c00bbf6964e7b19", "testharness" - ], + ], "bluetooth/requestDevice/discovery-succeeds.html": [ - "5a9ba6a333e0852aea73a2c92f405ed2bf34f400", + "5a9ba6a333e0852aea73a2c92f405ed2bf34f400", "testharness" - ], + ], "bluetooth/requestDevice/filter-does-not-match.html": [ - "fd3a4ffe9c2f5b97f8f7f8603abc84a603fcbaae", + "fd3a4ffe9c2f5b97f8f7f8603abc84a603fcbaae", "testharness" - ], + ], "bluetooth/requestDevice/filter-matches.html": [ - "4fe44bc4c618dfd28245cfb686eff24f43c2977d", + "4fe44bc4c618dfd28245cfb686eff24f43c2977d", "testharness" - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-empty-filter.html": [ - "382eeb4be2907a4e6122bd2af8c8495821bda31b", + "382eeb4be2907a4e6122bd2af8c8495821bda31b", "testharness" - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-prefix-filter.html": [ - "0dbd1c735eb9bfeeedb4a49fdf1bdd0058eaf207", + "0dbd1c735eb9bfeeedb4a49fdf1bdd0058eaf207", "testharness" - ], + ], "bluetooth/requestDevice/name-empty-device-from-name-wrong-filter.html": [ - "e411f819c23def4d4cebaf7631c171e56b0011cf", + "e411f819c23def4d4cebaf7631c171e56b0011cf", "testharness" - ], + ], "bluetooth/requestDevice/name-empty-device-from-service-filter.html": [ - "38fc881f6bb35915e13d4cc968a05d126812c1aa", + "38fc881f6bb35915e13d4cc968a05d126812c1aa", "testharness" - ], + ], "bluetooth/requestDevice/name-empty-filter.html": [ - "138f03bc68c28a8294deb18ecb886ee6a9f53c4c", + "138f03bc68c28a8294deb18ecb886ee6a9f53c4c", "testharness" - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-empty-filter.html": [ - "d01dedfa52dcde8a3dafb2e767ce6ab5bd6caa9a", + "d01dedfa52dcde8a3dafb2e767ce6ab5bd6caa9a", "testharness" - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-prefix-filter.html": [ - "2e3f2ac2946596df3591cb5f5c335adb9205cc7d", + "2e3f2ac2946596df3591cb5f5c335adb9205cc7d", "testharness" - ], + ], "bluetooth/requestDevice/name-missing-device-from-name-wrong-filter.html": [ - "5742f95f699b607b4d676608afa0eb07238e3a0e", + "5742f95f699b607b4d676608afa0eb07238e3a0e", "testharness" - ], + ], "bluetooth/requestDevice/name-missing-device-from-service-filter.html": [ - "2752443d2e8ce3643bfce79d0ee680e3c68b21e1", + "2752443d2e8ce3643bfce79d0ee680e3c68b21e1", "testharness" - ], + ], "bluetooth/requestDevice/no-devices.html": [ - "5e516ad540a0dc8c61bcc1823953a0aa6b8d8762", + "5e516ad540a0dc8c61bcc1823953a0aa6b8d8762", "testharness" - ], + ], "bluetooth/requestDevice/not-accept-all-devices-without-filter.html": [ - "bd9afe40d74ec151674f8ef6680208e09f8f72e4", + "bd9afe40d74ec151674f8ef6680208e09f8f72e4", "testharness" - ], + ], "bluetooth/requestDevice/same-device.html": [ - "315fab45200500e667c2aa03991882d19e7e7311", + "315fab45200500e667c2aa03991882d19e7e7311", "testharness" - ], + ], "bluetooth/requestDevice/single-filter-single-service.html": [ - "1f460561ac379d5dd16a5d6ca1999d4ffe12d71a", + "1f460561ac379d5dd16a5d6ca1999d4ffe12d71a", "testharness" - ], + ], "bluetooth/requestDevice/single-filter-two-services-fails.html": [ - "0c4dbb5f58ef9d11cb1baa4947e974632188cb6f", + "0c4dbb5f58ef9d11cb1baa4947e974632188cb6f", "testharness" - ], + ], "bluetooth/requestDevice/single-filter-two-services-succeeds.html": [ - "1685e48cbca787dc941591ab8315bc7d9b9e9f43", + "1685e48cbca787dc941591ab8315bc7d9b9e9f43", "testharness" - ], + ], "bluetooth/requestDevice/two-filters.html": [ - "fb61be8327b6c182872abb77ce805ea8b11135a0", + "fb61be8327b6c182872abb77ce805ea8b11135a0", "testharness" - ], + ], "bluetooth/startNotifications/blocklisted-characteristic.html": [ - "45e0df32ae786ba8586ea7020de8c56004d68082", + "45e0df32ae786ba8586ea7020de8c56004d68082", "testharness" - ], + ], "bluetooth/startNotifications/characteristic-does-not-support-notifications.html": [ - "1d51de07198f6a68f4f634138f7cb1c5a9b66968", + "1d51de07198f6a68f4f634138f7cb1c5a9b66968", "testharness" - ], + ], "bluetooth/startNotifications/characteristic-is-removed.html": [ - "93ea254a1abc9582fda36b51d764aa7485822873", + "93ea254a1abc9582fda36b51d764aa7485822873", "testharness" - ], + ], "bluetooth/startNotifications/device-goes-out-of-range.html": [ - "cdbfbb1f865f451fddfa08d6bef246fe44c1a23c", + "cdbfbb1f865f451fddfa08d6bef246fe44c1a23c", "testharness" - ], + ], "bluetooth/startNotifications/disconnect-called-before.html": [ - "ec580fc1964fcf000d5cdeb3c3eb7c042b55ea3f", + "ec580fc1964fcf000d5cdeb3c3eb7c042b55ea3f", "testharness" - ], + ], "bluetooth/startNotifications/disconnect-called-during.html": [ - "f0f4cbb1642712b347a41d14ec9cdb8349289fd3", + "f0f4cbb1642712b347a41d14ec9cdb8349289fd3", "testharness" - ], + ], "bluetooth/startNotifications/notify-failure.html": [ - "19f411ee95926e1ab15fef5c27757f7fea5ce000", + "19f411ee95926e1ab15fef5c27757f7fea5ce000", "testharness" - ], + ], "bluetooth/startNotifications/notify-succeeds.html": [ - "1b112203f873b0a906ae431a5afdf6cd21e9bd74", + "1b112203f873b0a906ae431a5afdf6cd21e9bd74", "testharness" - ], + ], "bluetooth/startNotifications/service-is-removed.html": [ - "8bafc50cae14cdb0a421ed1707a44c84ccb65bf3", + "8bafc50cae14cdb0a421ed1707a44c84ccb65bf3", "testharness" - ], + ], "bluetooth/stopNotifications/characteristic-is-removed.html": [ - "269c9867d9007d615e10b29a9acefb3d18ac5ec4", + "269c9867d9007d615e10b29a9acefb3d18ac5ec4", "testharness" - ], + ], "bluetooth/stopNotifications/disconnect-called-before.html": [ - "44052e05fff24e9dd6cc66f050d916626763ca0a", + "44052e05fff24e9dd6cc66f050d916626763ca0a", "testharness" - ], + ], "bluetooth/stopNotifications/disconnect-called-during.html": [ - "8a6e2e46fd2238b6cb9bed0016b5903243e5c1ab", + "8a6e2e46fd2238b6cb9bed0016b5903243e5c1ab", "testharness" - ], + ], "bluetooth/stopNotifications/notify-succeeds.html": [ - "cb63cfd582327ddf504d2a92729bccac11be46e1", + "cb63cfd582327ddf504d2a92729bccac11be46e1", "testharness" - ], + ], "bluetooth/stopNotifications/stop-after-start-succeeds.html": [ - "e624f2a694bdeb6c663d36a663cf9c57ac2925a7", + "e624f2a694bdeb6c663d36a663cf9c57ac2925a7", "testharness" - ], + ], "bluetooth/stopNotifications/stop-twice.html": [ - "50db2e86268d87e600731ebbe8eb58c4e1e93bc5", + "50db2e86268d87e600731ebbe8eb58c4e1e93bc5", "testharness" - ], + ], "bluetooth/stopNotifications/stop-without-starting.html": [ - "a32eb295aac8794e7fae9f14980827c51f3163e1", + "a32eb295aac8794e7fae9f14980827c51f3163e1", "testharness" - ], + ], "bluetooth/writeValue/characteristic/blocklisted-characteristic.html": [ - "473aa6fa025d93a5e97db258e1d0b1f1dcc13338", + "473aa6fa025d93a5e97db258e1d0b1f1dcc13338", "testharness" - ], + ], "bluetooth/writeValue/characteristic/characteristic-is-removed.html": [ - "0fc07ddb1dca1f9f540c4787a5c08a5feb9b3b4a", + "0fc07ddb1dca1f9f540c4787a5c08a5feb9b3b4a", "testharness" - ], + ], "bluetooth/writeValue/characteristic/device-goes-out-of-range.html": [ - "3e0f72411cadde215678ccd7dc163bef93699d65", + "3e0f72411cadde215678ccd7dc163bef93699d65", "testharness" - ], + ], "bluetooth/writeValue/characteristic/disconnect-called-before.html": [ - "c10d161114a71314361b5e39609c3f207da5e5b4", + "c10d161114a71314361b5e39609c3f207da5e5b4", "testharness" - ], + ], "bluetooth/writeValue/characteristic/service-is-removed.html": [ - "7720389eed97d8c70af632371b88fc91db94b01d", + "7720389eed97d8c70af632371b88fc91db94b01d", "testharness" - ], + ], "bluetooth/writeValue/characteristic/value-too-long.html": [ - "fd9a4a403f239169d3a34d72fc065f28599dee33", + "fd9a4a403f239169d3a34d72fc065f28599dee33", "testharness" - ], + ], "bluetooth/writeValue/characteristic/write-succeeds.html": [ - "0487eac6211d1d9bfb46eb0fe1edaa8ed984ca72", + "0487eac6211d1d9bfb46eb0fe1edaa8ed984ca72", "testharness" - ], + ], "bluetooth/writeValue/characteristic/write-updates-value.html": [ - "23851862a23e8b74279e69492ee370b07f8901ed", + "23851862a23e8b74279e69492ee370b07f8901ed", "testharness" - ], + ], "bluetooth/writeValue/descriptor/blocklisted-descriptor.html": [ - "0c7f827047da92e7185a9b17182cbf5a62447f1f", + "0c7f827047da92e7185a9b17182cbf5a62447f1f", "testharness" - ], + ], "bluetooth/writeValue/descriptor/characteristic-is-removed.html": [ - "5130ccee7aa2826885323158dceb9889432f59f4", + "5130ccee7aa2826885323158dceb9889432f59f4", "testharness" - ], + ], "bluetooth/writeValue/descriptor/descriptor-is-removed.html": [ - "c8fe9c8f5b6e051483155b9e794c1784a83f6254", + "c8fe9c8f5b6e051483155b9e794c1784a83f6254", "testharness" - ], + ], "bluetooth/writeValue/descriptor/device-goes-out-of-range.html": [ - "6d90c3da5a81bf3dc619ddc529458d5396d13431", + "6d90c3da5a81bf3dc619ddc529458d5396d13431", "testharness" - ], + ], "bluetooth/writeValue/descriptor/disconnect-called-before.html": [ - "efbe58de02119df8880212127ba68a10d25d7cc1", + "efbe58de02119df8880212127ba68a10d25d7cc1", "testharness" - ], + ], "bluetooth/writeValue/descriptor/service-is-removed.html": [ - "f5a86b1b919333caccef0ac4e783ac8569ef4070", + "f5a86b1b919333caccef0ac4e783ac8569ef4070", "testharness" - ], + ], "bluetooth/writeValue/descriptor/write-succeeds.html": [ - "1cd3d472d12ba2df8a83768b6f74127459bc1808", + "1cd3d472d12ba2df8a83768b6f74127459bc1808", "testharness" - ], + ], "bluetooth/writeValue/descriptor/write-updates-value.html": [ - "14dc5b027e4b089255caed494b2150bf6845fc54", + "14dc5b027e4b089255caed494b2150bf6845fc54", "testharness" - ], + ], "css/100x100_green.png": [ - "b23bbba154ea88b086856dc37b2b6413d70919b2", + "b23bbba154ea88b086856dc37b2b6413d70919b2", "support" - ], + ], "css/250x250_green.png": [ - "586ef3d69d6b868dc4adc83f4e0a1f15e477d9b6", + "586ef3d69d6b868dc4adc83f4e0a1f15e477d9b6", "support" - ], + ], "css/2x4.png": [ - "7efc762459bd0eeda7d7ab94570d9be223c39b21", + "7efc762459bd0eeda7d7ab94570d9be223c39b21", "support" - ], + ], "css/400x400_green.png": [ - "484469eb140b190b8cf7ed507212c60d5e6e663b", + "484469eb140b190b8cf7ed507212c60d5e6e663b", "support" - ], + ], "css/4x2.png": [ - "eb0c5cda97128f52cb2815e80955cb77c1744a91", + "eb0c5cda97128f52cb2815e80955cb77c1744a91", "support" - ], + ], "css/500x300_green.html": [ - "28e7e6bab35f0ba85c31fc81b3f1ec4c0b2252d3", + "28e7e6bab35f0ba85c31fc81b3f1ec4c0b2252d3", "support" - ], + ], "css/abs-overflow-stackingcontext.html": [ - "264df01aa64e0abe9ea3a75e57452c27d53a904f", + "264df01aa64e0abe9ea3a75e57452c27d53a904f", "reftest" - ], + ], "css/abs-overflow-stackingcontext_ref.html": [ - "f779e5a4233b1955fefd9dd73534d95499379042", + "f779e5a4233b1955fefd9dd73534d95499379042", "support" - ], + ], "css/abs_float_pref_width-ref.html": [ - "2b35cb62eb4320aa49ea5feeef46c9864e0db367", + "2b35cb62eb4320aa49ea5feeef46c9864e0db367", "support" - ], + ], "css/abs_float_pref_width.html": [ - "4d5c2f971a5ec46dddfcff254b4b433b89d6e5c1", + "4d5c2f971a5ec46dddfcff254b4b433b89d6e5c1", "reftest" - ], + ], "css/abs_rel_explicit_height.html": [ - "735176bcfee77cf954e1931085b48f167c2663e8", + "735176bcfee77cf954e1931085b48f167c2663e8", "reftest" - ], + ], "css/abs_rel_explicit_height_ref.html": [ - "4e9833c29529e58690f5f26e546e0d66a22ca369", + "4e9833c29529e58690f5f26e546e0d66a22ca369", "support" - ], + ], "css/absolute_clipping_of_own_contents.html": [ - "19919ff89c72d3425d188c49c27916a9eb885359", + "19919ff89c72d3425d188c49c27916a9eb885359", "reftest" - ], + ], "css/absolute_clipping_of_own_contents_ref.html": [ - "96608da13c99bcc8c922209edf428dc905b0644c", + "96608da13c99bcc8c922209edf428dc905b0644c", "support" - ], + ], "css/absolute_content_height.html": [ - "80ac5b8daae5a63afa7ea114fac4441768f26af3", + "80ac5b8daae5a63afa7ea114fac4441768f26af3", "reftest" - ], + ], "css/absolute_content_height_ref.html": [ - "bb239ed179f9fe58ee8babe5efa04c88102c2c46", + "bb239ed179f9fe58ee8babe5efa04c88102c2c46", "support" - ], + ], "css/absolute_css_width.html": [ - "a6ef6f42f2fddaab0413f5aec73ac33bef358ffe", + "a6ef6f42f2fddaab0413f5aec73ac33bef358ffe", "reftest" - ], + ], "css/absolute_css_width_ref.html": [ - "0fd19aeffaf88969108ffe34900af11c905d9e10", + "0fd19aeffaf88969108ffe34900af11c905d9e10", "support" - ], + ], "css/absolute_div_with_padding.html": [ - "cddbbba8def093ccdd48257f491c632b43b4f0e0", + "cddbbba8def093ccdd48257f491c632b43b4f0e0", "reftest" - ], + ], "css/absolute_div_with_padding_ref.html": [ - "62d0965f205e1d40ac752ee4324469a82ef3fae4", + "62d0965f205e1d40ac752ee4324469a82ef3fae4", "support" - ], + ], "css/absolute_hypothetical_float.html": [ - "33506180d15b5ff5e18b4f8adce4e2346e4ff811", + "33506180d15b5ff5e18b4f8adce4e2346e4ff811", "reftest" - ], + ], "css/absolute_hypothetical_float_ref.html": [ - "008b2a65d29bddd21f7754af0422c3366d0c9d25", + "008b2a65d29bddd21f7754af0422c3366d0c9d25", "support" - ], + ], "css/absolute_hypothetical_with_intervening_inline_block_a.html": [ - "54d92051775d6fa2e5e3ac3ceb1848f58ae2c653", + "54d92051775d6fa2e5e3ac3ceb1848f58ae2c653", "reftest" - ], + ], "css/absolute_hypothetical_with_intervening_inline_block_ref.html": [ - "985e941cdd9fafd6412cf2e76955ee6b614affdc", + "985e941cdd9fafd6412cf2e76955ee6b614affdc", "support" - ], + ], "css/absolute_ib_split_a.html": [ - "43b8fb09e9e11174b3af9554c4f6f3ab650f561a", + "43b8fb09e9e11174b3af9554c4f6f3ab650f561a", "reftest" - ], + ], "css/absolute_ib_split_ref.html": [ - "6acc697b869737296caf8a9fc72363daa557f4ff", + "6acc697b869737296caf8a9fc72363daa557f4ff", "support" - ], + ], "css/absolute_img_with_padding.html": [ - "fb93f061371957ce3888ed2ab6a66fd61c3585f0", + "fb93f061371957ce3888ed2ab6a66fd61c3585f0", "reftest" - ], + ], "css/absolute_img_with_padding_ref.html": [ - "ec668a3b940542b2c2ad0a2090e0f9831ad90839", + "ec668a3b940542b2c2ad0a2090e0f9831ad90839", "support" - ], + ], "css/absolute_inline_containing_block_a.html": [ - "ab15865df4bef6507aaf5d7130bc334672f04a57", + "ab15865df4bef6507aaf5d7130bc334672f04a57", "reftest" - ], + ], "css/absolute_inline_containing_block_ref.html": [ - "9a36136b8539817cb408ae3eaf03da9a554dfcc5", + "9a36136b8539817cb408ae3eaf03da9a554dfcc5", "support" - ], + ], "css/absolute_line_height_after_float.html": [ - "b8fe85ef6ecd83dadcfb76d0431630c25244aa36", + "b8fe85ef6ecd83dadcfb76d0431630c25244aa36", "reftest" - ], + ], "css/absolute_line_height_after_float_ref.html": [ - "87b5a67edef9d016eb532f20b2e45bf8d8e902c3", + "87b5a67edef9d016eb532f20b2e45bf8d8e902c3", "support" - ], + ], "css/absolute_table.html": [ - "731bf9a123f0e9809c9c1541a866034510a0732c", + "731bf9a123f0e9809c9c1541a866034510a0732c", "reftest" - ], + ], "css/absolute_table_ref.html": [ - "40018562574981894ae124a4a104720fd129f77e", + "40018562574981894ae124a4a104720fd129f77e", "support" - ], + ], "css/absolute_z_index_auto_paint_order_a.html": [ - "14ada33cfe5be77f761f11f6c1edd17dc445cdbb", + "14ada33cfe5be77f761f11f6c1edd17dc445cdbb", "reftest" - ], + ], "css/absolute_z_index_auto_paint_order_ref.html": [ - "e0174b0d1bd3e16f5fc40819c705a5459febaf54", + "e0174b0d1bd3e16f5fc40819c705a5459febaf54", "support" - ], + ], "css/acid1.png": [ - "18ae219455d5dcd1748dca8f98a8b50081787c43", + "18ae219455d5dcd1748dca8f98a8b50081787c43", "support" - ], + ], "css/acid1_a.html": [ - "3bec0f0244dd741cbcff41ac6138d99439563443", + "3bec0f0244dd741cbcff41ac6138d99439563443", "reftest" - ], + ], "css/acid1_b.html": [ - "9fcd0f5f9ae161b1477d7da8faed3933b94f46d4", + "9fcd0f5f9ae161b1477d7da8faed3933b94f46d4", "support" - ], + ], "css/acid2-wrapper.html": [ - "d1907a92b64ab8cabbc352d822a196f82b46a768", + "d1907a92b64ab8cabbc352d822a196f82b46a768", "reftest" - ], + ], "css/acid2.html": [ - "4150d256bef105e49206adc2ac5fda7ed12f28c7", + "4150d256bef105e49206adc2ac5fda7ed12f28c7", "support" - ], + ], "css/acid2_noscroll.html": [ - "0af3ae3c26373fe0d0e61eb51a2d669972d5d42d", + "0af3ae3c26373fe0d0e61eb51a2d669972d5d42d", "reftest" - ], + ], "css/acid2_ref.html": [ - "d0b4e28ec3ead19e59c5db25640a5b9c0e1c79e7", + "d0b4e28ec3ead19e59c5db25640a5b9c0e1c79e7", "reftest" - ], + ], "css/acid2_ref.png": [ - "7aee7609d6ade6e39ad53b04a9f61e55f3b00c76", + "7aee7609d6ade6e39ad53b04a9f61e55f3b00c76", "support" - ], + ], "css/acid2_ref_broken.html": [ - "aecefd1ef02192ba7f63c39e941facebc0e192c2", + "aecefd1ef02192ba7f63c39e941facebc0e192c2", "support" - ], + ], "css/acid2_ref_broken.png": [ - "4076473cec3cbb7adf2b7d0ce275c7e62cd1496d", + "4076473cec3cbb7adf2b7d0ce275c7e62cd1496d", "support" - ], + ], "css/after_block_iteration.html": [ - "79efcc137236f2b9eb1183fedd7c677a78f0850a", + "79efcc137236f2b9eb1183fedd7c677a78f0850a", "reftest" - ], + ], "css/after_block_iteration_ref.html": [ - "432b040b89168dadc8e773ac421b9286e985bcca", + "432b040b89168dadc8e773ac421b9286e985bcca", "support" - ], + ], "css/alpha_gif_a.gif": [ - "298fe8f26273399874b9a68f92f0f7de2279834d", + "298fe8f26273399874b9a68f92f0f7de2279834d", "support" - ], + ], "css/alpha_gif_a.html": [ - "e2ebc3dd096d1e127d861bf934b7a2a8b419546e", + "e2ebc3dd096d1e127d861bf934b7a2a8b419546e", "reftest" - ], + ], "css/alpha_gif_b.gif": [ - "3da985ea5a33944bf6040755ade01f4d753c5a1b", + "3da985ea5a33944bf6040755ade01f4d753c5a1b", "support" - ], + ], "css/alpha_gif_b.html": [ - "97c1a67e7156321943f4766f2d0e507a40dc5b37", + "97c1a67e7156321943f4766f2d0e507a40dc5b37", "support" - ], + ], "css/alpha_png_a.html": [ - "6c718e7b06cd6086fc0864ac5b2da2144ca3bcb9", + "6c718e7b06cd6086fc0864ac5b2da2144ca3bcb9", "reftest" - ], + ], "css/alpha_png_a.png": [ - "bfce3165adf53ef6f2ae389300826d145d03ad38", + "bfce3165adf53ef6f2ae389300826d145d03ad38", "support" - ], + ], "css/alpha_png_b.html": [ - "d948302cee0686582f7e5b55d635a0d7a279738e", + "d948302cee0686582f7e5b55d635a0d7a279738e", "support" - ], + ], "css/alpha_png_b.png": [ - "65c0375770ce7997e3469b7b89b0ad46b79a2bb7", + "65c0375770ce7997e3469b7b89b0ad46b79a2bb7", "support" - ], + ], "css/animations/basic-linear-width.html": [ - "634b09dca5924b8bea58ac8532d9d46c20d8a0ad", + "634b09dca5924b8bea58ac8532d9d46c20d8a0ad", "testharness" - ], + ], "css/animations/basic-transition.html": [ - "b80e8a666a6e6202b4ecafe628ef00ebcecfe168", + "b80e8a666a6e6202b4ecafe628ef00ebcecfe168", "testharness" - ], + ], "css/animations/mixed-units.html": [ - "bb029a9fa80650c39e3f9524748e2b8893a476e1", + "bb029a9fa80650c39e3f9524748e2b8893a476e1", "testharness" - ], + ], "css/animations/transition-raf.html": [ - "6159bb9ab333544b4485d11025889ee94186c7eb", + "6159bb9ab333544b4485d11025889ee94186c7eb", "testharness" - ], + ], "css/anon_block_inherit_a.html": [ - "00214c6b848ec118f34fedd92c3a7c7b3844823d", + "00214c6b848ec118f34fedd92c3a7c7b3844823d", "reftest" - ], + ], "css/anon_block_inherit_b.html": [ - "db245b4b21f1e77691349c9b106df488569b0e04", + "db245b4b21f1e77691349c9b106df488569b0e04", "support" - ], + ], "css/append_style_a.html": [ - "3856eb98f470a752cfd5d7abdce64cf09ff36b5e", + "3856eb98f470a752cfd5d7abdce64cf09ff36b5e", "reftest" - ], + ], "css/append_style_b.html": [ - "4792dbc86e24e5d5070be6a600a4982e5646e5e9", + "4792dbc86e24e5d5070be6a600a4982e5646e5e9", "support" - ], + ], "css/attr_exists_selector.html": [ - "9290ff8386387406d215d6eae153510c8b75c7b9", + "9290ff8386387406d215d6eae153510c8b75c7b9", "reftest" - ], + ], "css/attr_exists_selector_ref.html": [ - "ba75fc54945cafa27b5953aaa06405276462861c", + "ba75fc54945cafa27b5953aaa06405276462861c", "support" - ], + ], "css/attr_selector_case_sensitivity.html": [ - "f86ac14b8553e08d2222fe2b15e108176ad25960", + "f86ac14b8553e08d2222fe2b15e108176ad25960", "reftest" - ], + ], "css/attr_selector_case_sensitivity_ref.html": [ - "9e9be12d13e3c36d367a74c47aa963ad4a5d25f7", + "9e9be12d13e3c36d367a74c47aa963ad4a5d25f7", "support" - ], + ], "css/background.html": [ - "7153c7e192b0993bccc9e1369e1a1e7e076e4747", + "7153c7e192b0993bccc9e1369e1a1e7e076e4747", "reftest" - ], + ], "css/background_border_padding_crash-ref.html": [ - "7ac5f8bdca22aa7a6abbfec69be422f0ebb5dd5f", + "7ac5f8bdca22aa7a6abbfec69be422f0ebb5dd5f", "support" - ], + ], "css/background_border_padding_crash.html": [ - "f3d50025ac06d4ccc30ebda74b41cad12cdfd1f2", + "f3d50025ac06d4ccc30ebda74b41cad12cdfd1f2", "reftest" - ], + ], "css/background_clip_a.html": [ - "7f2c8b7f0dd941d19e747569804f7141baae144f", + "7f2c8b7f0dd941d19e747569804f7141baae144f", "reftest" - ], + ], "css/background_clip_ref.html": [ - "96111ea7955f41bd5f508232f9828c28afd894c0", + "96111ea7955f41bd5f508232f9828c28afd894c0", "support" - ], + ], "css/background_external_stylesheet.html": [ - "779ee53213a9877cbc690fcb5f02dcdcbcb09f87", + "779ee53213a9877cbc690fcb5f02dcdcbcb09f87", "reftest" - ], + ], "css/background_image_a.html": [ - "37afc14ca0c50d72cbd529fc19b5bb6da06031f2", + "37afc14ca0c50d72cbd529fc19b5bb6da06031f2", "reftest" - ], + ], "css/background_image_position_a.html": [ - "f3ff1cc329bd824c4cebe655bd68989c9b9909ca", + "f3ff1cc329bd824c4cebe655bd68989c9b9909ca", "reftest" - ], + ], "css/background_image_position_ref.html": [ - "fe2f332aa2956e1bf17f680f4d31988ec62868b1", + "fe2f332aa2956e1bf17f680f4d31988ec62868b1", "support" - ], + ], "css/background_image_ref.html": [ - "d30a489a2c3aac4e398ab350f38750596acf56b3", + "d30a489a2c3aac4e398ab350f38750596acf56b3", "support" - ], + ], "css/background_none_a.html": [ - "dbbeb9a377901385598652ead96390945afc32eb", + "dbbeb9a377901385598652ead96390945afc32eb", "reftest" - ], + ], "css/background_none_b.html": [ - "8003c5d96f4be5a84eb10456b82e26804d30d373", + "8003c5d96f4be5a84eb10456b82e26804d30d373", "support" - ], + ], "css/background_origin_a.html": [ - "1bf3ca76391a8e5dc9c1568f8d5b35245d3015af", + "1bf3ca76391a8e5dc9c1568f8d5b35245d3015af", "reftest" - ], + ], "css/background_origin_ref.html": [ - "0394fc673de028799509c50c8c0bfb39942896d2", + "0394fc673de028799509c50c8c0bfb39942896d2", "support" - ], + ], "css/background_position_a.html": [ - "589e1a44ee709b4dc05823664a69de2381c28cb6", + "589e1a44ee709b4dc05823664a69de2381c28cb6", "reftest" - ], + ], "css/background_position_b.html": [ - "6c1d0ab9ecd6f392ee0ffe70d0172d38b39b5af7", + "6c1d0ab9ecd6f392ee0ffe70d0172d38b39b5af7", "support" - ], + ], "css/background_position_keyword.html": [ - "f7a3e1a4d43ae9d1877472c62ee14423abd783a1", + "f7a3e1a4d43ae9d1877472c62ee14423abd783a1", "reftest" - ], + ], "css/background_position_percent.html": [ - "daf29276e59932c06ae632b3e0d2d73699f70897", + "daf29276e59932c06ae632b3e0d2d73699f70897", "reftest" - ], + ], "css/background_position_shorthand.html": [ - "feb3a2e2b6463d1c4385c0a524ebc224cfa84422", + "feb3a2e2b6463d1c4385c0a524ebc224cfa84422", "reftest" - ], + ], "css/background_position_shorthand_ref.html": [ - "ed748dffd884cea85f1715d9ae6b412e24bf6f48", + "ed748dffd884cea85f1715d9ae6b412e24bf6f48", "support" - ], + ], "css/background_ref.html": [ - "765b479cf57aa70b6df53b3f11790e568c91c2da", + "765b479cf57aa70b6df53b3f11790e568c91c2da", "support" - ], + ], "css/background_repeat_both_a.html": [ - "012a826675edf8fbe2fc73238a5a07e01e3f5b81", + "012a826675edf8fbe2fc73238a5a07e01e3f5b81", "reftest" - ], + ], "css/background_repeat_both_b.html": [ - "4a452813855db0549c4d4612479244c307f7563c", + "4a452813855db0549c4d4612479244c307f7563c", "support" - ], + ], "css/background_repeat_none_a.html": [ - "21be6e513fc5ec57a6544afd7dbd97c3ea4da68c", + "21be6e513fc5ec57a6544afd7dbd97c3ea4da68c", "reftest" - ], + ], "css/background_repeat_none_b.html": [ - "d1865048891c03e9dc0fdec5699fab51b3739f59", + "d1865048891c03e9dc0fdec5699fab51b3739f59", "support" - ], + ], "css/background_repeat_x_a.html": [ - "98d15f3d153618dbabaf9227efc199fb62b30d07", + "98d15f3d153618dbabaf9227efc199fb62b30d07", "reftest" - ], + ], "css/background_repeat_x_b.html": [ - "410bcad4dd7fd8e8c3e92bf7faf3c66c8ba84608", + "410bcad4dd7fd8e8c3e92bf7faf3c66c8ba84608", "support" - ], + ], "css/background_repeat_y_a.html": [ - "96efac9a306ff8bacf873bccc43583ce6f5db7b6", + "96efac9a306ff8bacf873bccc43583ce6f5db7b6", "reftest" - ], + ], "css/background_repeat_y_b.html": [ - "706e76af3c6f15409ab2cd0bfb1bc620ce87d2c1", + "706e76af3c6f15409ab2cd0bfb1bc620ce87d2c1", "support" - ], + ], "css/background_rust_ref.html": [ - "81f0d15e1fc1f7e16de8ccb35a5daf393c1f3245", + "81f0d15e1fc1f7e16de8ccb35a5daf393c1f3245", "support" - ], + ], "css/background_size.png": [ - "8d5824940c094d591eec5f2ab62426ee1eb8dc98", + "8d5824940c094d591eec5f2ab62426ee1eb8dc98", "support" - ], + ], "css/background_size_a.html": [ - "d4ae7203e2b09ceecbf1274c2fb9d4ec8bd6e1cd", + "d4ae7203e2b09ceecbf1274c2fb9d4ec8bd6e1cd", "reftest" - ], + ], "css/background_size_ref.html": [ - "7967b10ae0965a876bc330ebd89457490aee37ed", + "7967b10ae0965a876bc330ebd89457490aee37ed", "support" - ], + ], "css/background_size_shorthand_a.html": [ - "85ed53f4b167abf0dc05c28ccf35d9958ced99bf", + "85ed53f4b167abf0dc05c28ccf35d9958ced99bf", "reftest" - ], + ], "css/background_size_shorthand_ref.html": [ - "48766310e1c4ad4856a71c07380a3d3864f7e669", + "48766310e1c4ad4856a71c07380a3d3864f7e669", "support" - ], + ], "css/background_size_zero_a.html": [ - "64b7431f74e0c048de085110d6f568a3f4a5f277", + "64b7431f74e0c048de085110d6f568a3f4a5f277", "reftest" - ], + ], "css/background_size_zero_ref.html": [ - "017aab9d2bc1aa87dfa4cd94b1fc1269e7236c61", + "017aab9d2bc1aa87dfa4cd94b1fc1269e7236c61", "support" - ], + ], "css/background_style_attr.html": [ - "71ab937ed00932008df1b93f4fcc1a4a3cb3d304", + "71ab937ed00932008df1b93f4fcc1a4a3cb3d304", "reftest" - ], + ], "css/basic_width_em.html": [ - "160e2fa1ecbc9c238ecd78c7bab93af1a2a16a82", + "160e2fa1ecbc9c238ecd78c7bab93af1a2a16a82", "support" - ], + ], "css/basic_width_px.html": [ - "a9b7e1770198d8088c7cf9914ceaec1d06e5f8ac", + "a9b7e1770198d8088c7cf9914ceaec1d06e5f8ac", "reftest" - ], + ], "css/blackborder_ref.html": [ - "266c7f058c590b85a6e7b55f0ebdd5215b89f552", + "266c7f058c590b85a6e7b55f0ebdd5215b89f552", "support" - ], + ], "css/blank.html": [ - "82055fc37eeed7b69f26f082c224facabc9a0d03", + "82055fc37eeed7b69f26f082c224facabc9a0d03", "support" - ], + ], "css/block_formatting_context_a.html": [ - "eecad30e3e7907814279efe5c5a9643ba7f0c0ba", + "eecad30e3e7907814279efe5c5a9643ba7f0c0ba", "reftest" - ], + ], "css/block_formatting_context_cleared_float_a.html": [ - "d91265b494ddf56f6f45943f8316d25d72a110d0", + "d91265b494ddf56f6f45943f8316d25d72a110d0", "reftest" - ], + ], "css/block_formatting_context_cleared_float_ref.html": [ - "88408a8e8d46fe6cdf1b6d61eff59feec089ca76", + "88408a8e8d46fe6cdf1b6d61eff59feec089ca76", "support" - ], + ], "css/block_formatting_context_complex_a.html": [ - "14163ec35479450ab37afe34d5d8c642f35a8d90", + "14163ec35479450ab37afe34d5d8c642f35a8d90", "reftest" - ], + ], "css/block_formatting_context_complex_ref.html": [ - "8a894c3106b8d6c3b41f435813f203f93d7af13d", + "8a894c3106b8d6c3b41f435813f203f93d7af13d", "support" - ], + ], "css/block_formatting_context_containing_floats_a.html": [ - "20aa80fe62998c54a605de199607227a7a1d75af", + "20aa80fe62998c54a605de199607227a7a1d75af", "reftest" - ], + ], "css/block_formatting_context_containing_floats_ref.html": [ - "51dfab031eb6f00a83ce047dfcc74d98a272bad2", + "51dfab031eb6f00a83ce047dfcc74d98a272bad2", "support" - ], + ], "css/block_formatting_context_float_inorder_interaction_a.html": [ - "52e884598ff0310846059b45e9d8b2b223850d13", + "52e884598ff0310846059b45e9d8b2b223850d13", "reftest" - ], + ], "css/block_formatting_context_float_inorder_interaction_ref.html": [ - "d03f614f19356a0dc0dac6d97d234c1d4eb22892", + "d03f614f19356a0dc0dac6d97d234c1d4eb22892", "support" - ], + ], "css/block_formatting_context_float_placement_a.html": [ - "a0dd4a53162f48134fc4f1d23505efd8d39832cf", + "a0dd4a53162f48134fc4f1d23505efd8d39832cf", "reftest" - ], + ], "css/block_formatting_context_float_placement_ref.html": [ - "aa4caa86df3225eb5aa86074246408a45b7e9a03", + "aa4caa86df3225eb5aa86074246408a45b7e9a03", "support" - ], + ], "css/block_formatting_context_margin_collapse_a.html": [ - "787505d08c26b6763d7cb467f8c0d0dcc2929bb3", + "787505d08c26b6763d7cb467f8c0d0dcc2929bb3", "reftest" - ], + ], "css/block_formatting_context_margin_collapse_ref.html": [ - "3dfb8717acf3265b6e5f89675eb098e50d1170ae", + "3dfb8717acf3265b6e5f89675eb098e50d1170ae", "support" - ], + ], "css/block_formatting_context_margin_inout_a.html": [ - "a7e6f0cd69e3b660980425e2ae6e30638a7682eb", + "a7e6f0cd69e3b660980425e2ae6e30638a7682eb", "reftest" - ], + ], "css/block_formatting_context_margin_inout_ref.html": [ - "c333a800cc42e5f266f28d08dc4eeba839d57f79", + "c333a800cc42e5f266f28d08dc4eeba839d57f79", "support" - ], + ], "css/block_formatting_context_max_width_a.html": [ - "5e5e59c28410bd9bccbf23a4e05a78adbe4c4c45", + "5e5e59c28410bd9bccbf23a4e05a78adbe4c4c45", "reftest" - ], + ], "css/block_formatting_context_max_width_ref.html": [ - "3c40d312253eb70eb65c236ee2aec7a88d853723", + "3c40d312253eb70eb65c236ee2aec7a88d853723", "support" - ], + ], "css/block_formatting_context_negative_margins_a.html": [ - "41bc3ccabb58c4b75c82709578591275d86ace8d", + "41bc3ccabb58c4b75c82709578591275d86ace8d", "reftest" - ], + ], "css/block_formatting_context_negative_margins_ref.html": [ - "058da5f64f39e91d0cb04edd8cb113aef9d9973e", + "058da5f64f39e91d0cb04edd8cb113aef9d9973e", "support" - ], + ], "css/block_formatting_context_overflow_a.html": [ - "1376c99962f81b0f5e60217f699c5d3dac873df6", + "1376c99962f81b0f5e60217f699c5d3dac873df6", "reftest" - ], + ], "css/block_formatting_context_overflow_ref.html": [ - "3dc8ad2e08dcac9a2a585afa0b5d13ae1a7af7f6", + "3dc8ad2e08dcac9a2a585afa0b5d13ae1a7af7f6", "support" - ], + ], "css/block_formatting_context_ref.html": [ - "55b4e3a6fb2f901c974fe017f8cd409142cd1749", + "55b4e3a6fb2f901c974fe017f8cd409142cd1749", "support" - ], + ], "css/block_formatting_context_relative_a.html": [ - "fc399cfa7adce3423869c7da320d4eb39be4dce3", + "fc399cfa7adce3423869c7da320d4eb39be4dce3", "reftest" - ], + ], "css/block_formatting_context_translation_a.html": [ - "cf5054c158c4d0bc44819824c688e7607fed3fdb", + "cf5054c158c4d0bc44819824c688e7607fed3fdb", "reftest" - ], + ], "css/block_formatting_context_translation_ref.html": [ - "0505f1703bbcf5a9c0c5c35205ba2aa84733852f", + "0505f1703bbcf5a9c0c5c35205ba2aa84733852f", "support" - ], + ], "css/block_formatting_context_with_margin_a.html": [ - "0ed0a8607b81ff3d999aa4f37f505968c3f3c714", + "0ed0a8607b81ff3d999aa4f37f505968c3f3c714", "reftest" - ], + ], "css/block_formatting_context_with_margin_ref.html": [ - "9ca4146bf633885354705ac74635cc8f5c479111", + "9ca4146bf633885354705ac74635cc8f5c479111", "support" - ], + ], "css/block_image.html": [ - "7bba4554786655076768150223058b1437e9c5c4", + "7bba4554786655076768150223058b1437e9c5c4", "reftest" - ], + ], "css/block_replaced_content_a.html": [ - "639da0036a097c704c0edf363382f2ffdd83c74f", + "639da0036a097c704c0edf363382f2ffdd83c74f", "reftest" - ], + ], "css/block_replaced_content_b.html": [ - "c6fd40fc6a3547ec2e2509bdb10ed1a7d6588dd6", + "c6fd40fc6a3547ec2e2509bdb10ed1a7d6588dd6", "reftest" - ], + ], "css/block_replaced_content_ref.html": [ - "4d48d763eb784170f680276541d864681a05962b", + "4d48d763eb784170f680276541d864681a05962b", "support" - ], + ], "css/blur_a.html": [ - "a75af6a020711df2b97caa6b32f4d3cc445d1178", + "a75af6a020711df2b97caa6b32f4d3cc445d1178", "reftest" - ], + ], "css/blur_ref.html": [ - "45795a610c0596834846612b320e383edaf893d5", + "45795a610c0596834846612b320e383edaf893d5", "support" - ], + ], "css/border-image-linear-gradient-ref.html": [ - "0dddcf89d26d6ac1efe7b0d65e5607a3ed771b46", + "0dddcf89d26d6ac1efe7b0d65e5607a3ed771b46", "support" - ], + ], "css/border-image-linear-gradient.html": [ - "a0040e7e157c461869e8d90c1ee0b2c34c06e813", + "a0040e7e157c461869e8d90c1ee0b2c34c06e813", "reftest" - ], + ], "css/border_black_groove.html": [ - "49e1647a6f71e320770225ad537b4fd4020bd700", + "49e1647a6f71e320770225ad537b4fd4020bd700", "reftest_node" - ], + ], "css/border_black_ridge_a.html": [ - "90cdda1dca8793a1c01b72f1ad27398903cfd823", + "90cdda1dca8793a1c01b72f1ad27398903cfd823", "reftest" - ], + ], "css/border_black_ridge_b.html": [ - "db72a2c354cb40337f7620fec1bffc91ca557e13", + "db72a2c354cb40337f7620fec1bffc91ca557e13", "reftest" - ], + ], "css/border_black_solid.html": [ - "63ef95bef813b5c3a75c0da4cd7773f35db3c5ff", + "63ef95bef813b5c3a75c0da4cd7773f35db3c5ff", "support" - ], + ], "css/border_code_tag.html": [ - "41a358622426e1eaaf85737fff134b6ce49850dc", + "41a358622426e1eaaf85737fff134b6ce49850dc", "reftest" - ], + ], "css/border_code_tag_ref.html": [ - "393a96c37239bac90be6c6cecc11d9a5d5779d59", + "393a96c37239bac90be6c6cecc11d9a5d5779d59", "support" - ], + ], "css/border_collapse_missing_cell_a.html": [ - "e5e24f211076a4c15a8c150a6c37ed81efa32316", + "e5e24f211076a4c15a8c150a6c37ed81efa32316", "reftest" - ], + ], "css/border_collapse_missing_cell_ref.html": [ - "023ea8c541bb3feefb5d92f5f5bae94160913fed", + "023ea8c541bb3feefb5d92f5f5bae94160913fed", "support" - ], + ], "css/border_collapse_row_a.html": [ - "25848243af19750d4f7791922c327f47615cd9c7", + "25848243af19750d4f7791922c327f47615cd9c7", "reftest" - ], + ], "css/border_collapse_row_ref.html": [ - "969b493d880025b6a92dbe2ded01bb1a5107188d", + "969b493d880025b6a92dbe2ded01bb1a5107188d", "support" - ], + ], "css/border_collapse_rowgroup_a.html": [ - "e5f010d5cd539309bbb0ec1313699fb34025e678", + "e5f010d5cd539309bbb0ec1313699fb34025e678", "reftest" - ], + ], "css/border_collapse_rowgroup_ref.html": [ - "7398716ef8e4e0a9e36d5bd807b6f7d086875ebd", + "7398716ef8e4e0a9e36d5bd807b6f7d086875ebd", "support" - ], + ], "css/border_collapse_simple_a.html": [ - "2a2676b9987ba8e220c575830eb6082376ec0317", + "2a2676b9987ba8e220c575830eb6082376ec0317", "reftest" - ], + ], "css/border_collapse_simple_ref.html": [ - "98dc28d109400f35facda92e4d7034eb846614f8", + "98dc28d109400f35facda92e4d7034eb846614f8", "support" - ], + ], "css/border_inline_split.html": [ - "4cf2aaacc112946d203106d2aa9a4b029fcfc06b", + "4cf2aaacc112946d203106d2aa9a4b029fcfc06b", "reftest" - ], + ], "css/border_inline_split_ref.html": [ - "658b7f533b6494e49fb3ecc9cd61415db303cfcb", + "658b7f533b6494e49fb3ecc9cd61415db303cfcb", "support" - ], + ], "css/border_radius_asymmetric_sizes_a.html": [ - "feee2ec7ef0e4d2fabf65d7778a98c4c5e925edd", + "feee2ec7ef0e4d2fabf65d7778a98c4c5e925edd", "reftest" - ], + ], "css/border_radius_asymmetric_sizes_ref.html": [ - "f24290c91e248eb4b8d07b1e47b429c57df38cc7", + "f24290c91e248eb4b8d07b1e47b429c57df38cc7", "support" - ], + ], "css/border_radius_clip_a.html": [ - "3579d248b7d07024a75e4ddf9fd7b60cf73ab0ca", + "3579d248b7d07024a75e4ddf9fd7b60cf73ab0ca", "reftest" - ], + ], "css/border_radius_clip_ref.html": [ - "4a97468be8ee2c3a4635269c7a3b057f79ad5fbe", + "4a97468be8ee2c3a4635269c7a3b057f79ad5fbe", "support" - ], + ], "css/border_radius_clipping_contents_a.html": [ - "fa9eb73d3e5fdeb10019cce36c2d239a6ac867bc", + "fa9eb73d3e5fdeb10019cce36c2d239a6ac867bc", "reftest" - ], + ], "css/border_radius_clipping_contents_ref.html": [ - "08f65cace58199018502659c4b0bb613a2c5c372", + "08f65cace58199018502659c4b0bb613a2c5c372", "support" - ], + ], "css/border_radius_dashed_a.html": [ - "c2a79aae6ef67b89f10f49c5e99a3d81e9142fb0", + "c2a79aae6ef67b89f10f49c5e99a3d81e9142fb0", "reftest" - ], + ], "css/border_radius_dashed_ref.html": [ - "ee65b5df22f72aa81edf4683222e60fb8275f8c8", + "ee65b5df22f72aa81edf4683222e60fb8275f8c8", "support" - ], + ], "css/border_radius_elliptical_a.html": [ - "3d33240da8214683b1431261e6a869b4d8749163", + "3d33240da8214683b1431261e6a869b4d8749163", "reftest" - ], + ], "css/border_radius_elliptical_ref.html": [ - "75e9c90de7eb2461cb275053fd7ccfe4291a1f87", + "75e9c90de7eb2461cb275053fd7ccfe4291a1f87", "support" - ], + ], "css/border_radius_in_border_radius_a.html": [ - "95195a276d732ec0e2307cd8f89a7f372c9c4821", + "95195a276d732ec0e2307cd8f89a7f372c9c4821", "reftest" - ], + ], "css/border_radius_in_border_radius_ref.html": [ - "0df74c58ddcd7c81306913d1c492e8c6a9fd12b7", + "0df74c58ddcd7c81306913d1c492e8c6a9fd12b7", "support" - ], + ], "css/border_radius_overlapping_a.html": [ - "b9b811fee9ef2774a497b109d319d37a25ca9ac7", + "b9b811fee9ef2774a497b109d319d37a25ca9ac7", "reftest" - ], + ], "css/border_radius_overlapping_ref.html": [ - "287a3d5208573090cdabba0cd13f7c551618f693", + "287a3d5208573090cdabba0cd13f7c551618f693", "support" - ], + ], "css/border_radius_shorthand_a.html": [ - "b496267c729f490bf28bd1d01eac0a73dae1d22c", + "b496267c729f490bf28bd1d01eac0a73dae1d22c", "reftest" - ], + ], "css/border_radius_shorthand_ref.html": [ - "caa03c48f1a2bb926d18fd7d9aeb926b5ce14655", + "caa03c48f1a2bb926d18fd7d9aeb926b5ce14655", "support" - ], + ], "css/border_radius_zero_sizes_a.html": [ - "38b6169f31733441cea65f758fcd5fddb5c1b732", + "38b6169f31733441cea65f758fcd5fddb5c1b732", "reftest" - ], + ], "css/border_radius_zero_sizes_ref.html": [ - "1f9d83440aee5a915adb7ce99811050f371f66c2", + "1f9d83440aee5a915adb7ce99811050f371f66c2", "support" - ], + ], "css/border_rounding_1px_invisible_issue_7184_a.html": [ - "cd90d70754b52c7b161cd3fae379b6cf6f00f440", + "cd90d70754b52c7b161cd3fae379b6cf6f00f440", "reftest" - ], + ], "css/border_rounding_1px_invisible_issue_7184_ref.html": [ - "1b7b0b5b1484cf1630589cf214a1c138c1f2e3f6", + "1b7b0b5b1484cf1630589cf214a1c138c1f2e3f6", "support" - ], + ], "css/border_spacing_a.html": [ - "b1bb79ad40d3eee39fdbed50678b33d177495169", + "b1bb79ad40d3eee39fdbed50678b33d177495169", "reftest" - ], + ], "css/border_spacing_auto_layout_a.html": [ - "4a3922e2b7040fe46a42014d31a5456801e67c2d", + "4a3922e2b7040fe46a42014d31a5456801e67c2d", "reftest" - ], + ], "css/border_spacing_empty_table.html": [ - "81f11a0797e5792c3655103db4d15ba78128809e", + "81f11a0797e5792c3655103db4d15ba78128809e", "reftest" - ], + ], "css/border_spacing_empty_table_ref.html": [ - "727795d8e381c52fcb0517b2803168d403da5ee2", + "727795d8e381c52fcb0517b2803168d403da5ee2", "support" - ], + ], "css/border_spacing_fixed_layout_a.html": [ - "f90fd485da45d8f9134a8d9e35629ce665ae3e10", + "f90fd485da45d8f9134a8d9e35629ce665ae3e10", "reftest" - ], + ], "css/border_spacing_ref.html": [ - "b5a4827badd7e79ea5a259c7c15998026da84833", + "b5a4827badd7e79ea5a259c7c15998026da84833", "support" - ], + ], "css/border_style_none_a.html": [ - "d5120c0bb93e3df5d344fba588602ce4537ee089", + "d5120c0bb93e3df5d344fba588602ce4537ee089", "reftest" - ], + ], "css/border_style_none_b.html": [ - "185dc03cd8981ef49e043cb41cebeed882d04ef2", + "185dc03cd8981ef49e043cb41cebeed882d04ef2", "support" - ], + ], "css/borders.png": [ - "1bbfc373b5e2874a8f27c42ae326916bf16b379b", + "1bbfc373b5e2874a8f27c42ae326916bf16b379b", "support" - ], + ], "css/borders_a.html": [ - "cea6f3a94e46a9368f8c11d222b89977c58573cc", + "cea6f3a94e46a9368f8c11d222b89977c58573cc", "reftest" - ], + ], "css/borders_b.html": [ - "d7d6399ced62bbb636e211bc551b5efd7b322756", + "d7d6399ced62bbb636e211bc551b5efd7b322756", "support" - ], + ], "css/box_shadow_bg.html": [ - "8fd3568aa4087cca485a8000f697829bc06681cf", + "8fd3568aa4087cca485a8000f697829bc06681cf", "reftest" - ], + ], "css/box_shadow_bg_ref.html": [ - "da1ebf46373a5aebb47cc36853a695c423140c11", + "da1ebf46373a5aebb47cc36853a695c423140c11", "support" - ], + ], "css/box_shadow_blur_a.html": [ - "04e148133c3cc94dd001ead37afaa80bbf8127b4", + "04e148133c3cc94dd001ead37afaa80bbf8127b4", "reftest" - ], + ], "css/box_shadow_blur_fixed.html": [ - "d26854d20a7b0487c590b3d175d89e6b36e83e85", + "d26854d20a7b0487c590b3d175d89e6b36e83e85", "reftest" - ], + ], "css/box_shadow_blur_fixed_ref.html": [ - "12c028db3999144779a581200a6ef74711b6a655", + "12c028db3999144779a581200a6ef74711b6a655", "support" - ], + ], "css/box_shadow_blur_ref.html": [ - "9bc6a69330688ed6d6fec03afdc1b309c3272f79", + "9bc6a69330688ed6d6fec03afdc1b309c3272f79", "support" - ], + ], "css/box_shadow_border_box_a.html": [ - "3bff2a2ee2c25531bc8f8be79a0098ca8deee096", + "3bff2a2ee2c25531bc8f8be79a0098ca8deee096", "reftest" - ], + ], "css/box_shadow_border_box_ref.html": [ - "4b2ff0057331530379949133e8e4d2311a00447a", + "4b2ff0057331530379949133e8e4d2311a00447a", "support" - ], + ], "css/box_shadow_default_color_a.html": [ - "2715959f1b577f2c2ec469d83bacec8fdb26ce95", + "2715959f1b577f2c2ec469d83bacec8fdb26ce95", "reftest" - ], + ], "css/box_shadow_default_color_ref.html": [ - "3fff8f71892b49d972279f53c6a94aa422c8b242", + "3fff8f71892b49d972279f53c6a94aa422c8b242", "support" - ], + ], "css/box_shadow_inset_a.html": [ - "ba4b5b19f92e6c9e556f3df368b14cf16d33fc59", + "ba4b5b19f92e6c9e556f3df368b14cf16d33fc59", "reftest" - ], + ], "css/box_shadow_inset_bg.html": [ - "eaa9f5211b5b1a6d6e5fd2a574dd7e3f5deade07", + "eaa9f5211b5b1a6d6e5fd2a574dd7e3f5deade07", "reftest" - ], + ], "css/box_shadow_inset_bg_ref.html": [ - "7c7229ff5da8c9281109fe03bd225f34b4c001ad", + "7c7229ff5da8c9281109fe03bd225f34b4c001ad", "support" - ], + ], "css/box_shadow_inset_parsing_a.html": [ - "741f697f1c8c6d9fb6690a746dbd5da28ece6d7b", + "741f697f1c8c6d9fb6690a746dbd5da28ece6d7b", "reftest" - ], + ], "css/box_shadow_inset_parsing_ref.html": [ - "3811f315635b260d6dfbba799e69ea4f45fb19d1", + "3811f315635b260d6dfbba799e69ea4f45fb19d1", "support" - ], + ], "css/box_shadow_inset_ref.html": [ - "48ee086ea3d821a71ad000270e7aa72d4218b62e", + "48ee086ea3d821a71ad000270e7aa72d4218b62e", "support" - ], + ], "css/box_shadow_paint_order_a.html": [ - "035d075d15f34f51c6350c098f6a27eb5eae1c85", + "035d075d15f34f51c6350c098f6a27eb5eae1c85", "reftest" - ], + ], "css/box_shadow_paint_order_ref.html": [ - "1510d570d716bafeed01abe974f99978fad96f79", + "1510d570d716bafeed01abe974f99978fad96f79", "support" - ], + ], "css/box_shadow_spread_a.html": [ - "8f593aefae5d674b90ac3bbfd61226711d0d0deb", + "8f593aefae5d674b90ac3bbfd61226711d0d0deb", "reftest" - ], + ], "css/box_shadow_spread_ref.html": [ - "bb0cc7670442572a04c4233f07a2129653e6be63", + "bb0cc7670442572a04c4233f07a2129653e6be63", "support" - ], + ], "css/box_sizing_border_box_a.html": [ - "8be1adaf2021d219181b727bcf5c0208c4aba7bd", + "8be1adaf2021d219181b727bcf5c0208c4aba7bd", "reftest" - ], + ], "css/box_sizing_border_box_ref.html": [ - "9ae21d599f903fb0805bdc1a577fac2201d1fb31", + "9ae21d599f903fb0805bdc1a577fac2201d1fb31", "support" - ], + ], "css/box_sizing_sanity_check_a.html": [ - "de3de80ec3001705aef0d5f067af951f8d5d01d3", + "de3de80ec3001705aef0d5f067af951f8d5d01d3", "reftest" - ], + ], "css/box_sizing_sanity_check_ref.html": [ - "1925994c91187a3f833dde74224ddb62186d07c3", + "1925994c91187a3f833dde74224ddb62186d07c3", "support" - ], + ], "css/br-ref.html": [ - "0dc5ad017ece17d946561e9568c0d86cf62af7db", + "0dc5ad017ece17d946561e9568c0d86cf62af7db", "support" - ], + ], "css/br.html": [ - "ec893104705591c1a0812d45c5e8081a85695eef", + "ec893104705591c1a0812d45c5e8081a85695eef", "reftest" - ], + ], "css/bubbles.png": [ - "dbd4db86005ad2cb78753ff669331009a3fbdf31", + "dbd4db86005ad2cb78753ff669331009a3fbdf31", "support" - ], + ], "css/bug-1361013-cousin-sharing-ref.html": [ - "9c06cce2a1aa8b83f27f97e32127ce156af3e44a", + "9c06cce2a1aa8b83f27f97e32127ce156af3e44a", "support" - ], + ], "css/bug-1361013-cousin-sharing.html": [ - "44f78042bcaefd9e60aadd04a0b91ae53be4d47f", + "44f78042bcaefd9e60aadd04a0b91ae53be4d47f", "reftest" - ], + ], "css/bug_1345483.html": [ - "87d0d357c6370f03176fd70c5aa2daabc0c2ee77", + "87d0d357c6370f03176fd70c5aa2daabc0c2ee77", "testharness" - ], + ], "css/button_css_width.html": [ - "8013fca55c0d5b945af437a468c48270b170eb39", + "8013fca55c0d5b945af437a468c48270b170eb39", "reftest" - ], + ], "css/button_css_width_ref.html": [ - "8e4ef5646be62ad941a42fc7ac6668e17739f565", + "8e4ef5646be62ad941a42fc7ac6668e17739f565", "support" - ], + ], "css/button_whitespace_a.html": [ - "cf68d039365691fdc2f96f2ba2431f5991af7821", + "cf68d039365691fdc2f96f2ba2431f5991af7821", "reftest" - ], + ], "css/button_whitespace_ref.html": [ - "651caabb1d7041e5640354ebb34afb618791fa3f", + "651caabb1d7041e5640354ebb34afb618791fa3f", "support" - ], + ], "css/calc-basic-ref.html": [ - "f2120ffdd68e00de0aa67503e7ae944a13c2485f", + "f2120ffdd68e00de0aa67503e7ae944a13c2485f", "support" - ], + ], "css/calc-basic.html": [ - "427c126064123eff7956ecd8e03704275377eb75", + "427c126064123eff7956ecd8e03704275377eb75", "reftest" - ], + ], "css/calc-number-serialization.html": [ - "4b8ac814e77c6710bdf55092ec15f13556aee220", + "4b8ac814e77c6710bdf55092ec15f13556aee220", "testharness" - ], + ], "css/canvas_as_block_element_a.html": [ - "747d90f8ded54e872fa54811ff2bb70b14f52df8", + "747d90f8ded54e872fa54811ff2bb70b14f52df8", "reftest" - ], + ], "css/canvas_as_block_element_ref.html": [ - "7d9edf454915bf764a297412457229db26773d57", + "7d9edf454915bf764a297412457229db26773d57", "support" - ], + ], "css/canvas_linear_gradient_a.html": [ - "9042ab36ec1ed3497d56bce1aab0cafca82a4130", + "9042ab36ec1ed3497d56bce1aab0cafca82a4130", "reftest" - ], + ], "css/canvas_linear_gradient_ref.html": [ - "b820555a7d377fcad935b92867d371edb989f79a", + "b820555a7d377fcad935b92867d371edb989f79a", "support" - ], + ], "css/canvas_over_area.html": [ - "c1e062cad6861fa1141e2d1d290835638dd53f98", + "c1e062cad6861fa1141e2d1d290835638dd53f98", "reftest" - ], + ], "css/canvas_over_area_ref.html": [ - "5cfa3c76ad698eb716b597d9490444c8b7c6f75d", + "5cfa3c76ad698eb716b597d9490444c8b7c6f75d", "support" - ], + ], "css/canvas_radial_gradient.png": [ - "0192aa2b240e1d082a1ed270c2d18c7879e4cfe2", + "0192aa2b240e1d082a1ed270c2d18c7879e4cfe2", "support" - ], + ], "css/canvas_radial_gradient_a.html": [ - "1d956a5f7bd636ff0b09b0685b8f9ddfce9fe6fb", + "1d956a5f7bd636ff0b09b0685b8f9ddfce9fe6fb", "reftest" - ], + ], "css/canvas_radial_gradient_ref.html": [ - "4376341d31bda80308e410284d2ff87afc66e08b", + "4376341d31bda80308e410284d2ff87afc66e08b", "support" - ], + ], "css/car.jpg": [ - "ef09b796c638d0b305e1a4fa99c8c43fdd183f19", + "ef09b796c638d0b305e1a4fa99c8c43fdd183f19", "support" - ], + ], "css/case-insensitive-font-family-ref.html": [ - "8d0e1adeba3223daad43f795b643c5a6e66b08a8", + "8d0e1adeba3223daad43f795b643c5a6e66b08a8", "support" - ], + ], "css/case-insensitive-font-family.html": [ - "70b3be59507e02e54119038a207d3122dd6a2b06", + "70b3be59507e02e54119038a207d3122dd6a2b06", "reftest" - ], + ], "css/class-namespaces-ref.html": [ - "96c68eff3664a3c51da17ca2cef0f28fe62e78ad", + "96c68eff3664a3c51da17ca2cef0f28fe62e78ad", "support" - ], + ], "css/class-namespaces.html": [ - "239d1629fc3144da63b630dfb5d3a669c6353574", + "239d1629fc3144da63b630dfb5d3a669c6353574", "reftest" - ], + ], "css/clear_generated_content_table_a.html": [ - "114cbc44e7de6827c88814a8d11cb40ec7c04ebd", + "114cbc44e7de6827c88814a8d11cb40ec7c04ebd", "reftest" - ], + ], "css/clear_generated_content_table_ref.html": [ - "abf1ace7513a8bb539bbae94c08316e56e2144b5", + "abf1ace7513a8bb539bbae94c08316e56e2144b5", "support" - ], + ], "css/clip_a.html": [ - "c886cfe1dadd9dc42a9d2c143b9dd9a42fec8c4f", + "c886cfe1dadd9dc42a9d2c143b9dd9a42fec8c4f", "reftest" - ], + ], "css/clip_ref.html": [ - "61db5ae8130188adfce448057ea8188b8132a52e", + "61db5ae8130188adfce448057ea8188b8132a52e", "support" - ], + ], "css/complex_glyphs_a.html": [ - "08032c978d50c97f529e74ef4c21bc248f0795e7", + "08032c978d50c97f529e74ef4c21bc248f0795e7", "reftest" - ], + ], "css/complex_glyphs_ref.html": [ - "d168d10945df24cf1cf9a464315ea59214c218ca", + "d168d10945df24cf1cf9a464315ea59214c218ca", "support" - ], + ], "css/content_color.html": [ - "eb12f3729492816714d6a8e622a5e69e49e7d7ae", + "eb12f3729492816714d6a8e622a5e69e49e7d7ae", "reftest" - ], + ], "css/content_color_ref.html": [ - "4a34431c367cc0eaa403790cd610dc5fec650c51", + "4a34431c367cc0eaa403790cd610dc5fec650c51", "support" - ], + ], "css/counters_nested_a.html": [ - "bff0efd91b78cf7489180cab8871e07a71fd28ae", + "bff0efd91b78cf7489180cab8871e07a71fd28ae", "reftest" - ], + ], "css/counters_nested_ref.html": [ - "b42f6509c83673528496d6239b71011a46ac1b4f", + "b42f6509c83673528496d6239b71011a46ac1b4f", "support" - ], + ], "css/counters_simple_a.html": [ - "e2b46658ce2aebf6c8f97a391a3cd5fa3301540a", + "e2b46658ce2aebf6c8f97a391a3cd5fa3301540a", "reftest" - ], + ], "css/counters_simple_ref.html": [ - "b1adc96fb26dd228522fef871fa8f7cf2fd01c7f", + "b1adc96fb26dd228522fef871fa8f7cf2fd01c7f", "support" - ], + ], "css/css-position-3/position-sticky-bottom-ref.html": [ - "7d4953d77971bf054c91b9f0f3906321b7f6cd52", + "7d4953d77971bf054c91b9f0f3906321b7f6cd52", "support" - ], + ], "css/css-position-3/position-sticky-bottom.html": [ - "18c5cc415c56c444fb9ba7298af1cceb1f412606", + "18c5cc415c56c444fb9ba7298af1cceb1f412606", "reftest" - ], + ], "css/css-position-3/position-sticky-flexbox-ref.html": [ - "554ffa6d6bc9a7d76087b45649c1a69824eb2e59", + "554ffa6d6bc9a7d76087b45649c1a69824eb2e59", "support" - ], + ], "css/css-position-3/position-sticky-flexbox.html": [ - "cf4e8cbcdaad83ba9ef45ade2ec147f8e0698c2b", + "cf4e8cbcdaad83ba9ef45ade2ec147f8e0698c2b", "reftest" - ], + ], "css/css-position-3/position-sticky-get-bounding-client-rect.html": [ - "18b2acfe16f77f3242b51e3a64c9b39d6a4f50b5", + "18b2acfe16f77f3242b51e3a64c9b39d6a4f50b5", "testharness" - ], + ], "css/css-position-3/position-sticky-grid-ref.html": [ - "9af81129a630acecd755d9f1c05a728247d44a22", + "9af81129a630acecd755d9f1c05a728247d44a22", "support" - ], + ], "css/css-position-3/position-sticky-grid.html": [ - "c2c1b8ec74c62f8f707909cd560f1492b6def603", + "c2c1b8ec74c62f8f707909cd560f1492b6def603", "reftest" - ], + ], "css/css-position-3/position-sticky-inflow-position-ref.html": [ - "beebd7e5aeb7c79200907f3d0f909f41c10c8e75", + "beebd7e5aeb7c79200907f3d0f909f41c10c8e75", "support" - ], + ], "css/css-position-3/position-sticky-inflow-position.html": [ - "fc7e8290b15309690d178e5a03750742a69e0425", + "fc7e8290b15309690d178e5a03750742a69e0425", "reftest" - ], + ], "css/css-position-3/position-sticky-inline-ref.html": [ - "11e2909f47b3b785652f509215876fd5e3f36c1e", + "11e2909f47b3b785652f509215876fd5e3f36c1e", "support" - ], + ], "css/css-position-3/position-sticky-inline.html": [ - "cc8694d42363278eaec0704a7130ca1c8a6d7433", + "cc8694d42363278eaec0704a7130ca1c8a6d7433", "reftest" - ], + ], "css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html": [ - "5b2d705e2d0721c072bedf1dcc489fae25b2014f", + "5b2d705e2d0721c072bedf1dcc489fae25b2014f", "testharness" - ], + ], "css/css-position-3/position-sticky-left-ref.html": [ - "e0de6fbb812affcd92d86204a19fae498c8145d2", + "e0de6fbb812affcd92d86204a19fae498c8145d2", "support" - ], + ], "css/css-position-3/position-sticky-left.html": [ - "40a4d7282dbe503ceb56c49c5133cca87b206e61", + "40a4d7282dbe503ceb56c49c5133cca87b206e61", "reftest" - ], + ], "css/css-position-3/position-sticky-margins-ref.html": [ - "30490398923a64e6dc62390f0e30f230cfa9b583", + "30490398923a64e6dc62390f0e30f230cfa9b583", "support" - ], + ], "css/css-position-3/position-sticky-margins.html": [ - "5b38ab4c9961991ded95aa2cd291c78517a07f8f", + "5b38ab4c9961991ded95aa2cd291c78517a07f8f", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-bottom-ref.html": [ - "6be2b5a7b1d0aad2a8e37a7e39bfee401afe8a0a", + "6be2b5a7b1d0aad2a8e37a7e39bfee401afe8a0a", "support" - ], + ], "css/css-position-3/position-sticky-nested-bottom.html": [ - "d4d20e571a3724a37b307cd4fbaf9674cca2dcf9", + "d4d20e571a3724a37b307cd4fbaf9674cca2dcf9", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-inline-ref.html": [ - "694a3cc84037a546f33c5bf33761c798de4e6b56", + "694a3cc84037a546f33c5bf33761c798de4e6b56", "support" - ], + ], "css/css-position-3/position-sticky-nested-inline.html": [ - "f44c0e69b59f87b23f4f995926218a60df73c620", + "f44c0e69b59f87b23f4f995926218a60df73c620", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-left-ref.html": [ - "d3ab0d593d6a29193e4ba3805eb62e0a8aea0338", + "d3ab0d593d6a29193e4ba3805eb62e0a8aea0338", "support" - ], + ], "css/css-position-3/position-sticky-nested-left.html": [ - "b5a23abeccf5445b128b1ed6196cfe7e75101625", + "b5a23abeccf5445b128b1ed6196cfe7e75101625", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-right-ref.html": [ - "07852ba60415bacdfd7011c890b4ec1103072b4b", + "07852ba60415bacdfd7011c890b4ec1103072b4b", "support" - ], + ], "css/css-position-3/position-sticky-nested-right.html": [ - "411f722eec779ebb61653e28d5b6bf795df60e85", + "411f722eec779ebb61653e28d5b6bf795df60e85", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-table-ref.html": [ - "9327d04e83f979f58489f77feecb39525a902042", + "9327d04e83f979f58489f77feecb39525a902042", "support" - ], + ], "css/css-position-3/position-sticky-nested-table.html": [ - "be3fbce1560f787c37967e1077098d157133cd96", + "be3fbce1560f787c37967e1077098d157133cd96", "reftest" - ], + ], "css/css-position-3/position-sticky-nested-top-ref.html": [ - "f4696ce7d0ab1a7d625b8a9a6fc2b10538ae70c9", + "f4696ce7d0ab1a7d625b8a9a6fc2b10538ae70c9", "support" - ], + ], "css/css-position-3/position-sticky-nested-top.html": [ - "1ed9dc2a210b8c2510f2d88ae90d6500536751f5", + "1ed9dc2a210b8c2510f2d88ae90d6500536751f5", "reftest" - ], + ], "css/css-position-3/position-sticky-offset-top-left.html": [ - "ade9e108cf45039173066cedec39462fa37e5d95", + "ade9e108cf45039173066cedec39462fa37e5d95", "testharness" - ], + ], "css/css-position-3/position-sticky-overflow-padding-ref.html": [ - "b0e1d4680bcf6ed58b8fb0798f649f0db54d6f0e", + "b0e1d4680bcf6ed58b8fb0798f649f0db54d6f0e", "support" - ], + ], "css/css-position-3/position-sticky-overflow-padding.html": [ - "0324861219b414c7ad10a9db501fba0493cad278", + "0324861219b414c7ad10a9db501fba0493cad278", "reftest" - ], + ], "css/css-position-3/position-sticky-parsing.html": [ - "f6f587e615f5759f7a706a57defdd8bfaa836aa6", + "f6f587e615f5759f7a706a57defdd8bfaa836aa6", "testharness" - ], + ], "css/css-position-3/position-sticky-right-ref.html": [ - "14ed476834bb5eb31e80e85e252424c7b9679685", + "14ed476834bb5eb31e80e85e252424c7b9679685", "support" - ], + ], "css/css-position-3/position-sticky-right.html": [ - "6c4e696de8d427a342e457a9907d76b45ca5d456", + "6c4e696de8d427a342e457a9907d76b45ca5d456", "reftest" - ], + ], "css/css-position-3/position-sticky-stacking-context-ref.html": [ - "0fe20bd3c339a1a92a3481653d6ea6d85ec054df", + "0fe20bd3c339a1a92a3481653d6ea6d85ec054df", "support" - ], + ], "css/css-position-3/position-sticky-stacking-context.html": [ - "36acf82f4f94f0920146689687cd5dca23cffa30", + "36acf82f4f94f0920146689687cd5dca23cffa30", "reftest" - ], + ], "css/css-position-3/position-sticky-table-tfoot-bottom-ref.html": [ - "a89dd6a485eda34abdf4f28bcbee0636b6dc43b0", + "a89dd6a485eda34abdf4f28bcbee0636b6dc43b0", "support" - ], + ], "css/css-position-3/position-sticky-table-tfoot-bottom.html": [ - "17fe359948c1354cc802c104a865556f6279b10d", + "17fe359948c1354cc802c104a865556f6279b10d", "reftest" - ], + ], "css/css-position-3/position-sticky-table-th-bottom-ref.html": [ - "2aa5c08a55d29a089d57e4303d893dfd15920abf", + "2aa5c08a55d29a089d57e4303d893dfd15920abf", "support" - ], + ], "css/css-position-3/position-sticky-table-th-bottom.html": [ - "878732fd5bc7c28f048d8079f9d7a19d0e7c0f22", + "878732fd5bc7c28f048d8079f9d7a19d0e7c0f22", "reftest" - ], + ], "css/css-position-3/position-sticky-table-th-left-ref.html": [ - "cef7539c16c18ea118831ea107e2f8a2e74380cf", + "cef7539c16c18ea118831ea107e2f8a2e74380cf", "support" - ], + ], "css/css-position-3/position-sticky-table-th-left.html": [ - "45643506dc9504dc6982bae4c28e0616082d8e1c", + "45643506dc9504dc6982bae4c28e0616082d8e1c", "reftest" - ], + ], "css/css-position-3/position-sticky-table-th-right-ref.html": [ - "5d778d1bfc162bc2c480000ebd602855056b3801", + "5d778d1bfc162bc2c480000ebd602855056b3801", "support" - ], + ], "css/css-position-3/position-sticky-table-th-right.html": [ - "204b6e5d043233664e017303060d3fe3b0691b2c", + "204b6e5d043233664e017303060d3fe3b0691b2c", "reftest" - ], + ], "css/css-position-3/position-sticky-table-th-top-ref.html": [ - "692dbcfdffdc9e23f019a74042feaa5a7eb29736", + "692dbcfdffdc9e23f019a74042feaa5a7eb29736", "support" - ], + ], "css/css-position-3/position-sticky-table-th-top.html": [ - "7e57a6900842c4874935ba355396bb6b88655111", + "7e57a6900842c4874935ba355396bb6b88655111", "reftest" - ], + ], "css/css-position-3/position-sticky-table-thead-top-ref.html": [ - "f313d60859c10c46d8ac9d2aa1545e5a8c8c3220", + "f313d60859c10c46d8ac9d2aa1545e5a8c8c3220", "support" - ], + ], "css/css-position-3/position-sticky-table-thead-top.html": [ - "560a45efeb105584dbd4ad1743a80e51c1b60f36", + "560a45efeb105584dbd4ad1743a80e51c1b60f36", "reftest" - ], + ], "css/css-position-3/position-sticky-table-tr-bottom-ref.html": [ - "7f9ef0749629a3f29d0fae56723cbbd2e639ac53", + "7f9ef0749629a3f29d0fae56723cbbd2e639ac53", "support" - ], + ], "css/css-position-3/position-sticky-table-tr-bottom.html": [ - "e306d9654a27414759dc55068df6b566304e57e6", + "e306d9654a27414759dc55068df6b566304e57e6", "reftest" - ], + ], "css/css-position-3/position-sticky-table-tr-top-ref.html": [ - "9aa9242d9ceab8e41e6126d0c3b5049dc412121c", + "9aa9242d9ceab8e41e6126d0c3b5049dc412121c", "support" - ], + ], "css/css-position-3/position-sticky-table-tr-top.html": [ - "361535c99c2e38ea41cc01ca5a7ba49840ebbb43", + "361535c99c2e38ea41cc01ca5a7ba49840ebbb43", "reftest" - ], + ], "css/css-position-3/position-sticky-top-ref.html": [ - "3003b94e5dbe13bf537ed81a3bdb2e62907cb9e4", + "3003b94e5dbe13bf537ed81a3bdb2e62907cb9e4", "support" - ], + ], "css/css-position-3/position-sticky-top.html": [ - "fc07313a20da4b32bd632e6fc8fa20ae98e51ec3", + "fc07313a20da4b32bd632e6fc8fa20ae98e51ec3", "reftest" - ], + ], "css/css-position-3/position-sticky-writing-modes-ref.html": [ - "8b171fa5583d4d1344a79c11b62701dafdcdba17", + "8b171fa5583d4d1344a79c11b62701dafdcdba17", "support" - ], + ], "css/css-position-3/position-sticky-writing-modes.html": [ - "7f10ff5daf3c17890b8d23088a36b3f7a0447b0f", + "7f10ff5daf3c17890b8d23088a36b3f7a0447b0f", "reftest" - ], + ], "css/css/ahem.css": [ - "51eede74aaa0b43f2c9235019bc73a508b1f14e4", + "51eede74aaa0b43f2c9235019bc73a508b1f14e4", "support" - ], + ], "css/data_img_a.html": [ - "f93c93f27d2011a0fc7ba26a5e73813e4eadbb81", + "f93c93f27d2011a0fc7ba26a5e73813e4eadbb81", "reftest" - ], + ], "css/data_img_b.html": [ - "265d57ec76ba91e99de0431975a87de46087dad8", + "265d57ec76ba91e99de0431975a87de46087dad8", "support" - ], + ], "css/deferred-paint-ref.html": [ - "ffd940266143bf9d6992f64ffdd6ff79fabe63dc", + "ffd940266143bf9d6992f64ffdd6ff79fabe63dc", "support" - ], + ], "css/deferred-paint.html": [ - "552a9456b026b647bf726f0efa55f63ccbae532f", + "552a9456b026b647bf726f0efa55f63ccbae532f", "reftest" - ], + ], "css/direction_style_caching.html": [ - "0f53b4a120463d12ea180647c43841fb3c048f49", + "0f53b4a120463d12ea180647c43841fb3c048f49", "reftest" - ], + ], "css/direction_style_caching_ref.html": [ - "b59a15a973d5378584643dc70472b97b64de3644", + "b59a15a973d5378584643dc70472b97b64de3644", "support" - ], + ], "css/dirty_viewport.html": [ - "5adc2687d51368e2d340dfa3b374d9c938587fa9", + "5adc2687d51368e2d340dfa3b374d9c938587fa9", "reftest" - ], + ], "css/dirty_viewport_inner.html": [ - "de6a46602a6a838b37e1850dc16ff87bbeaafdca", + "de6a46602a6a838b37e1850dc16ff87bbeaafdca", "support" - ], + ], "css/dirty_viewport_ref.html": [ - "759da0245edb74c2ab6b6808613acbf8313567d3", + "759da0245edb74c2ab6b6808613acbf8313567d3", "support" - ], + ], "css/display_table_cell_intrinsic_width_a.html": [ - "ad9ab9863bc6874fec0c0c68695c4b2fef404fd0", + "ad9ab9863bc6874fec0c0c68695c4b2fef404fd0", "reftest" - ], + ], "css/display_table_cell_intrinsic_width_ref.html": [ - "7661dd6adf18a176a220b20c3b96da82cfc86c10", + "7661dd6adf18a176a220b20c3b96da82cfc86c10", "support" - ], + ], "css/ellipsis_font_panic-ref.html": [ - "1471933c7bc1df9592d1e2a30c32201b0abdaf8a", + "1471933c7bc1df9592d1e2a30c32201b0abdaf8a", "support" - ], + ], "css/ellipsis_font_panic.html": [ - "6d63195ea18d08f4384576092bd9f6324bbcee3b", + "6d63195ea18d08f4384576092bd9f6324bbcee3b", "reftest" - ], + ], "css/empty-keyframes.html": [ - "9f8935fb7f51219bb3ee07335e208a63c9edde81", + "9f8935fb7f51219bb3ee07335e208a63c9edde81", "testharness" - ], + ], "css/empty_cells_a.html": [ - "db44cfc5d7b53cdd9517e53426da48f4fd5272d1", + "db44cfc5d7b53cdd9517e53426da48f4fd5272d1", "reftest" - ], + ], "css/empty_cells_ref.html": [ - "94dcfaa28897ee8d38c10ae742361fef7bc24880", + "94dcfaa28897ee8d38c10ae742361fef7bc24880", "support" - ], + ], "css/empty_pseudo_selector.html": [ - "a477b8a5ac14ce93b6b26949cf57b8d5e61e7f2a", + "a477b8a5ac14ce93b6b26949cf57b8d5e61e7f2a", "support" - ], + ], "css/empty_pseudo_selector_ref.html": [ - "4c420045dcd53f67e53836e767bd898e32e9cc6f", + "4c420045dcd53f67e53836e767bd898e32e9cc6f", "support" - ], + ], "css/external_media_query_link.html": [ - "65baa6435c28bf07725e7657dcb83365886b73d7", + "65baa6435c28bf07725e7657dcb83365886b73d7", "reftest" - ], + ], "css/external_media_query_ref.html": [ - "6ac05f5f39418b98346dba114bef3eee267a65a2", + "6ac05f5f39418b98346dba114bef3eee267a65a2", "support" - ], + ], "css/external_media_query_style.html": [ - "159df328933e7889fd4f1916da6396cab161735a", + "159df328933e7889fd4f1916da6396cab161735a", "reftest" - ], + ], "css/filter_inline_a.html": [ - "9392ab01de8f227ca558eb6b372f8f6857b25554", + "9392ab01de8f227ca558eb6b372f8f6857b25554", "reftest" - ], + ], "css/filter_inline_ref.html": [ - "420d796e4b13f118da38dfb65668c5b5fbd3759a", + "420d796e4b13f118da38dfb65668c5b5fbd3759a", "support" - ], + ], "css/filter_opacity_a.html": [ - "6c488755628e4745c65ca660ace554c82bb615ef", + "6c488755628e4745c65ca660ace554c82bb615ef", "reftest" - ], + ], "css/filter_opacity_ref.html": [ - "98e0d68ba08d24ad2232f585796e755c884a16f4", + "98e0d68ba08d24ad2232f585796e755c884a16f4", "support" - ], + ], "css/filter_sepia_a.html": [ - "936d6a99153225328275d09a06d546c6039e1f71", + "936d6a99153225328275d09a06d546c6039e1f71", "reftest" - ], + ], "css/filter_sepia_ref.html": [ - "1fcf8ddb698156b94d6632d7951c6fcadb1ba3ba", + "1fcf8ddb698156b94d6632d7951c6fcadb1ba3ba", "support" - ], + ], "css/first_child_pseudo_a.html": [ - "c32fe0857fe5df8f65dd1eea453ad4920c8c78ad", + "c32fe0857fe5df8f65dd1eea453ad4920c8c78ad", "reftest" - ], + ], "css/first_child_pseudo_b.html": [ - "5ddf44ad4df43ad193102ef8a1ec1c56f64f15d2", + "5ddf44ad4df43ad193102ef8a1ec1c56f64f15d2", "support" - ], + ], "css/first_of_type_pseudo_a.html": [ - "40a1066a4ae15e504a3b7c81d7f9cfe479d07989", + "40a1066a4ae15e504a3b7c81d7f9cfe479d07989", "reftest" - ], + ], "css/first_of_type_pseudo_b.html": [ - "46e9528f8efd150343def5987423373f68a69c36", + "46e9528f8efd150343def5987423373f68a69c36", "support" - ], + ], "css/fixed_percent.html": [ - "ccc896071506f2a642d1bcc59441c228082c2437", + "ccc896071506f2a642d1bcc59441c228082c2437", "reftest" - ], + ], "css/fixed_percent_ref.html": [ - "5963b38c18432524a4dd91cffdf1e05b8ed97864", + "5963b38c18432524a4dd91cffdf1e05b8ed97864", "support" - ], + ], "css/fixed_position_css_clip.html": [ - "e8979e3b15f0b418c31b86918c7fc02844192a73", + "e8979e3b15f0b418c31b86918c7fc02844192a73", "reftest" - ], + ], "css/fixed_position_css_clip_ref.html": [ - "2eb73b74768f58026712cc328e5fa129bba750c6", + "2eb73b74768f58026712cc328e5fa129bba750c6", "support" - ], + ], "css/fixed_width_overrides_child_intrinsic_width_a.html": [ - "f12c3e9e65aa8201ff0a1e7933d0f9caf81a904f", + "f12c3e9e65aa8201ff0a1e7933d0f9caf81a904f", "reftest" - ], + ], "css/fixed_width_overrides_child_intrinsic_width_ref.html": [ - "439e8a049fcedd11e9257f9799a219c58bcff2e0", + "439e8a049fcedd11e9257f9799a219c58bcff2e0", "support" - ], + ], "css/flex-item-assign-inline-size.html": [ - "0ca2243afcef1dc923959fba265f4cc2d0462ad1", + "0ca2243afcef1dc923959fba265f4cc2d0462ad1", "testharness" - ], + ], "css/flex-zero_lines.html": [ - "11786b4e328d68b78090b93aa37cc2ccbd88912e", + "11786b4e328d68b78090b93aa37cc2ccbd88912e", "reftest" - ], + ], "css/flex-zero_lines_ref.html": [ - "071d4cd1c1c8e22ff8e9f5c49808dd8002e0a224", + "071d4cd1c1c8e22ff8e9f5c49808dd8002e0a224", "support" - ], + ], "css/flex_column_direction.html": [ - "a4c612feff99a36b7c98e05f0bd6c672e0d649e3", + "a4c612feff99a36b7c98e05f0bd6c672e0d649e3", "reftest" - ], + ], "css/flex_column_direction_ref.html": [ - "3a4c2e293071bf34c2b50d71bfa2084db006d1ee", + "3a4c2e293071bf34c2b50d71bfa2084db006d1ee", "support" - ], + ], "css/flex_nochild-ref.html": [ - "590bf19772d9584e28ed6a6d077ffc0da77c45e7", + "590bf19772d9584e28ed6a6d077ffc0da77c45e7", "support" - ], + ], "css/flex_nochild.html": [ - "7bab5719de5b91bd748aeb2499339cc22e1001d0", + "7bab5719de5b91bd748aeb2499339cc22e1001d0", "reftest" - ], + ], "css/flex_root_percent_size.html": [ - "6dec362e9622dc9559ebe64e60ef7b4cb8525ad4", + "6dec362e9622dc9559ebe64e60ef7b4cb8525ad4", "reftest" - ], + ], "css/flex_root_percent_size_ref.html": [ - "1e6f1a2a0d5817bac82dc6fa3d69e591eec0d344", + "1e6f1a2a0d5817bac82dc6fa3d69e591eec0d344", "support" - ], + ], "css/flex_row_direction.html": [ - "b2ec365090537cbc826c8f6e977552a148272288", + "b2ec365090537cbc826c8f6e977552a148272288", "reftest" - ], + ], "css/flex_row_direction_ref.html": [ - "dfb59df1136abf59922539560f3cb6822d5ced2e", + "dfb59df1136abf59922539560f3cb6822d5ced2e", "support" - ], + ], "css/float-abspos.html": [ - "f691c1756f0dd5b6744952e1516950bacaaf4d33", + "f691c1756f0dd5b6744952e1516950bacaaf4d33", "testharness" - ], + ], "css/float_clearance_a.html": [ - "56d292a2dfa81fe66dd5c220a1fe3ab7c4bc8d52", + "56d292a2dfa81fe66dd5c220a1fe3ab7c4bc8d52", "reftest" - ], + ], "css/float_clearance_intrinsic_width_a.html": [ - "7066f4f023aa09ced1244a39b4fcd20a6bc2dd6e", + "7066f4f023aa09ced1244a39b4fcd20a6bc2dd6e", "reftest" - ], + ], "css/float_clearance_intrinsic_width_ref.html": [ - "d54b8b01ec827a0f934ee7349f6e0ecf2e35e77a", + "d54b8b01ec827a0f934ee7349f6e0ecf2e35e77a", "support" - ], + ], "css/float_clearance_ref.html": [ - "69f5a1019302f4b7f35170cd1a75f554c2a6946f", + "69f5a1019302f4b7f35170cd1a75f554c2a6946f", "support" - ], + ], "css/float_cleared_with_just_height.html": [ - "e32424afe58cafd90a678b427179d487ea0ce16f", + "e32424afe58cafd90a678b427179d487ea0ce16f", "reftest" - ], + ], "css/float_cleared_with_just_height_ref.html": [ - "5a4d3fdf5096216a07f145eb4f2bd114e8a9acea", + "5a4d3fdf5096216a07f145eb4f2bd114e8a9acea", "support" - ], + ], "css/float_intrinsic_height.html": [ - "51daad9c536cce37f9102b555f0a55525f839160", + "51daad9c536cce37f9102b555f0a55525f839160", "reftest" - ], + ], "css/float_intrinsic_height_ref.html": [ - "97add6c2d43ecafa77fb7a1347cce7dca660afb7", + "97add6c2d43ecafa77fb7a1347cce7dca660afb7", "support" - ], + ], "css/float_intrinsic_width_a.html": [ - "0b95a45374033a79aa62691553726c13ac54d7d8", + "0b95a45374033a79aa62691553726c13ac54d7d8", "reftest" - ], + ], "css/float_intrinsic_width_ref.html": [ - "3e3865ab362305de61980f2add1be17ed5970a5d", + "3e3865ab362305de61980f2add1be17ed5970a5d", "support" - ], + ], "css/float_overflow_area_a.html": [ - "5f663e4beea4591618219e09e418541257dfe73c", + "5f663e4beea4591618219e09e418541257dfe73c", "reftest" - ], + ], "css/float_overflow_area_ref.html": [ - "a313c3a1359c5a6888dd29c31486a4cfd1085d3d", + "a313c3a1359c5a6888dd29c31486a4cfd1085d3d", "support" - ], + ], "css/float_positioned_pseudo_stacking_context.html": [ - "9aae3ec767e242e574ad2bd7ce6bfe14cbae9fdb", + "9aae3ec767e242e574ad2bd7ce6bfe14cbae9fdb", "reftest" - ], + ], "css/float_positioned_pseudo_stacking_context_ref.html": [ - "ca58764705c78700483540b73acdf2463d31f563", + "ca58764705c78700483540b73acdf2463d31f563", "support" - ], + ], "css/float_relative_to_position.html": [ - "bdeb133ef118746c10a46cf9400839a0a612f7a7", + "bdeb133ef118746c10a46cf9400839a0a612f7a7", "testharness" - ], + ], "css/float_right_intrinsic_width_a.html": [ - "ee47bd9244b165505e7d7adb2cba899b939e0aa3", + "ee47bd9244b165505e7d7adb2cba899b939e0aa3", "reftest" - ], + ], "css/float_right_intrinsic_width_ref.html": [ - "841fd0ca477777d5864db761822fbedc75ba3e52", + "841fd0ca477777d5864db761822fbedc75ba3e52", "support" - ], + ], "css/float_speculation_negative_inline_margins_a.html": [ - "383ec5b55523014029ebf03058aa5ac9b9924b2a", + "383ec5b55523014029ebf03058aa5ac9b9924b2a", "reftest" - ], + ], "css/float_speculation_negative_inline_margins_ref.html": [ - "db43f561b8925b9f2c50ec85dc415c741d1789e6", + "db43f561b8925b9f2c50ec85dc415c741d1789e6", "support" - ], + ], "css/float_table_a.html": [ - "c4b4a76e4c4daae158a85d1fc2825231de38839a", + "c4b4a76e4c4daae158a85d1fc2825231de38839a", "reftest" - ], + ], "css/float_table_ref.html": [ - "78d1f44fddd3a1f4223cd0dc00d199e04f83124e", + "78d1f44fddd3a1f4223cd0dc00d199e04f83124e", "support" - ], + ], "css/float_under_top_margin_a.html": [ - "ffe30dac16d7cfced851c23201afff8e71e5701b", + "ffe30dac16d7cfced851c23201afff8e71e5701b", "reftest" - ], + ], "css/float_under_top_margin_ref.html": [ - "904cbd5c66d22b936936d0043c6449d3359206ff", + "904cbd5c66d22b936936d0043c6449d3359206ff", "support" - ], + ], "css/floated_generated_content_a.html": [ - "7e82d877bbb81e6934e0fc14d725feaabd5bf3ef", + "7e82d877bbb81e6934e0fc14d725feaabd5bf3ef", "reftest" - ], + ], "css/floated_generated_content_b.html": [ - "ae2001e7ecede5a43e92d850959ba4ef2d7ca0ce", + "ae2001e7ecede5a43e92d850959ba4ef2d7ca0ce", "support" - ], + ], "css/floated_list_item_a.html": [ - "226d39e6d7a0382f66b8120955211cf54c8456fa", + "226d39e6d7a0382f66b8120955211cf54c8456fa", "reftest" - ], + ], "css/floated_list_item_ref.html": [ - "c55d0625bb0ac76bd76ec012e41d4cb6b79a9327", + "c55d0625bb0ac76bd76ec012e41d4cb6b79a9327", "support" - ], + ], "css/floated_negative_margins_a.html": [ - "62b2859b2b3582c72a335f255baa12916f83d939", + "62b2859b2b3582c72a335f255baa12916f83d939", "reftest" - ], + ], "css/floated_negative_margins_ref.html": [ - "6fc5d275c6b184782ad7c946cd136de4c9692b87", + "6fc5d275c6b184782ad7c946cd136de4c9692b87", "support" - ], + ], "css/floated_table_with_margin_a.html": [ - "37f6cc51bcc84754d2e04153f1a4a5add7928374", + "37f6cc51bcc84754d2e04153f1a4a5add7928374", "reftest" - ], + ], "css/floated_table_with_margin_ref.html": [ - "949abda0b1fe28a40902d7be2e28bfcb1c91cb5b", + "949abda0b1fe28a40902d7be2e28bfcb1c91cb5b", "support" - ], + ], "css/floats_inline_margins_a.html": [ - "19b4910e6e04a88bb20cb0803a242880b58f570a", + "19b4910e6e04a88bb20cb0803a242880b58f570a", "reftest" - ], + ], "css/floats_inline_margins_ref.html": [ - "38da254f7d60389001553fa5a6615dce7a01ed81", + "38da254f7d60389001553fa5a6615dce7a01ed81", "support" - ], + ], "css/floats_margin_collapse_a.html": [ - "06d0b6a386b32a5c2dd47f34ea73b3ebbfe4a54f", + "06d0b6a386b32a5c2dd47f34ea73b3ebbfe4a54f", "reftest" - ], + ], "css/floats_margin_collapse_ref.html": [ - "164370a58f71625a8ab5e4807ada41626960d73a", + "164370a58f71625a8ab5e4807ada41626960d73a", "support" - ], + ], "css/floats_margin_collapse_with_clearance_a.html": [ - "a2745f796cf490d45a0d3655aab040787ecea1f7", + "a2745f796cf490d45a0d3655aab040787ecea1f7", "reftest" - ], + ], "css/floats_margin_collapse_with_clearance_ref.html": [ - "58fb43b51050491df06196a8f6b95f60297fc0c1", + "58fb43b51050491df06196a8f6b95f60297fc0c1", "support" - ], + ], "css/floats_percentage_width_a.html": [ - "051b86f70613b26cbfbdcca877d728ac66ffd220", + "051b86f70613b26cbfbdcca877d728ac66ffd220", "reftest" - ], + ], "css/floats_percentage_width_ref.html": [ - "b8110a8d1af294dd083aa28bad6a56409dce0ca1", + "b8110a8d1af294dd083aa28bad6a56409dce0ca1", "support" - ], + ], "css/focus_selector.html": [ - "1a6ca184d5f94d0e06b43e7fb6a8670ece163a9c", + "1a6ca184d5f94d0e06b43e7fb6a8670ece163a9c", "reftest" - ], + ], "css/focus_selector_ref.html": [ - "6ea1f341313d55190df4efba040f7ab6b63d43e8", + "6ea1f341313d55190df4efba040f7ab6b63d43e8", "support" - ], + ], "css/font_advance.html": [ - "777ab7e54e07146918c44dccd70a53aee329650b", + "777ab7e54e07146918c44dccd70a53aee329650b", "reftest" - ], + ], "css/font_advance_ref.html": [ - "91d871a656e6611b049eb31d1d95ae898cf8cef9", + "91d871a656e6611b049eb31d1d95ae898cf8cef9", "support" - ], + ], "css/font_color_attribute_a.html": [ - "958443ffaf84ff9f7d8a84f2c30fb5cdd574f039", + "958443ffaf84ff9f7d8a84f2c30fb5cdd574f039", "reftest" - ], + ], "css/font_color_attribute_change.html": [ - "f6c1df56c39bea8718ebfa9134dfe072be5a1510", + "f6c1df56c39bea8718ebfa9134dfe072be5a1510", "reftest" - ], + ], "css/font_color_attribute_change_ref.html": [ - "9b53db60c6fea22b136470721a6b5175880e3fd2", + "9b53db60c6fea22b136470721a6b5175880e3fd2", "support" - ], + ], "css/font_color_attribute_ref.html": [ - "7fab0492782b6b41b73a865332606b6a13ead078", + "7fab0492782b6b41b73a865332606b6a13ead078", "support" - ], + ], "css/font_face_attribute.html": [ - "193ef0309ec830361df4d9738a5c0b2aa80f4031", + "193ef0309ec830361df4d9738a5c0b2aa80f4031", "reftest" - ], + ], "css/font_face_attribute_ref.html": [ - "f018747d2ab41119af5e06d6a018101169592cab", + "f018747d2ab41119af5e06d6a018101169592cab", "support" - ], + ], "css/font_fallback_01.html": [ - "306c26fd6f8a6def8a22d4e7768984e702bbad4f", + "306c26fd6f8a6def8a22d4e7768984e702bbad4f", "reftest" - ], + ], "css/font_fallback_02.html": [ - "0ca0a8268656bfd8adce2a49d8a0bc9aa0d972fd", + "0ca0a8268656bfd8adce2a49d8a0bc9aa0d972fd", "reftest" - ], + ], "css/font_fallback_03.html": [ - "9b413df19df7e02a1cfe1e94d49553e369cab0e8", + "9b413df19df7e02a1cfe1e94d49553e369cab0e8", "reftest" - ], + ], "css/font_fallback_failed_ref.html": [ - "6cc621b90eabf3fc47999e4b403d842c6955f27a", + "6cc621b90eabf3fc47999e4b403d842c6955f27a", "support" - ], + ], "css/font_size.html": [ - "4ffd55261f2f9e5b4dd2beaf8de8fb528c1de718", + "4ffd55261f2f9e5b4dd2beaf8de8fb528c1de718", "reftest" - ], + ], "css/font_size_ref.html": [ - "6bcf54338856d79af998eefad7bc7bb9f94d0236", + "6bcf54338856d79af998eefad7bc7bb9f94d0236", "support" - ], + ], "css/font_style.html": [ - "fbbd662f0f95b912c24816a29027ff8a0c8944e8", + "fbbd662f0f95b912c24816a29027ff8a0c8944e8", "reftest" - ], + ], "css/font_style_ref.html": [ - "023dc14f501b07233f50928b03f982cdb1755c09", + "023dc14f501b07233f50928b03f982cdb1755c09", "support" - ], + ], "css/fonts/octicons/LICENSE.txt": [ - "69aa0d542690e97a9802e0af3900ed99e8bca23a", + "69aa0d542690e97a9802e0af3900ed99e8bca23a", "support" - ], + ], "css/fonts/octicons/octicons.ttf": [ - "9e09105305277eda2a93490d69217c8cf5a9986b", + "9e09105305277eda2a93490d69217c8cf5a9986b", "support" - ], + ], "css/fonts/takao-p-gothic/COPYING.html": [ - "5d7045cb7cf14e50ddc98a0ce04a0db07465ab2a", + "5d7045cb7cf14e50ddc98a0ce04a0db07465ab2a", "support" - ], + ], "css/fonts/takao-p-gothic/TakaoPGothic.ttf": [ - "24d8145de0093191f86c935ded2a9b054e24f8d2", + "24d8145de0093191f86c935ded2a9b054e24f8d2", "support" - ], + ], "css/get-computed-style-for-url.html": [ - "d590e40aa9e891818e07c64ed3bb00479db1b102", + "d590e40aa9e891818e07c64ed3bb00479db1b102", "testharness" - ], + ], "css/green.png": [ - "484469eb140b190b8cf7ed507212c60d5e6e663b", + "484469eb140b190b8cf7ed507212c60d5e6e663b", "support" - ], + ], "css/height_compute.html": [ - "ab017efb68abb6923098765021950f0ca847ab95", + "ab017efb68abb6923098765021950f0ca847ab95", "support" - ], + ], "css/height_compute_reset.html": [ - "8424600bef3d1c5c39adc9529f0d81864b333556", + "8424600bef3d1c5c39adc9529f0d81864b333556", "reftest" - ], + ], "css/hide_after_create.html": [ - "d76dce55e397342a5924b2ad236193b4e2228284", + "d76dce55e397342a5924b2ad236193b4e2228284", "reftest" - ], + ], "css/hide_after_create_ref.html": [ - "cb61f63d447b8df1862fbd5c01d41508183442f0", + "cb61f63d447b8df1862fbd5c01d41508183442f0", "support" - ], + ], "css/iframe/bg_color.html": [ - "7fab6e2371cda3284eb830fa36fbf6752d8bc365", + "7fab6e2371cda3284eb830fa36fbf6752d8bc365", "reftest" - ], + ], "css/iframe/bg_color_ref.html": [ - "085a248a8cfb89caea9015636da6f3f899ceb591", + "085a248a8cfb89caea9015636da6f3f899ceb591", "support" - ], + ], "css/iframe/frameborder_a.html": [ - "c81be895aa09e4b3fbd256fe1ef0dc02173019e2", + "c81be895aa09e4b3fbd256fe1ef0dc02173019e2", "reftest" - ], + ], "css/iframe/frameborder_ref.html": [ - "713df0ad4ae46476f0c40f8e3e5701bd5859ef32", + "713df0ad4ae46476f0c40f8e3e5701bd5859ef32", "support" - ], + ], "css/iframe/hide_after_load.html": [ - "71879e25b6462612e692e3abc34d5f53d08af3f4", + "71879e25b6462612e692e3abc34d5f53d08af3f4", "reftest" - ], + ], "css/iframe/hide_after_load_inner_frame.html": [ - "236b2d513ae9d4f7361bf80dd19f1fcad7ce9634", + "236b2d513ae9d4f7361bf80dd19f1fcad7ce9634", "support" - ], + ], "css/iframe/hide_after_load_ref.html": [ - "76a2fb517490164eafbef7f9a87466447401a650", + "76a2fb517490164eafbef7f9a87466447401a650", "support" - ], + ], "css/iframe/hide_and_show.html": [ - "097a549ae27526f965f811354ca72559facabae1", + "097a549ae27526f965f811354ca72559facabae1", "reftest" - ], + ], "css/iframe/hide_and_show_ref.html": [ - "cc042f429d309cbbaa28976bd6b1eb586f4010a8", + "cc042f429d309cbbaa28976bd6b1eb586f4010a8", "support" - ], + ], "css/iframe/hide_layers1.html": [ - "4445aea9ef8550b54d38a20d07ac87e9f3f87259", + "4445aea9ef8550b54d38a20d07ac87e9f3f87259", "reftest" - ], + ], "css/iframe/hide_layers2.html": [ - "54cfef0db5ddff476f15093552867ccfbccc539e", + "54cfef0db5ddff476f15093552867ccfbccc539e", "reftest" - ], + ], "css/iframe/hide_layers_ref.html": [ - "cb61f63d447b8df1862fbd5c01d41508183442f0", + "cb61f63d447b8df1862fbd5c01d41508183442f0", "support" - ], + ], "css/iframe/multiple_external.html": [ - "c2d66f25cec3e496023755af786409fff5b3c619", + "c2d66f25cec3e496023755af786409fff5b3c619", "reftest" - ], + ], "css/iframe/multiple_external_child.html": [ - "8e1b304226d46f5f470bb0f4b59f9186eb56d3ce", + "8e1b304226d46f5f470bb0f4b59f9186eb56d3ce", "support" - ], + ], "css/iframe/multiple_external_ref.html": [ - "cb06d78125970a8127708354db716f8ad5094fc0", + "cb06d78125970a8127708354db716f8ad5094fc0", "support" - ], + ], "css/iframe/navigation.html": [ - "bbbceaea51dda8983c11d169297c11395d918077", + "bbbceaea51dda8983c11d169297c11395d918077", "reftest" - ], + ], "css/iframe/navigation_ref.html": [ - "0207d0908e16bf1b6ccb2c9e76bb844e70c8d991", + "0207d0908e16bf1b6ccb2c9e76bb844e70c8d991", "support" - ], + ], "css/iframe/overflow.html": [ - "9ba47d2c57d2facf265c3d784e939024eddf9a57", + "9ba47d2c57d2facf265c3d784e939024eddf9a57", "reftest" - ], + ], "css/iframe/overflow_ref.html": [ - "97aad733fa8aeacdbefd113264c162b17e4bc1f5", + "97aad733fa8aeacdbefd113264c162b17e4bc1f5", "support" - ], + ], "css/iframe/positioning_margin.html": [ - "2c6d93c492e9749403d950b7ff9188281eb3fffb", + "2c6d93c492e9749403d950b7ff9188281eb3fffb", "reftest" - ], + ], "css/iframe/positioning_margin_ref.html": [ - "9559f237af3bf385e1ce080c3129be4f685c7d12", + "9559f237af3bf385e1ce080c3129be4f685c7d12", "support" - ], + ], "css/iframe/simple.html": [ - "9578e773186fba7c51fd33edf1e3b33929332597", + "9578e773186fba7c51fd33edf1e3b33929332597", "reftest" - ], + ], "css/iframe/simple_inline_default.html": [ - "e5777b0001a14cedbf8506b5692e737a7b3030b1", + "e5777b0001a14cedbf8506b5692e737a7b3030b1", "reftest" - ], + ], "css/iframe/simple_inline_default_ref.html": [ - "ad8e4eb5063de1108f8e4f56670dd6704eaa3d13", + "ad8e4eb5063de1108f8e4f56670dd6704eaa3d13", "support" - ], + ], "css/iframe/simple_inline_height.html": [ - "22c0ef4c39300bba474703cd891ff80179d69fed", + "22c0ef4c39300bba474703cd891ff80179d69fed", "reftest" - ], + ], "css/iframe/simple_inline_height_ref.html": [ - "7d3c09396dadbece58e2038919d528f726a30a3d", + "7d3c09396dadbece58e2038919d528f726a30a3d", "support" - ], + ], "css/iframe/simple_inline_max.html": [ - "56dbd15abbe40415f17e406f026c71d4f850f0e4", + "56dbd15abbe40415f17e406f026c71d4f850f0e4", "reftest" - ], + ], "css/iframe/simple_inline_max_ref.html": [ - "63c1cf61cc91e0881ac481fca3cde0b808615277", + "63c1cf61cc91e0881ac481fca3cde0b808615277", "support" - ], + ], "css/iframe/simple_inline_min.html": [ - "601fa3a31921790deb99b3370c25f2b91c06aeef", + "601fa3a31921790deb99b3370c25f2b91c06aeef", "reftest" - ], + ], "css/iframe/simple_inline_min_ref.html": [ - "43d27a8721ab3841d644dbe88329d88b94924f2c", + "43d27a8721ab3841d644dbe88329d88b94924f2c", "support" - ], + ], "css/iframe/simple_inline_width.html": [ - "b6d3ca249d00a18201b3e689e11e28bb658077ec", + "b6d3ca249d00a18201b3e689e11e28bb658077ec", "reftest" - ], + ], "css/iframe/simple_inline_width_height.html": [ - "12c30d30598ba870480aa3b7ac269144fcace49e", + "12c30d30598ba870480aa3b7ac269144fcace49e", "reftest" - ], + ], "css/iframe/simple_inline_width_height_ref.html": [ - "f673586b9a04a8cd06269462bb0247bcffe2471d", + "f673586b9a04a8cd06269462bb0247bcffe2471d", "support" - ], + ], "css/iframe/simple_inline_width_percentage.html": [ - "20e2d7aeff017302740d4289cdd2ea6855babb94", + "20e2d7aeff017302740d4289cdd2ea6855babb94", "reftest" - ], + ], "css/iframe/simple_inline_width_percentage_ref.html": [ - "40009128650d12bd5ed7a9758abd88c6e8ca2572", + "40009128650d12bd5ed7a9758abd88c6e8ca2572", "support" - ], + ], "css/iframe/simple_inline_width_ref.html": [ - "0998c2054be3fd8e9af50c92a85c9bb600589137", + "0998c2054be3fd8e9af50c92a85c9bb600589137", "support" - ], + ], "css/iframe/simple_ref.html": [ - "7d108264cedcf07f75a5cfee915d7616922f54b7", + "7d108264cedcf07f75a5cfee915d7616922f54b7", "support" - ], + ], "css/iframe/size_attributes.html": [ - "48faebca752137ae8fd3cdd57f5f172716f979f9", + "48faebca752137ae8fd3cdd57f5f172716f979f9", "reftest" - ], + ], "css/iframe/size_attributes_ref.html": [ - "f1864342ae7d5aa86a807e8815eee27a9b5709e2", + "f1864342ae7d5aa86a807e8815eee27a9b5709e2", "support" - ], + ], "css/iframe/size_attributes_vertical_writing_mode.html": [ - "a1f6a98ddc77bb676fec1d177ae0458bb96ed238", + "a1f6a98ddc77bb676fec1d177ae0458bb96ed238", "reftest" - ], + ], "css/iframe/size_attributes_vertical_writing_mode_ref.html": [ - "076b13ef2f43fd34a8e21c362ee234c5079312f9", + "076b13ef2f43fd34a8e21c362ee234c5079312f9", "support" - ], + ], "css/iframe/stacking_context.html": [ - "67ea2432baa411e867a3db1898bdb87ca53f9467", + "67ea2432baa411e867a3db1898bdb87ca53f9467", "reftest" - ], + ], "css/iframe/stacking_context_position_a.html": [ - "262e573e4a83ad82778ac62a3815d541c4d8624b", + "262e573e4a83ad82778ac62a3815d541c4d8624b", "reftest" - ], + ], "css/iframe/stacking_context_position_ref.html": [ - "85616ddea227268ad0561c38e8abfac857dfedcb", + "85616ddea227268ad0561c38e8abfac857dfedcb", "support" - ], + ], "css/iframe/stacking_context_ref.html": [ - "c243ae6581acf8ca140defdc0de4c5fe9e33a0be", + "c243ae6581acf8ca140defdc0de4c5fe9e33a0be", "support" - ], + ], "css/iframe_for_media_queries.html": [ - "b42f932e07c160e7c8112aebf567becc34210354", + "b42f932e07c160e7c8112aebf567becc34210354", "support" - ], + ], "css/image_percentage_dimen.html": [ - "d25c607df3090f3f4744c0920152696b80207fcd", + "d25c607df3090f3f4744c0920152696b80207fcd", "reftest" - ], + ], "css/image_percentage_dimen_ref.html": [ - "713727faf6f205ac58f44823bdf65f461661a3ad", + "713727faf6f205ac58f44823bdf65f461661a3ad", "support" - ], + ], "css/image_percentage_height.html": [ - "cf37e873b4415ce955317ac8b5bba08c6007999f", + "cf37e873b4415ce955317ac8b5bba08c6007999f", "reftest" - ], + ], "css/image_percentage_height_ref.html": [ - "f3d201f6951557cf1a550b8f556ae264ad6c37b4", + "f3d201f6951557cf1a550b8f556ae264ad6c37b4", "support" - ], + ], "css/image_rendering_auto_a.html": [ - "a2fb71e0b5fca24635ea9351b6870d1f96622ed6", + "a2fb71e0b5fca24635ea9351b6870d1f96622ed6", "reftest" - ], + ], "css/image_rendering_pixelated_a.html": [ - "81774f7ebcfee678c6cd43c97a69da01f3266453", + "81774f7ebcfee678c6cd43c97a69da01f3266453", "reftest" - ], + ], "css/image_rendering_pixelated_ref.html": [ - "06b2f3249f67633de2e06e9600a9daf7e4f9ed7d", + "06b2f3249f67633de2e06e9600a9daf7e4f9ed7d", "support" - ], + ], "css/img_block_display_a.html": [ - "5e3071ac1e047a5ab3376a45bd21dd7fde61b7fc", + "5e3071ac1e047a5ab3376a45bd21dd7fde61b7fc", "reftest" - ], + ], "css/img_block_display_ref.html": [ - "3db4356a529605e5d67c34ee72bec7c76fa436d7", + "3db4356a529605e5d67c34ee72bec7c76fa436d7", "support" - ], + ], "css/img_block_maxwidth_a.html": [ - "b49783416526ab1e9c974e4294a5395abed6e481", + "b49783416526ab1e9c974e4294a5395abed6e481", "reftest" - ], + ], "css/img_block_maxwidth_b.html": [ - "6a3cf1a15b1e6764822bf608d9135f4486c92847", + "6a3cf1a15b1e6764822bf608d9135f4486c92847", "reftest" - ], + ], "css/img_block_maxwidth_ref.html": [ - "5dba39a7dd48fcb06546bc4f1577f46a5fb70e32", + "5dba39a7dd48fcb06546bc4f1577f46a5fb70e32", "support" - ], + ], "css/img_dynamic_remove.html": [ - "9099677cfa1d860488842cc874e6133f52b6d4dc", + "9099677cfa1d860488842cc874e6133f52b6d4dc", "reftest" - ], + ], "css/img_dynamic_remove_ref.html": [ - "903b0111a58a44bb2f1a3f3bfb906cba00fde68a", + "903b0111a58a44bb2f1a3f3bfb906cba00fde68a", "support" - ], + ], "css/img_padding_a.html": [ - "e445f33fa062ea7cbe47c7e98b1e497490c2b520", + "e445f33fa062ea7cbe47c7e98b1e497490c2b520", "reftest" - ], + ], "css/img_padding_b.html": [ - "53ee894332d4fd789b87e213e21fc25c00c3050f", + "53ee894332d4fd789b87e213e21fc25c00c3050f", "support" - ], + ], "css/img_simple.html": [ - "792efb30cc4c262d33e8f292e7946b15de4b61a6", + "792efb30cc4c262d33e8f292e7946b15de4b61a6", "reftest" - ], + ], "css/img_simple_ref.html": [ - "c1ad2a4335dac1779f792215ffeabb7636411840", + "c1ad2a4335dac1779f792215ffeabb7636411840", "support" - ], + ], "css/img_size_a.html": [ - "b6cedb2e1e1f9075d02a535f0b8c3df68b7de4d0", + "b6cedb2e1e1f9075d02a535f0b8c3df68b7de4d0", "reftest" - ], + ], "css/img_size_b.html": [ - "ee21881dfdb521565bc11af52d6b4676f7a45a67", + "ee21881dfdb521565bc11af52d6b4676f7a45a67", "support" - ], + ], "css/img_width_attribute_intrinsic_width_a.html": [ - "650877d94bd118b0794d1e2d0315676a61fe280f", + "650877d94bd118b0794d1e2d0315676a61fe280f", "reftest" - ], + ], "css/img_width_attribute_intrinsic_width_ref.html": [ - "48849943114a21cb93de96bac85e2df686762589", + "48849943114a21cb93de96bac85e2df686762589", "support" - ], + ], "css/img_width_style_intrinsic_width_a.html": [ - "89befa34af8b43d7bd42f596822a15e6f5b97dd5", + "89befa34af8b43d7bd42f596822a15e6f5b97dd5", "reftest" - ], + ], "css/img_width_style_intrinsic_width_ref.html": [ - "10a57657a5175635b4e9e54cb3ac30a2a6d64ba6", + "10a57657a5175635b4e9e54cb3ac30a2a6d64ba6", "support" - ], + ], "css/import_serialization.html": [ - "44c828db3cb289d6a05d4928189b36e24a604f0b", + "44c828db3cb289d6a05d4928189b36e24a604f0b", "testharness" - ], + ], "css/incremental_float_a.html": [ - "737c3ea6c5b92593e0b61b791f1a091be82a5f10", + "737c3ea6c5b92593e0b61b791f1a091be82a5f10", "reftest" - ], + ], "css/incremental_float_ref.html": [ - "7b52f8a8f4975159ab96d9b489b4cf129123f05e", + "7b52f8a8f4975159ab96d9b489b4cf129123f05e", "support" - ], + ], "css/incremental_inline_layout_a.html": [ - "3f1915f0b2f043d2e0991822766e9ffcd0e487fe", + "3f1915f0b2f043d2e0991822766e9ffcd0e487fe", "reftest" - ], + ], "css/incremental_inline_layout_ref.html": [ - "7c42ff75bc578d79fc3ecf4b523bc84f2f9704ba", + "7c42ff75bc578d79fc3ecf4b523bc84f2f9704ba", "support" - ], + ], "css/incremental_letter_spacing_a.html": [ - "1a41febe450497a8c441113fcf1771ed4888e574", + "1a41febe450497a8c441113fcf1771ed4888e574", "reftest" - ], + ], "css/incremental_letter_spacing_ref.html": [ - "0c1f3004bdd713c852d61b4469362ea202ab6be8", + "0c1f3004bdd713c852d61b4469362ea202ab6be8", "support" - ], + ], "css/incremental_position.html": [ - "5aeb71915c2e065b5593beb8d8f5512445d6aff5", + "5aeb71915c2e065b5593beb8d8f5512445d6aff5", "reftest" - ], + ], "css/incremental_position_ref.html": [ - "432b3e5bbe8a1c952f35b22df43c8ce135d4267b", + "432b3e5bbe8a1c952f35b22df43c8ce135d4267b", "support" - ], + ], "css/incremental_text_color_a.html": [ - "3dd8e0126d4f656ca48380567bc89fcd53be1bb4", + "3dd8e0126d4f656ca48380567bc89fcd53be1bb4", "reftest" - ], + ], "css/incremental_text_color_ref.html": [ - "6e596100523dcbd8c8c6bdc076f1e021bfefa3f0", + "6e596100523dcbd8c8c6bdc076f1e021bfefa3f0", "support" - ], + ], "css/incremental_trailing_whitespace_a.html": [ - "f59bd91d9ea23effec2a888649e345937cf0addd", + "f59bd91d9ea23effec2a888649e345937cf0addd", "reftest" - ], + ], "css/incremental_trailing_whitespace_ref.html": [ - "bfb2ac99ff901c18aa21d4a73fa7df490abb9d7b", + "bfb2ac99ff901c18aa21d4a73fa7df490abb9d7b", "support" - ], + ], "css/incremental_visibility_a.html": [ - "b52a7814549828c788a2aeb1df8ca398f72566c4", + "b52a7814549828c788a2aeb1df8ca398f72566c4", "reftest" - ], + ], "css/incremental_visibility_ref.html": [ - "e07d1d6d0649f811d21e82fbb9c7c0b3ae13ac38", + "e07d1d6d0649f811d21e82fbb9c7c0b3ae13ac38", "support" - ], + ], "css/inline_absolute_hypothetical_baseline_a.html": [ - "c54a2c36990369e4c5b16b2a8f2f3eae53cc43c7", + "c54a2c36990369e4c5b16b2a8f2f3eae53cc43c7", "reftest" - ], + ], "css/inline_absolute_hypothetical_baseline_ref.html": [ - "e5c686e02a57a09b07ad5c08cd78f178941a61f2", + "e5c686e02a57a09b07ad5c08cd78f178941a61f2", "support" - ], + ], "css/inline_absolute_hypothetical_clip_a.html": [ - "4b09f718698923fce0923f7e4c9568c1603fae77", + "4b09f718698923fce0923f7e4c9568c1603fae77", "reftest" - ], + ], "css/inline_absolute_hypothetical_clip_ref.html": [ - "05f21048b9439954615c7f7001045d4e7c7ceac8", + "05f21048b9439954615c7f7001045d4e7c7ceac8", "support" - ], + ], "css/inline_absolute_hypothetical_line_metrics_a.html": [ - "0618934ce559a3ff3908d63c54d8995e8c2a76bb", + "0618934ce559a3ff3908d63c54d8995e8c2a76bb", "reftest" - ], + ], "css/inline_absolute_hypothetical_line_metrics_ref.html": [ - "dd8a0b0467605961c9c6add23a25971cbbbc5c3e", + "dd8a0b0467605961c9c6add23a25971cbbbc5c3e", "support" - ], + ], "css/inline_absolute_hypothetical_margin_a.html": [ - "f77e7dad3b559692ddd75cf6fff5bbf5fbad7317", + "f77e7dad3b559692ddd75cf6fff5bbf5fbad7317", "reftest" - ], + ], "css/inline_absolute_hypothetical_margin_ref.html": [ - "bba0de1995aed7eb948fe8ec34704de1caaae313", + "bba0de1995aed7eb948fe8ec34704de1caaae313", "support" - ], + ], "css/inline_absolute_hypothetical_metrics_a.html": [ - "b1cb792ce95cfb543a2503e2b21320e666f8ebaa", + "b1cb792ce95cfb543a2503e2b21320e666f8ebaa", "reftest" - ], + ], "css/inline_absolute_hypothetical_metrics_ref.html": [ - "35c21d7bea069ed0d4527fea6f8d82fc11b42784", + "35c21d7bea069ed0d4527fea6f8d82fc11b42784", "support" - ], + ], "css/inline_absolute_out_of_flow_a.html": [ - "c66ac641b215faae30ce461b36bb47331d30f09d", + "c66ac641b215faae30ce461b36bb47331d30f09d", "reftest" - ], + ], "css/inline_absolute_out_of_flow_ref.html": [ - "2fba510f579489393f426f6bcfc7b9ec8f1d810e", + "2fba510f579489393f426f6bcfc7b9ec8f1d810e", "support" - ], + ], "css/inline_background_a.html": [ - "31b45aabe1595000f7090591dbe06738bd7141ca", + "31b45aabe1595000f7090591dbe06738bd7141ca", "reftest" - ], + ], "css/inline_background_ref.html": [ - "e2ecc75beba87529e55e55269288b6395127fe3f", + "e2ecc75beba87529e55e55269288b6395127fe3f", "support" - ], + ], "css/inline_block_absolute_hypothetical_a.html": [ - "612a922a4f90c69d3d6f1ef237cffa4365cf6588", + "612a922a4f90c69d3d6f1ef237cffa4365cf6588", "reftest" - ], + ], "css/inline_block_absolute_hypothetical_ref.html": [ - "2dd7f39da4195568ada117f707bf3b48745869df", + "2dd7f39da4195568ada117f707bf3b48745869df", "support" - ], + ], "css/inline_block_baseline_a.html": [ - "ff80d2fccb87be6a8e4759f2716d3d7b076b1dcd", + "ff80d2fccb87be6a8e4759f2716d3d7b076b1dcd", "reftest" - ], + ], "css/inline_block_baseline_ref.html": [ - "728da10f61d2f678aa13b7b42eb538b0a4fddeae", + "728da10f61d2f678aa13b7b42eb538b0a4fddeae", "support" - ], + ], "css/inline_block_block_direction_margins_a.html": [ - "85fa13386f37fd703485bfe289d35da0fcc6fe95", + "85fa13386f37fd703485bfe289d35da0fcc6fe95", "reftest" - ], + ], "css/inline_block_block_direction_margins_ref.html": [ - "d92e01af2c2d3923ec4c2fab3576f0d1838b6b90", + "d92e01af2c2d3923ec4c2fab3576f0d1838b6b90", "support" - ], + ], "css/inline_block_border_a.html": [ - "9c06579d8dcce6d09ee630d347c6a3d11dd817e5", + "9c06579d8dcce6d09ee630d347c6a3d11dd817e5", "reftest" - ], + ], "css/inline_block_border_intrinsic_size_a.html": [ - "76b0b086b9efa55dc7a4bb3baa2cd6a6b1dd25b0", + "76b0b086b9efa55dc7a4bb3baa2cd6a6b1dd25b0", "reftest" - ], + ], "css/inline_block_border_intrinsic_size_ref.html": [ - "d71cf56693336bd741b513669ca0fab78334c1ba", + "d71cf56693336bd741b513669ca0fab78334c1ba", "support" - ], + ], "css/inline_block_border_ref.html": [ - "b76c09fb1135fe4dd11aaeb79782404ec8256548", + "b76c09fb1135fe4dd11aaeb79782404ec8256548", "support" - ], + ], "css/inline_block_centering_a.html": [ - "dce2edebc0996f2b9f40a0868fce6170edf26597", + "dce2edebc0996f2b9f40a0868fce6170edf26597", "reftest" - ], + ], "css/inline_block_centering_ref.html": [ - "b1d95ec9b423069a40b27d9258c261aea507e858", + "b1d95ec9b423069a40b27d9258c261aea507e858", "support" - ], + ], "css/inline_block_explicit_height_a.html": [ - "59c40d14231c66e4649019666b3632fdeffe8c5c", + "59c40d14231c66e4649019666b3632fdeffe8c5c", "reftest" - ], + ], "css/inline_block_explicit_height_ref.html": [ - "b0866cf0950ea64282fa262195d5471f2d744f8c", + "b0866cf0950ea64282fa262195d5471f2d744f8c", "support" - ], + ], "css/inline_block_height_with_out_of_flow_child_a.html": [ - "5aab3a8d04d334874eb3bb9ae93b0c78575c31d1", + "5aab3a8d04d334874eb3bb9ae93b0c78575c31d1", "reftest" - ], + ], "css/inline_block_height_with_out_of_flow_child_ref.html": [ - "64603f8c9790d7ede40989ed33edde99b01e6cf0", + "64603f8c9790d7ede40989ed33edde99b01e6cf0", "support" - ], + ], "css/inline_block_img_a.html": [ - "3fe84cf7ae68ca4b1790c522fb228db636a2bbd5", + "3fe84cf7ae68ca4b1790c522fb228db636a2bbd5", "reftest" - ], + ], "css/inline_block_img_ref.html": [ - "011220e1f273643f3362067813531ffedb657a06", + "011220e1f273643f3362067813531ffedb657a06", "support" - ], + ], "css/inline_block_margin_a.html": [ - "290721e1ffd2d61dff749adb7217c42331c9f07f", + "290721e1ffd2d61dff749adb7217c42331c9f07f", "reftest" - ], + ], "css/inline_block_margin_auto_a.html": [ - "cba325fd717c6bd569c171eed5e60df76e4167b9", + "cba325fd717c6bd569c171eed5e60df76e4167b9", "reftest" - ], + ], "css/inline_block_margin_auto_ref.html": [ - "1ab56dd83fbd2cdbd12d4d810577dad7b56149fb", + "1ab56dd83fbd2cdbd12d4d810577dad7b56149fb", "support" - ], + ], "css/inline_block_margin_auto_zero_a.html": [ - "eb2b9dd15b3b2402c2f4a528f5f0b71dd0b16d87", + "eb2b9dd15b3b2402c2f4a528f5f0b71dd0b16d87", "reftest" - ], + ], "css/inline_block_margin_auto_zero_ref.html": [ - "ad02e27d2fd0fe94a8ee5fff6370d3d552496a4e", + "ad02e27d2fd0fe94a8ee5fff6370d3d552496a4e", "support" - ], + ], "css/inline_block_margin_ref.html": [ - "0727d9cccdfea26b0ec5b45b0c2576224644da3e", + "0727d9cccdfea26b0ec5b45b0c2576224644da3e", "support" - ], + ], "css/inline_block_min_width.html": [ - "a30fee7e7e2f576e0e9a9e94831c60e71e724505", + "a30fee7e7e2f576e0e9a9e94831c60e71e724505", "reftest" - ], + ], "css/inline_block_min_width_ref.html": [ - "d0577dd80dff682b5f3c8f86ee3875fa9a3c214c", + "d0577dd80dff682b5f3c8f86ee3875fa9a3c214c", "support" - ], + ], "css/inline_block_nested_margin.html": [ - "addb612bb971014135fdd35bf48265245f8b79e8", + "addb612bb971014135fdd35bf48265245f8b79e8", "reftest" - ], + ], "css/inline_block_nested_margin_ref.html": [ - "296d91994ac2ab80fb9d903d3181b0fe71780cf5", + "296d91994ac2ab80fb9d903d3181b0fe71780cf5", "support" - ], + ], "css/inline_block_opacity_change.html": [ - "aa51ab444cddb381b6ca76615a30573f49f6f6c3", + "aa51ab444cddb381b6ca76615a30573f49f6f6c3", "reftest" - ], + ], "css/inline_block_opacity_change_ref.html": [ - "d047a3a851708c60ab2a535dd7d7b00dee7a8b5b", + "d047a3a851708c60ab2a535dd7d7b00dee7a8b5b", "support" - ], + ], "css/inline_block_overflow_hidden_a.html": [ - "09377e7d56f815e4fd956f8172ebda2581dba83f", + "09377e7d56f815e4fd956f8172ebda2581dba83f", "reftest" - ], + ], "css/inline_block_overflow_hidden_ref.html": [ - "93047704cace6a1ba9c531b00bce1c9b21c0273f", + "93047704cace6a1ba9c531b00bce1c9b21c0273f", "support" - ], + ], "css/inline_block_parent_padding_a.html": [ - "0a599bfae20b3b62835dd07f68509986f2756284", + "0a599bfae20b3b62835dd07f68509986f2756284", "reftest" - ], + ], "css/inline_block_parent_padding_ref.html": [ - "3dcefd3ad8a258d8c4445f0a17bce0f9b2313711", + "3dcefd3ad8a258d8c4445f0a17bce0f9b2313711", "support" - ], + ], "css/inline_block_parent_width.html": [ - "4a878a32d6aa9b87054f4bec22189d6cdf1dc05c", + "4a878a32d6aa9b87054f4bec22189d6cdf1dc05c", "reftest" - ], + ], "css/inline_block_parent_width_percentage.html": [ - "53a04ad8382c1a76aea0445d41cf6b43c2df17c9", + "53a04ad8382c1a76aea0445d41cf6b43c2df17c9", "reftest" - ], + ], "css/inline_block_parent_width_ref.html": [ - "d9d9fff3b90a4bc8980f7caefcb5364cb82f697f", + "d9d9fff3b90a4bc8980f7caefcb5364cb82f697f", "support" - ], + ], "css/inline_block_percentage_height_a.html": [ - "fcaf608531b32b55073858b81a9f82e17883d77f", + "fcaf608531b32b55073858b81a9f82e17883d77f", "reftest" - ], + ], "css/inline_block_percentage_height_ref.html": [ - "b8cbe8c4afd39825ceeb80795e0c835b4a2e8931", + "b8cbe8c4afd39825ceeb80795e0c835b4a2e8931", "support" - ], + ], "css/inline_block_percentage_margin.html": [ - "83b2b8a88a205eebe12a3ebf372651034334e756", + "83b2b8a88a205eebe12a3ebf372651034334e756", "reftest" - ], + ], "css/inline_block_percentage_margin_ref.html": [ - "3a51b7a1ac5583ed11011dd243c4acf0e701a764", + "3a51b7a1ac5583ed11011dd243c4acf0e701a764", "support" - ], + ], "css/inline_block_stacking_context_a.html": [ - "43b011810e4617fbdee4781789e8b93f378cc058", + "43b011810e4617fbdee4781789e8b93f378cc058", "reftest" - ], + ], "css/inline_block_stacking_context_ref.html": [ - "5387a3488bc97ad71e71a1abf89113e6a76a1c44", + "5387a3488bc97ad71e71a1abf89113e6a76a1c44", "support" - ], + ], "css/inline_block_with_margin_a.html": [ - "6c20a6cad78409f5ddb1cb388b168e9d33c784ad", + "6c20a6cad78409f5ddb1cb388b168e9d33c784ad", "reftest" - ], + ], "css/inline_block_with_margin_ref.html": [ - "eca34995e515a726c99b812c8ab82d29708f1a21", + "eca34995e515a726c99b812c8ab82d29708f1a21", "support" - ], + ], "css/inline_border_baseline_a.html": [ - "3f6744850216717468de588102c6a6b8b9ab27df", + "3f6744850216717468de588102c6a6b8b9ab27df", "reftest" - ], + ], "css/inline_border_baseline_ref.html": [ - "d6f24201f53c49a6a5edd85eb4db8aae294ed3bc", + "d6f24201f53c49a6a5edd85eb4db8aae294ed3bc", "support" - ], + ], "css/inline_element_border_a.html": [ - "e0dbb62983b6f37da91a6086133b9cc453647c81", + "e0dbb62983b6f37da91a6086133b9cc453647c81", "reftest" - ], + ], "css/inline_element_border_ref.html": [ - "faa934b2502025dcf1e3c6458779d55ece2873ca", + "faa934b2502025dcf1e3c6458779d55ece2873ca", "support" - ], + ], "css/inline_element_padding_margin.html": [ - "014a76299b240a52916da2ee1e23669004ebd869", + "014a76299b240a52916da2ee1e23669004ebd869", "reftest" - ], + ], "css/inline_element_padding_margin_ref.html": [ - "1b37ddc8575b2a4ec22b6fd73940ced8c9a17ba9", + "1b37ddc8575b2a4ec22b6fd73940ced8c9a17ba9", "support" - ], + ], "css/inline_font_size_zero_a.html": [ - "aface0759c01fd4a885eaf0cf0cc6200bdc39012", + "aface0759c01fd4a885eaf0cf0cc6200bdc39012", "reftest" - ], + ], "css/inline_font_size_zero_ref.html": [ - "c370413deeef1a0c508543f699959c3a2333859e", + "c370413deeef1a0c508543f699959c3a2333859e", "support" - ], + ], "css/inline_hypothetical_box_a.html": [ - "0406a275a9c42b56149b0a25a8d94026dea13bf0", + "0406a275a9c42b56149b0a25a8d94026dea13bf0", "reftest" - ], + ], "css/inline_hypothetical_box_ref.html": [ - "ed6900903081908f1e1b57d28cd8a06aa3d4e973", + "ed6900903081908f1e1b57d28cd8a06aa3d4e973", "support" - ], + ], "css/inline_margin_multiple_fragments_a.html": [ - "f45aa1916ea12fc7bfe05b95b48fe42f6367d0a2", + "f45aa1916ea12fc7bfe05b95b48fe42f6367d0a2", "reftest" - ], + ], "css/inline_margin_multiple_fragments_ref.html": [ - "6d6755c9d41ae3e68ccf5f4a0dd4a39898acc527", + "6d6755c9d41ae3e68ccf5f4a0dd4a39898acc527", "support" - ], + ], "css/inline_margin_nbsp.html": [ - "e8707bbd8df5a7f5c895e6023d99d7b7018f89c2", + "e8707bbd8df5a7f5c895e6023d99d7b7018f89c2", "reftest" - ], + ], "css/inline_margin_nbsp_ref.html": [ - "5606cd61361e6086132b2abc771dd981093f7c61", + "5606cd61361e6086132b2abc771dd981093f7c61", "support" - ], + ], "css/inline_margins_a.html": [ - "51ade6ccf3dcd64fe90b8505cbb1f30051435584", + "51ade6ccf3dcd64fe90b8505cbb1f30051435584", "reftest" - ], + ], "css/inline_margins_intrinsic_size_a.html": [ - "7c9ef8dc680db7c0816a82f202484f6e53672b44", + "7c9ef8dc680db7c0816a82f202484f6e53672b44", "reftest" - ], + ], "css/inline_margins_intrinsic_size_ref.html": [ - "e9bbbf6d29c9ef71843762db14ab67c367e8ea8c", + "e9bbbf6d29c9ef71843762db14ab67c367e8ea8c", "support" - ], + ], "css/inline_margins_ref.html": [ - "1be22a70d99f3e842e951bdf0bc3d13ed874bff1", + "1be22a70d99f3e842e951bdf0bc3d13ed874bff1", "support" - ], + ], "css/inline_padding_a.html": [ - "03750765840b9bbb72df98b613fd8a5cc2f5f05e", + "03750765840b9bbb72df98b613fd8a5cc2f5f05e", "reftest" - ], + ], "css/inline_padding_b.html": [ - "101efc121c48af5e3243764343b68bde653eba1c", + "101efc121c48af5e3243764343b68bde653eba1c", "support" - ], + ], "css/inline_stacking_context.html": [ - "255190a820ccb079dfb89aab316e784bd4a0a532", + "255190a820ccb079dfb89aab316e784bd4a0a532", "reftest" - ], + ], "css/inline_stacking_context_ref.html": [ - "8e9fe61a0716ba89974822acecc8574f42c3c693", + "8e9fe61a0716ba89974822acecc8574f42c3c693", "support" - ], + ], "css/inline_text_align_a.html": [ - "359cdb2aa92e4fdaa66f473ae0672f1df9c2fc80", + "359cdb2aa92e4fdaa66f473ae0672f1df9c2fc80", "reftest" - ], + ], "css/inline_text_align_b.html": [ - "72ab836ae0451075c9965e5914cef0fcf221516b", + "72ab836ae0451075c9965e5914cef0fcf221516b", "support" - ], + ], "css/inline_whitespace_a.html": [ - "ee3fa57b78b14f7ebd8a568b291efb0b5d4ab496", + "ee3fa57b78b14f7ebd8a568b291efb0b5d4ab496", "reftest" - ], + ], "css/inline_whitespace_b.html": [ - "780fb6bb4796c36f9ca4849518c3ace611396e30", + "780fb6bb4796c36f9ca4849518c3ace611396e30", "reftest" - ], + ], "css/inline_whitespace_ref.html": [ - "5340b9fc47ac2ae01c98deadf33599df06838f85", + "5340b9fc47ac2ae01c98deadf33599df06838f85", "support" - ], + ], "css/input_alignment_a.html": [ - "3bb95e8502cd838395afae097ac9b5497487cef5", + "3bb95e8502cd838395afae097ac9b5497487cef5", "reftest" - ], + ], "css/input_alignment_ref.html": [ - "d356a418cf94badd505084a243b447ef8d862129", + "d356a418cf94badd505084a243b447ef8d862129", "support" - ], + ], "css/input_button_margins_a.html": [ - "9f8f65583430c340576815014f5e0ac95aacd5d6", + "9f8f65583430c340576815014f5e0ac95aacd5d6", "reftest" - ], + ], "css/input_button_margins_ref.html": [ - "b2822ec7e330f822cdff1f306b0fa516a0c40d12", + "b2822ec7e330f822cdff1f306b0fa516a0c40d12", "support" - ], + ], "css/input_button_size_a.html": [ - "c0bdc05e01f4f814d2553ebf7a4cddd326f312b6", + "c0bdc05e01f4f814d2553ebf7a4cddd326f312b6", "reftest" - ], + ], "css/input_button_size_ref.html": [ - "672f4d7e67fccc932794a7c8d4afc3215852e0fa", + "672f4d7e67fccc932794a7c8d4afc3215852e0fa", "support" - ], + ], "css/input_empty_equiv.html": [ - "e6612aa1e20ef3220b38df090f3cbc5523cd228f", + "e6612aa1e20ef3220b38df090f3cbc5523cd228f", "reftest" - ], + ], "css/input_empty_equiv_ref.html": [ - "fdfc92ab96322c941087c0185aed86b3c1e8edd1", + "fdfc92ab96322c941087c0185aed86b3c1e8edd1", "support" - ], + ], "css/input_height_a.html": [ - "9375d302eae83a6d40a4bd7e04ed60a6262f35a3", + "9375d302eae83a6d40a4bd7e04ed60a6262f35a3", "reftest" - ], + ], "css/input_height_ref.html": [ - "c3d507e768e9a942bedcedeafe3a66546a8cf0b8", + "c3d507e768e9a942bedcedeafe3a66546a8cf0b8", "support" - ], + ], "css/input_insertion_point_empty_a.html": [ - "b3478b0b269d8956964ceb8ddb1ec95db5d3fb9a", + "b3478b0b269d8956964ceb8ddb1ec95db5d3fb9a", "reftest" - ], + ], "css/input_insertion_point_empty_ref.html": [ - "6c393c748453b6014d6c133cefeebf8f9f11265a", + "6c393c748453b6014d6c133cefeebf8f9f11265a", "support" - ], + ], "css/input_line_height.html": [ - "1de07c88ae2092e2e9885d30e2001e9fe09ca8b3", + "1de07c88ae2092e2e9885d30e2001e9fe09ca8b3", "reftest" - ], + ], "css/input_line_height_ref.html": [ - "16d4fd99712bd1d21cc8320f2e273a867f3fb807", + "16d4fd99712bd1d21cc8320f2e273a867f3fb807", "support" - ], + ], "css/input_placeholder.html": [ - "f74cec8d54c04755bf5277db2e127fb0a37f855e", + "f74cec8d54c04755bf5277db2e127fb0a37f855e", "reftest" - ], + ], "css/input_placeholder_ref.html": [ - "1caffed07f2cdd341ad26ab7489e02233a6ae26c", + "1caffed07f2cdd341ad26ab7489e02233a6ae26c", "support" - ], + ], "css/input_selection_a.html": [ - "fbee15aed7bcbae55a2771e9af422ce105b96a60", + "fbee15aed7bcbae55a2771e9af422ce105b96a60", "reftest" - ], + ], "css/input_selection_incremental_a.html": [ - "c242b56c188f2c64a292fe7e66d2d8fd41ad3dbd", + "c242b56c188f2c64a292fe7e66d2d8fd41ad3dbd", "reftest" - ], + ], "css/input_selection_incremental_ref.html": [ - "95b24db3c3d7d8e02a6e1a89a07c1182bcb832de", + "95b24db3c3d7d8e02a6e1a89a07c1182bcb832de", "support" - ], + ], "css/input_selection_ref.html": [ - "af32a4d161140e63d62a697e99fe55e8fbc90df1", + "af32a4d161140e63d62a697e99fe55e8fbc90df1", "support" - ], + ], "css/input_whitespace.html": [ - "1c2b87fa988a30daae53abc4b7fda66932a6c24f", + "1c2b87fa988a30daae53abc4b7fda66932a6c24f", "reftest" - ], + ], "css/input_whitespace_ref.html": [ - "b7bc7c503ce72777a74a01f79c7a44c4724a00fe", + "b7bc7c503ce72777a74a01f79c7a44c4724a00fe", "support" - ], + ], "css/inset.html": [ - "9fe98c73a7f5bc4af650b4a0470aff8586fa0e07", + "9fe98c73a7f5bc4af650b4a0470aff8586fa0e07", "reftest" - ], + ], "css/inset.png": [ - "001f68cd2ed02a62e1478618b5b73a6139b88158", + "001f68cd2ed02a62e1478618b5b73a6139b88158", "support" - ], + ], "css/inset_blackborder.html": [ - "565760bedc2333a3ffec861e60c2f66dba463405", + "565760bedc2333a3ffec861e60c2f66dba463405", "reftest" - ], + ], "css/inset_ref.html": [ - "3e1025fd87178e6a79ae3503386a70d618473d64", + "3e1025fd87178e6a79ae3503386a70d618473d64", "support" - ], + ], "css/intrinsic_border_box.html": [ - "85e000185ad5b844a1b01067b511a74d31c0ae44", + "85e000185ad5b844a1b01067b511a74d31c0ae44", "reftest" - ], + ], "css/intrinsic_border_box_ref.html": [ - "e47b8414c32a543a922a940b414a1347346b24a0", + "e47b8414c32a543a922a940b414a1347346b24a0", "support" - ], + ], "css/issue-1324-ref.html": [ - "5f7f215115a208e49c71bf252a481587908e843a", + "5f7f215115a208e49c71bf252a481587908e843a", "support" - ], + ], "css/issue-1324.html": [ - "20e84f9282dfc7893d8769fecb0613ab6241cf8b", + "20e84f9282dfc7893d8769fecb0613ab6241cf8b", "reftest" - ], + ], "css/issue_18544_flow_list_crash.html": [ - "9ef57cad02a34e5cf3693b8f98b12b335d8a3db2", + "9ef57cad02a34e5cf3693b8f98b12b335d8a3db2", "testharness" - ], + ], "css/jpeg_normal.html": [ - "512731a03ca98d010fc9535a47329b2829fad463", + "512731a03ca98d010fc9535a47329b2829fad463", "reftest" - ], + ], "css/jpeg_normal.jpg": [ - "aac501b2a022ce7d1c12169bc5a0d591cacb85ea", + "aac501b2a022ce7d1c12169bc5a0d591cacb85ea", "support" - ], + ], "css/jpeg_progressive.html": [ - "447c78877fe5576865b218a9df3f45adfcbf8abb", + "447c78877fe5576865b218a9df3f45adfcbf8abb", "reftest" - ], + ], "css/jpeg_progressive.jpg": [ - "c2561d8fe5001c18bf5eed77b09fb283d72e40df", + "c2561d8fe5001c18bf5eed77b09fb283d72e40df", "support" - ], + ], "css/jpeg_ref.html": [ - "37417b7647bab49f426896ae4ffdaac9cb8d158a", + "37417b7647bab49f426896ae4ffdaac9cb8d158a", "support" - ], + ], "css/jumpiness_a.html": [ - "35781ad046045e0f8327c542227c292a108f590b", + "35781ad046045e0f8327c542227c292a108f590b", "reftest" - ], + ], "css/jumpiness_ref.html": [ - "ebd503a91872957e1047239ed52762d42f60740d", + "ebd503a91872957e1047239ed52762d42f60740d", "support" - ], + ], "css/last_child_pseudo_a.html": [ - "fc18ebbd775b93e8582beb5ba52f31a2060fe9f8", + "fc18ebbd775b93e8582beb5ba52f31a2060fe9f8", "reftest" - ], + ], "css/last_child_pseudo_b.html": [ - "eb6ef645c7b3c80554be7a4df4db17278759b9b3", + "eb6ef645c7b3c80554be7a4df4db17278759b9b3", "support" - ], + ], "css/last_of_type_pseudo_a.html": [ - "97bbe0423af81822fc5e33ebb35a7ceaa7cf1243", + "97bbe0423af81822fc5e33ebb35a7ceaa7cf1243", "reftest" - ], + ], "css/last_of_type_pseudo_b.html": [ - "18ebcdfa078b845e90add809455676ee98fde9db", + "18ebcdfa078b845e90add809455676ee98fde9db", "support" - ], + ], "css/layerization_layer_size.html": [ - "d42af71f58d94cb44066b99b47b8c4eb725b8516", + "d42af71f58d94cb44066b99b47b8c4eb725b8516", "reftest" - ], + ], "css/layerization_layer_size_ref.html": [ - "4b50d12578ae37d463dc9781afd31af1c0d70d98", + "4b50d12578ae37d463dc9781afd31af1c0d70d98", "support" - ], + ], "css/layerization_z_order_a.html": [ - "dec13e3615dc85e6a016a98890b09078d57f747a", + "dec13e3615dc85e6a016a98890b09078d57f747a", "reftest" - ], + ], "css/layerization_z_order_ref.html": [ - "3fedaf228d25d2cf8fe1b6db544a60eec65ad858", + "3fedaf228d25d2cf8fe1b6db544a60eec65ad858", "support" - ], + ], "css/legacy_cellspacing_attribute_a.html": [ - "84eeed90ee42e588caf9b46222f12a30cf52f8ae", + "84eeed90ee42e588caf9b46222f12a30cf52f8ae", "reftest" - ], + ], "css/legacy_input_size_attribute_override_a.html": [ - "d690230d7567c1af1382429c077d43fb9fbd4d74", + "d690230d7567c1af1382429c077d43fb9fbd4d74", "reftest" - ], + ], "css/legacy_input_size_attribute_override_ref.html": [ - "c13c9ec31647d7621ff8dcf8217fcaf51e6f2a34", + "c13c9ec31647d7621ff8dcf8217fcaf51e6f2a34", "support" - ], + ], "css/legacy_table_border_attribute_a.html": [ - "c3cfd827f059172e28e71e6dfbf3ba69d634e723", + "c3cfd827f059172e28e71e6dfbf3ba69d634e723", "reftest" - ], + ], "css/legacy_table_border_attribute_ref.html": [ - "ed6eea4fda637748ed2c8a9a7b4d8ac177cea67f", + "ed6eea4fda637748ed2c8a9a7b4d8ac177cea67f", "support" - ], + ], "css/legacy_td_bgcolor_attribute_a.html": [ - "dddbcc8de7d3e0ed6a29f9af46c5edef6168dbdf", + "dddbcc8de7d3e0ed6a29f9af46c5edef6168dbdf", "reftest" - ], + ], "css/legacy_td_bgcolor_attribute_ref.html": [ - "88038dd685b2d505ac7f96a487c3df3c64bc0136", + "88038dd685b2d505ac7f96a487c3df3c64bc0136", "support" - ], + ], "css/legacy_td_width_attribute_a.html": [ - "044dc7365f946a3b5f618be6c8be6b548a0e1e95", + "044dc7365f946a3b5f618be6c8be6b548a0e1e95", "reftest" - ], + ], "css/legacy_td_width_attribute_ref.html": [ - "d903f2c03571c6f03a2536b974f83b277ce4aa30", + "d903f2c03571c6f03a2536b974f83b277ce4aa30", "support" - ], + ], "css/legacy_th_width_attribute_a.html": [ - "b3bb7e5e1834049164eaf56aac6bcce103889c4e", + "b3bb7e5e1834049164eaf56aac6bcce103889c4e", "reftest" - ], + ], "css/letter_spacing_a.html": [ - "25104e3b3bf5b51b8879039a25407912384f2b15", + "25104e3b3bf5b51b8879039a25407912384f2b15", "reftest" - ], + ], "css/letter_spacing_ref.html": [ - "46c65aa839492f4bbaa48e41a844423a2bc5d2c2", + "46c65aa839492f4bbaa48e41a844423a2bc5d2c2", "support" - ], + ], "css/li_absolute_containing_block_a.html": [ - "67588d31b1654dab4c749837e365c058d5ec6c1a", + "67588d31b1654dab4c749837e365c058d5ec6c1a", "reftest" - ], + ], "css/li_absolute_containing_block_ref.html": [ - "47d4a4cb730ed16992f7cee4a1c84ca6c67957d1", + "47d4a4cb730ed16992f7cee4a1c84ca6c67957d1", "support" - ], + ], "css/line.png": [ - "bedcfda20566785096af33e038274254ca41a195", + "bedcfda20566785096af33e038274254ca41a195", "support" - ], + ], "css/line_break_nowrap.html": [ - "3eb3fdeb652f174817c352219e3e36c34e36703b", + "3eb3fdeb652f174817c352219e3e36c34e36703b", "reftest" - ], + ], "css/line_break_nowrap_ref.html": [ - "aac581da1dfbfe5e747de3d9b1051fffa541fefe", + "aac581da1dfbfe5e747de3d9b1051fffa541fefe", "support" - ], + ], "css/line_breaking_whitespace_collapse_a.html": [ - "38e9f70d088796dfc3ff881386ef08a666fb2781", + "38e9f70d088796dfc3ff881386ef08a666fb2781", "reftest" - ], + ], "css/line_breaking_whitespace_collapse_ref.html": [ - "c36c0b4068d09169459ceef97d029cbe36dca310", + "c36c0b4068d09169459ceef97d029cbe36dca310", "support" - ], + ], "css/line_height_a.html": [ - "c995e2c1dd0f9a8806953e395511df35c428fd80", + "c995e2c1dd0f9a8806953e395511df35c428fd80", "reftest" - ], + ], "css/line_height_float_placement_a.html": [ - "bbf8b5b93eb2d2a4df0abdbb7a5c6aba5f2ea053", + "bbf8b5b93eb2d2a4df0abdbb7a5c6aba5f2ea053", "reftest" - ], + ], "css/line_height_float_placement_ref.html": [ - "89a0c78b28ec65d60f5d3f1da7a10fa09dc3439e", + "89a0c78b28ec65d60f5d3f1da7a10fa09dc3439e", "support" - ], + ], "css/line_height_ref.html": [ - "deaabe11d2bec4eb681716fdef28bed3cec7aa1e", + "deaabe11d2bec4eb681716fdef28bed3cec7aa1e", "support" - ], + ], "css/linear_gradients_corners_a.html": [ - "d7c9311bf60c7b25d02b2db7719afff1628b7ad4", + "d7c9311bf60c7b25d02b2db7719afff1628b7ad4", "reftest" - ], + ], "css/linear_gradients_corners_ref.html": [ - "046d39c0412152d479d597b5bc018aa5f4a9d227", + "046d39c0412152d479d597b5bc018aa5f4a9d227", "support" - ], + ], "css/linear_gradients_lengths_a.html": [ - "36ab50d68665ef7df4371a4c198a797401c5ad2d", + "36ab50d68665ef7df4371a4c198a797401c5ad2d", "reftest" - ], + ], "css/linear_gradients_lengths_ref.html": [ - "a067067fff64d232aad7233b69b7b78e74e1f365", + "a067067fff64d232aad7233b69b7b78e74e1f365", "support" - ], + ], "css/linear_gradients_non_square_a.html": [ - "2edd6cbaa4638d6fdc474c6e7bec7f4c194dc721", + "2edd6cbaa4638d6fdc474c6e7bec7f4c194dc721", "reftest" - ], + ], "css/linear_gradients_non_square_ref.html": [ - "1ad3c75747e05768a3e79d879e535e8b3980f1a4", + "1ad3c75747e05768a3e79d879e535e8b3980f1a4", "support" - ], + ], "css/linear_gradients_parsing_a.html": [ - "c2e18fb98ed4324f8337290cbae84b14df580182", + "c2e18fb98ed4324f8337290cbae84b14df580182", "reftest" - ], + ], "css/linear_gradients_parsing_ref.html": [ - "b4d21f1c85bfd1da96a35f2c09e73ee9d561ecd9", + "b4d21f1c85bfd1da96a35f2c09e73ee9d561ecd9", "support" - ], + ], "css/linear_gradients_reverse_a.html": [ - "ec74f0c8e080c95ea43a4e67dc1e86e88784dc7d", + "ec74f0c8e080c95ea43a4e67dc1e86e88784dc7d", "reftest" - ], + ], "css/linear_gradients_reverse_ref.html": [ - "eb34e7eb3496651f18b8f710bfed0d65a480a667", + "eb34e7eb3496651f18b8f710bfed0d65a480a667", "support" - ], + ], "css/linear_gradients_smoke_a.html": [ - "6a5939b49eb5ec8d9204c706a39440165f57f781", + "6a5939b49eb5ec8d9204c706a39440165f57f781", "reftest" - ], + ], "css/linear_gradients_smoke_ref.html": [ - "0c2a5644e19e3922665a04435203e7682b950562", + "0c2a5644e19e3922665a04435203e7682b950562", "support" - ], + ], "css/linebreak_inline_span_a.html": [ - "125e4ab9d65d0b0d212865ffc3e79af8d74cb57c", + "125e4ab9d65d0b0d212865ffc3e79af8d74cb57c", "reftest" - ], + ], "css/linebreak_inline_span_b.html": [ - "1a0387d46f7fb99c7f3ced95e7ed1536c6c4e0f7", + "1a0387d46f7fb99c7f3ced95e7ed1536c6c4e0f7", "support" - ], + ], "css/linebreak_simple_a.html": [ - "c4951b4af9e655a1731f8b4a8373861893db7773", + "c4951b4af9e655a1731f8b4a8373861893db7773", "reftest" - ], + ], "css/linebreak_simple_b.html": [ - "a5eb48e225fc32619b705b41983ba6ba3fa10fd1", + "a5eb48e225fc32619b705b41983ba6ba3fa10fd1", "support" - ], + ], "css/link_style_dynamic_addition.html": [ - "dbef3ea9e93983a75549b41a3d9f97dd048712ad", + "dbef3ea9e93983a75549b41a3d9f97dd048712ad", "reftest" - ], + ], "css/link_style_dynamic_addition_ref.html": [ - "a95bd75770c481e0f47c138d876af5f934bc2fd3", + "a95bd75770c481e0f47c138d876af5f934bc2fd3", "support" - ], + ], "css/link_style_order.html": [ - "cffebd33d42dda7c36e356ce419fdcbad291135e", + "cffebd33d42dda7c36e356ce419fdcbad291135e", "reftest" - ], + ], "css/link_style_order_ref.html": [ - "f3ec1128afd4605d1e774465b9c1d36a06504715", + "f3ec1128afd4605d1e774465b9c1d36a06504715", "support" - ], + ], "css/list_item_marker_around_float.html": [ - "e3eee5b548518436c781bac0f4b037953246ca5a", + "e3eee5b548518436c781bac0f4b037953246ca5a", "reftest" - ], + ], "css/list_item_marker_around_float_ref.html": [ - "319cd297739e48084f71724c90fd2f5ed457f3dc", + "319cd297739e48084f71724c90fd2f5ed457f3dc", "support" - ], + ], "css/list_item_overflow.html": [ - "b2ea4bef27efdb2afd1bebd003fb56103cc96540", + "b2ea4bef27efdb2afd1bebd003fb56103cc96540", "reftest" - ], + ], "css/list_item_overflow_ref.html": [ - "fff62ea40fc2dc7491b120bdc857a8770ae92d0b", + "fff62ea40fc2dc7491b120bdc857a8770ae92d0b", "support" - ], + ], "css/list_style_fixed_inside_a.html": [ - "cc07d1d0adebe5cb2deee41e1ab58cc3131b9379", + "cc07d1d0adebe5cb2deee41e1ab58cc3131b9379", "reftest" - ], + ], "css/list_style_fixed_inside_ref.html": [ - "1fdaf4ba8ad436d104b21012ceba1261bf4a72a5", + "1fdaf4ba8ad436d104b21012ceba1261bf4a72a5", "support" - ], + ], "css/list_style_image_sizing_a.html": [ - "b47401c033368a1247bdbbd1679dfcebd325a81e", + "b47401c033368a1247bdbbd1679dfcebd325a81e", "reftest" - ], + ], "css/list_style_image_sizing_ref.html": [ - "a4af95bd1ccc94604cbaab6feca7376fc5daf323", + "a4af95bd1ccc94604cbaab6feca7376fc5daf323", "support" - ], + ], "css/list_style_position_a.html": [ - "63394c0c9f2956b99762d5c2eece3ca2cdc63f3e", + "63394c0c9f2956b99762d5c2eece3ca2cdc63f3e", "reftest" - ], + ], "css/list_style_position_ref.html": [ - "d637d4b495ce830c9f381e677a8499f32d0c4d5a", + "d637d4b495ce830c9f381e677a8499f32d0c4d5a", "support" - ], + ], "css/list_style_type_a.html": [ - "1d6a61098d76c64886003e2b1b0d49df3b725236", + "1d6a61098d76c64886003e2b1b0d49df3b725236", "reftest" - ], + ], "css/list_style_type_ref.html": [ - "d9ce190ca18175f86fbcced9a483db2ea7e9b364", + "d9ce190ca18175f86fbcced9a483db2ea7e9b364", "support" - ], + ], "css/many_brs_a.html": [ - "06efba2a48dc7a48a6af21369be18833531cdda2", + "06efba2a48dc7a48a6af21369be18833531cdda2", "reftest" - ], + ], "css/many_brs_ref.html": [ - "05b6c9fc2fed89533f5c8095c9ac3d55d20f8510", + "05b6c9fc2fed89533f5c8095c9ac3d55d20f8510", "support" - ], + ], "css/margin_a.html": [ - "d56dd85c2a2ec2dd4ce09213b0da705709b963b4", + "d56dd85c2a2ec2dd4ce09213b0da705709b963b4", "reftest" - ], + ], "css/margin_b.html": [ - "ac8f3fa9b7c9edcdc959c618487dd092abdede31", + "ac8f3fa9b7c9edcdc959c618487dd092abdede31", "support" - ], + ], "css/margin_padding_inline_block_a.html": [ - "aed899a257484c5d408130a29d7ef27deb2b58bf", + "aed899a257484c5d408130a29d7ef27deb2b58bf", "reftest" - ], + ], "css/margin_padding_inline_block_ref.html": [ - "58f5ba659809d0dadef5f46bcb13b179631ffdd8", + "58f5ba659809d0dadef5f46bcb13b179631ffdd8", "support" - ], + ], "css/margins_inside_floats_a.html": [ - "1d29dca04e51b51f1db46a49f7dc8658ccc722bc", + "1d29dca04e51b51f1db46a49f7dc8658ccc722bc", "reftest" - ], + ], "css/margins_inside_floats_ref.html": [ - "6bba705debc2199274228ade3f069c9f9fa425c4", + "6bba705debc2199274228ade3f069c9f9fa425c4", "support" - ], + ], "css/marker_block_direction_placement_a.html": [ - "53fd30e113e61e22cc27680e7fc7c4a61cd0345a", + "53fd30e113e61e22cc27680e7fc7c4a61cd0345a", "reftest" - ], + ], "css/marker_block_direction_placement_ref.html": [ - "d455e065657b06dd498a5dbb91659c1e23bfdd63", + "d455e065657b06dd498a5dbb91659c1e23bfdd63", "support" - ], + ], "css/matchMedia.html": [ - "45a7ea268b1ebdba69e947b79d675cc9221428d4", + "45a7ea268b1ebdba69e947b79d675cc9221428d4", "testharness" - ], + ], "css/max_inline_block_size.html": [ - "f0f23893143def9cf58d742dcf35223c58ac879f", + "f0f23893143def9cf58d742dcf35223c58ac879f", "reftest" - ], + ], "css/max_inline_block_size_canvas.html": [ - "48cd896a2b7940bf8d48616e972748b9c5dead72", + "48cd896a2b7940bf8d48616e972748b9c5dead72", "reftest" - ], + ], "css/max_inline_block_size_image.html": [ - "283bbd43256dab1a754ee90e78afd90ab2a53af8", + "283bbd43256dab1a754ee90e78afd90ab2a53af8", "reftest" - ], + ], "css/max_inline_block_size_ref.html": [ - "b5fce02a2706f0de84c5ac055f469d84b8e6b5be", + "b5fce02a2706f0de84c5ac055f469d84b8e6b5be", "support" - ], + ], "css/max_width_float_simple_a.html": [ - "0b33611672bdc8201414e271732b36ad967e549f", + "0b33611672bdc8201414e271732b36ad967e549f", "reftest" - ], + ], "css/max_width_float_simple_b.html": [ - "4fe2cd7165aa4832ac91493bc376b8cb3df84ab5", + "4fe2cd7165aa4832ac91493bc376b8cb3df84ab5", "support" - ], + ], "css/max_width_simple_a.html": [ - "0ee3371e291e6c544bfb1ae4a784664bf56f8f78", + "0ee3371e291e6c544bfb1ae4a784664bf56f8f78", "reftest" - ], + ], "css/max_width_simple_b.html": [ - "4fe2cd7165aa4832ac91493bc376b8cb3df84ab5", + "4fe2cd7165aa4832ac91493bc376b8cb3df84ab5", "support" - ], + ], "css/media_bogus_query_sequence.html": [ - "a112a316eab1f15a804410f030730d189bb35757", + "a112a316eab1f15a804410f030730d189bb35757", "testharness" - ], + ], "css/media_calc_crash.html": [ - "136a86cd4c27bf2c289c889f0cd2dab69fe3022b", + "136a86cd4c27bf2c289c889f0cd2dab69fe3022b", "testharness" - ], + ], "css/meta_viewport_resize.html": [ - "7cde945198d744559f65b9a2cfb473cd02550e40", + "7cde945198d744559f65b9a2cfb473cd02550e40", "testharness" - ], + ], "css/meta_viewport_resize_iframe.html": [ - "86de04da1bdc3b72e52e8f17964389a6779d7456", + "86de04da1bdc3b72e52e8f17964389a6779d7456", "support" - ], + ], "css/min_max_height_a.html": [ - "d4dc896fe547b5bde84e70e38b74daaa1a78dd7e", + "d4dc896fe547b5bde84e70e38b74daaa1a78dd7e", "reftest" - ], + ], "css/min_max_height_b.html": [ - "8723d65b2585b02664f01b84d1fda328321fc412", + "8723d65b2585b02664f01b84d1fda328321fc412", "support" - ], + ], "css/min_width_float_simple_a.html": [ - "9090c275f7a9828c3baeed4af734406707f9a4ae", + "9090c275f7a9828c3baeed4af734406707f9a4ae", "reftest" - ], + ], "css/min_width_float_simple_b.html": [ - "e155bab183f3fda0146a18ed806c2a54052921cd", + "e155bab183f3fda0146a18ed806c2a54052921cd", "support" - ], + ], "css/min_width_percent_root_a.html": [ - "0def43e7e3c6b732ab9fccbe5ac7925ee006e467", + "0def43e7e3c6b732ab9fccbe5ac7925ee006e467", "reftest" - ], + ], "css/min_width_percent_root_b.html": [ - "fad1df06f09e4ee0e8ced291a9a642090749704f", + "fad1df06f09e4ee0e8ced291a9a642090749704f", "support" - ], + ], "css/min_width_simple_a.html": [ - "f48da91926a89c507c96dd8093b36789be3c6495", + "f48da91926a89c507c96dd8093b36789be3c6495", "reftest" - ], + ], "css/min_width_simple_b.html": [ - "e155bab183f3fda0146a18ed806c2a54052921cd", + "e155bab183f3fda0146a18ed806c2a54052921cd", "support" - ], + ], "css/minimum_line_height_a.html": [ - "e8506b796917a03b62792b3672b33fdba03d8c79", + "e8506b796917a03b62792b3672b33fdba03d8c79", "reftest" - ], + ], "css/minimum_line_height_b.html": [ - "3805578b1ec68b65223b6160f597bc68a24e21d0", + "3805578b1ec68b65223b6160f597bc68a24e21d0", "support" - ], + ], "css/mix_blend_mode_a.html": [ - "4e6bc7918ce578d5fd9875778d92bb6fa8d81dd3", + "4e6bc7918ce578d5fd9875778d92bb6fa8d81dd3", "reftest" - ], + ], "css/mix_blend_mode_ref.html": [ - "d91d4bcef46c8f9fc7b9d008ee98a7dd01f7ad21", + "d91d4bcef46c8f9fc7b9d008ee98a7dd01f7ad21", "support" - ], + ], "css/multiple_backgrounds.html": [ - "ae1cf263a7b770c6a1a2d6085ca24fb08cdaa613", + "ae1cf263a7b770c6a1a2d6085ca24fb08cdaa613", "reftest" - ], + ], "css/multiple_backgrounds_ref.html": [ - "2783dcb84db4a02562e9a6a2d59d76662d1dd7cb", + "2783dcb84db4a02562e9a6a2d59d76662d1dd7cb", "support" - ], + ], "css/multiple_css_class_a.html": [ - "aaf1fbdbf1c25deea4842d5b13da071123ce26d4", + "aaf1fbdbf1c25deea4842d5b13da071123ce26d4", "reftest" - ], + ], "css/multiple_css_class_b.html": [ - "dd64a4f690c6997e39042aba3433f7faf61f1baf", + "dd64a4f690c6997e39042aba3433f7faf61f1baf", "support" - ], + ], "css/negation-attr-dependence-ref.html": [ - "3297637824d2d46a13adf6d56dcb8e279ee693d4", + "3297637824d2d46a13adf6d56dcb8e279ee693d4", "support" - ], + ], "css/negation-attr-dependence.html": [ - "99fb54b802f1a96e020b872dc799366339dc1acc", + "99fb54b802f1a96e020b872dc799366339dc1acc", "reftest" - ], + ], "css/negative-calc-cv-ref.html": [ - "90bad307da26ab8e9f887844a25f671b9f9244c0", + "90bad307da26ab8e9f887844a25f671b9f9244c0", "support" - ], + ], "css/negative-calc-cv.html": [ - "83607a3412ec051d54545577d1c65a468b1deb7a", + "83607a3412ec051d54545577d1c65a468b1deb7a", "reftest" - ], + ], "css/negative_margin_uncle_a.html": [ - "6ef7fab6298610e36ce652861163e5de35f04fa6", + "6ef7fab6298610e36ce652861163e5de35f04fa6", "reftest" - ], + ], "css/negative_margin_uncle_b.html": [ - "3269c47c2d6f353370d991e385df79905166136d", + "3269c47c2d6f353370d991e385df79905166136d", "support" - ], + ], "css/negative_margins_a.html": [ - "71245dfec7594731531b0b604c5693e7447e7652", + "71245dfec7594731531b0b604c5693e7447e7652", "reftest" - ], + ], "css/negative_margins_b.html": [ - "017b93a56004a1b09a90ab7c2afa18fc9c064c25", + "017b93a56004a1b09a90ab7c2afa18fc9c064c25", "support" - ], + ], "css/no-image-ref.html": [ - "0d53ae51ac60682c87c596218b97685328f7ba82", + "0d53ae51ac60682c87c596218b97685328f7ba82", "support" - ], + ], "css/no-image.html": [ - "e4ee17532cea9f904e031cec4c4339893f96b7e6", + "e4ee17532cea9f904e031cec4c4339893f96b7e6", "reftest" - ], + ], "css/no_image_background_a.html": [ - "30618ac87752681f6be697c4e34945bdcd6c6bb5", + "30618ac87752681f6be697c4e34945bdcd6c6bb5", "reftest" - ], + ], "css/no_image_background_ref.html": [ - "d1793b43b86d9d18ab515c60735cdcd10f4b33b5", + "d1793b43b86d9d18ab515c60735cdcd10f4b33b5", "support" - ], + ], "css/non-inline-block-resets-underline-property-ref.html": [ - "deb5cddf31abeedbe204dd6055b02aa1bd0c1c8f", + "deb5cddf31abeedbe204dd6055b02aa1bd0c1c8f", "support" - ], + ], "css/non-inline-block-resets-underline-property.html": [ - "6b7f0c947fed4fcd75d440b19a6b2ab479e25dc0", + "6b7f0c947fed4fcd75d440b19a6b2ab479e25dc0", "reftest" - ], + ], "css/normalize-rotation-ref.html": [ - "65fbe7907e84673fee3d2e8dc713a6d1b2919086", + "65fbe7907e84673fee3d2e8dc713a6d1b2919086", "support" - ], + ], "css/normalize-rotation.html": [ - "c689f9e92e6c4bb8709550dc774d83ab920b85e6", + "c689f9e92e6c4bb8709550dc774d83ab920b85e6", "reftest" - ], + ], "css/noscript.html": [ - "eea193b7b425935fc9504a18644a6244466b7601", + "eea193b7b425935fc9504a18644a6244466b7601", "reftest" - ], + ], "css/noscript_ref.html": [ - "51a30707875ff70e5a16de117a02225645484009", + "51a30707875ff70e5a16de117a02225645484009", "support" - ], + ], "css/noteq_500x300_white.html": [ - "af89ba927e1b9e46c0748dbacde24a82bbbc88f1", + "af89ba927e1b9e46c0748dbacde24a82bbbc88f1", "support" - ], + ], "css/noteq_attr_exists_selector.html": [ - "c335c166985cb633f5174f9bbd0fae27e2f5d3fe", + "c335c166985cb633f5174f9bbd0fae27e2f5d3fe", "support" - ], + ], "css/nth_child_pseudo_a.html": [ - "925083e07af052e93767527bae4cceaf032d7413", + "925083e07af052e93767527bae4cceaf032d7413", "reftest" - ], + ], "css/nth_child_pseudo_b.html": [ - "b0112cb0777f82d383d2cc3452cc9e9decdabbbb", + "b0112cb0777f82d383d2cc3452cc9e9decdabbbb", "support" - ], + ], "css/nth_last_child_pseudo_a.html": [ - "838ffe4565097a3c403f796341b4dfd11a4fe08d", + "838ffe4565097a3c403f796341b4dfd11a4fe08d", "reftest" - ], + ], "css/nth_last_child_pseudo_b.html": [ - "5be3dbb34161064a0d7db7e29c0f3cb6a8af46eb", + "5be3dbb34161064a0d7db7e29c0f3cb6a8af46eb", "support" - ], + ], "css/nth_last_of_type_pseudo_a.html": [ - "9f9816a2ede5912f6366965dd32d7a94607a7052", + "9f9816a2ede5912f6366965dd32d7a94607a7052", "reftest" - ], + ], "css/nth_last_of_type_pseudo_b.html": [ - "fe04106efc6800fe468051c054f24173c6f396ca", + "fe04106efc6800fe468051c054f24173c6f396ca", "support" - ], + ], "css/nth_of_type_pseudo_a.html": [ - "f3020e01d5b4f30cde74bc985b93df3fc1528b0a", + "f3020e01d5b4f30cde74bc985b93df3fc1528b0a", "reftest" - ], + ], "css/nth_of_type_pseudo_b.html": [ - "8b76202920a7a8457ad931be2719636588a17c7c", + "8b76202920a7a8457ad931be2719636588a17c7c", "support" - ], + ], "css/object_element_a.html": [ - "04c18c2fbbb3d68b7379b0ffbe26627d59285b2a", + "04c18c2fbbb3d68b7379b0ffbe26627d59285b2a", "reftest" - ], + ], "css/object_element_b.html": [ - "6b47ed7d16cb0d53834e027ea899482e2d61387b", + "6b47ed7d16cb0d53834e027ea899482e2d61387b", "support" - ], + ], "css/octicons_a.html": [ - "61d70be6d78802274d2f7beb25fad587988889ba", + "61d70be6d78802274d2f7beb25fad587988889ba", "reftest" - ], + ], "css/octicons_ref.html": [ - "926297b1da46cc42fc235b7c9b934a0de7c4898c", + "926297b1da46cc42fc235b7c9b934a0de7c4898c", "support" - ], + ], "css/offset_properties_inline.html": [ - "9b93cde7fc09e34687e263896828b46e50003919", + "9b93cde7fc09e34687e263896828b46e50003919", "testharness" - ], + ], "css/ol_japanese_iroha_a.html": [ - "2a20d40f01d11dec40aac2f99af1bd5bf395bf70", + "2a20d40f01d11dec40aac2f99af1bd5bf395bf70", "reftest" - ], + ], "css/ol_japanese_iroha_bullet_styles.html": [ - "9db8f28dbd40ddf8681c27d31f68fa38164dcf3a", + "9db8f28dbd40ddf8681c27d31f68fa38164dcf3a", "reftest" - ], + ], "css/ol_japanese_iroha_ref.html": [ - "582fdc96efc5061b8bb11bc804a5e964c6aec0fe", + "582fdc96efc5061b8bb11bc804a5e964c6aec0fe", "support" - ], + ], "css/ol_simple_a.html": [ - "0f23526acb532cc30c1d0650d055b5ae185f3dd4", + "0f23526acb532cc30c1d0650d055b5ae185f3dd4", "reftest" - ], + ], "css/ol_simple_ref.html": [ - "d3411bb2e6d5a1c80696af9cb4cd521ec3f81ba5", + "d3411bb2e6d5a1c80696af9cb4cd521ec3f81ba5", "support" - ], + ], "css/only_child_pseudo_a.html": [ - "9ecf1f8a00b3ecd507fff24057ccc67b175a7949", + "9ecf1f8a00b3ecd507fff24057ccc67b175a7949", "reftest" - ], + ], "css/only_child_pseudo_b.html": [ - "7723dd549ceb9597731a5592ebb3d6ca7ea63ce3", + "7723dd549ceb9597731a5592ebb3d6ca7ea63ce3", "support" - ], + ], "css/only_of_type_pseudo_a.html": [ - "3d33b0744398a9a1ffa86533f59c2eb0962d762f", + "3d33b0744398a9a1ffa86533f59c2eb0962d762f", "reftest" - ], + ], "css/only_of_type_pseudo_b.html": [ - "c66c0faadda977e89ce78128a8eb657b1d954041", + "c66c0faadda977e89ce78128a8eb657b1d954041", "support" - ], + ], "css/opacity_simple_a.html": [ - "320bc44f16f023cca4d65a0febc35e798c265ff1", + "320bc44f16f023cca4d65a0febc35e798c265ff1", "reftest" - ], + ], "css/opacity_simple_ref.html": [ - "dadfaf861693424a6e95de5f54dde2c3b953c859", + "dadfaf861693424a6e95de5f54dde2c3b953c859", "support" - ], + ], "css/opacity_stacking_context_a.html": [ - "7062b7f7acda52bf223f6ec996aeea108a9a181b", + "7062b7f7acda52bf223f6ec996aeea108a9a181b", "reftest" - ], + ], "css/opacity_stacking_context_ref.html": [ - "3f332580b1abd237c870f2af549b41f2aa89b3d9", + "3f332580b1abd237c870f2af549b41f2aa89b3d9", "support" - ], + ], "css/outline_offset_a.html": [ - "f54840a0019e0a41adf661dbbb58cfa2f9413a02", + "f54840a0019e0a41adf661dbbb58cfa2f9413a02", "reftest" - ], + ], "css/outline_offset_ref.html": [ - "0540761c9bba71570b228e1a635061581a7e3640", + "0540761c9bba71570b228e1a635061581a7e3640", "support" - ], + ], "css/outlines_simple_a.html": [ - "983df12c89b0a57a8c9b5a8f97b0540ec2ace84d", + "983df12c89b0a57a8c9b5a8f97b0540ec2ace84d", "reftest" - ], + ], "css/outlines_simple_ref.html": [ - "994661d78511fd7df1b09ee23bb714702ee1263d", + "994661d78511fd7df1b09ee23bb714702ee1263d", "support" - ], + ], "css/outlines_wrap_a.html": [ - "732333be2a042217d7e10853bb1551a83d8002e1", + "732333be2a042217d7e10853bb1551a83d8002e1", "reftest" - ], + ], "css/outlines_wrap_ref.html": [ - "5050e156f61633f08802eb8055ca9aa672298836", + "5050e156f61633f08802eb8055ca9aa672298836", "support" - ], + ], "css/outset.html": [ - "eda9943d41d18577684db427d7321f16004ede1e", + "eda9943d41d18577684db427d7321f16004ede1e", "reftest" - ], + ], "css/outset.png": [ - "fdef12129efbff60d6e9da3bada385eec35eab66", + "fdef12129efbff60d6e9da3bada385eec35eab66", "support" - ], + ], "css/outset_blackborder.html": [ - "15fedb63a7d19a34135084e8c064951c23300f6d", + "15fedb63a7d19a34135084e8c064951c23300f6d", "reftest" - ], + ], "css/outset_ref.html": [ - "6da0826efdfff71003607dd2b95924bf34625efc", + "6da0826efdfff71003607dd2b95924bf34625efc", "support" - ], + ], "css/overconstrained_block.html": [ - "3cad163dab51c17a1d4546a31444b63b1c1332c7", + "3cad163dab51c17a1d4546a31444b63b1c1332c7", "reftest" - ], + ], "css/overconstrained_block_ref.html": [ - "a6662f08769cf9970186e9fa5b0c7b0a55fa824f", + "a6662f08769cf9970186e9fa5b0c7b0a55fa824f", "support" - ], + ], "css/overflow_auto.html": [ - "3529fd291317dbd8db07daaedba2fbde531654b3", + "3529fd291317dbd8db07daaedba2fbde531654b3", "reftest" - ], + ], "css/overflow_auto_stacking_order_a.html": [ - "62b339663053d63c67299cf02be54df729aea4a8", + "62b339663053d63c67299cf02be54df729aea4a8", "reftest" - ], + ], "css/overflow_auto_stacking_order_ref.html": [ - "a8f5cd1287f84ad09acf9c43ba8e0a28664388d0", + "a8f5cd1287f84ad09acf9c43ba8e0a28664388d0", "support" - ], + ], "css/overflow_border_radius.html": [ - "338a2f603e69b2a3eb385a46343c4f3e62711f85", + "338a2f603e69b2a3eb385a46343c4f3e62711f85", "reftest" - ], + ], "css/overflow_border_radius_ref.html": [ - "1c29c1fa3d6a71b2d3ecf0a7a5a25b48f8b3160b", + "1c29c1fa3d6a71b2d3ecf0a7a5a25b48f8b3160b", "support" - ], + ], "css/overflow_clipping.html": [ - "844686325a56521794a5cbf6240999694dbad39e", + "844686325a56521794a5cbf6240999694dbad39e", "reftest" - ], + ], "css/overflow_clipping_ref.html": [ - "53ec1e6a15a51d17218b320746b34ee524108fee", + "53ec1e6a15a51d17218b320746b34ee524108fee", "support" - ], + ], "css/overflow_hidden_clip.html": [ - "23ab290591b3477ea1368502dd4b1d3c54269d8f", + "23ab290591b3477ea1368502dd4b1d3c54269d8f", "reftest" - ], + ], "css/overflow_hidden_clip_ref.html": [ - "070d37722412088df25a1eb4848915cf35ed329d", + "070d37722412088df25a1eb4848915cf35ed329d", "support" - ], + ], "css/overflow_position_abs_inline_block.html": [ - "e862dddfe5c319afbcacbe418340a0c89b9dce94", + "e862dddfe5c319afbcacbe418340a0c89b9dce94", "reftest" - ], + ], "css/overflow_position_abs_inline_block_ref.html": [ - "f1ef2d9a577c6bfa622b3cea8fec92ba52cc3e3a", + "f1ef2d9a577c6bfa622b3cea8fec92ba52cc3e3a", "support" - ], + ], "css/overflow_position_abs_inside_normal_a.html": [ - "549fa5115561f9008f7a1e67def84fc30067c03e", + "549fa5115561f9008f7a1e67def84fc30067c03e", "reftest" - ], + ], "css/overflow_position_abs_inside_normal_b.html": [ - "6d0bb81e4beab8e6add56137837e74ffc82a57a7", + "6d0bb81e4beab8e6add56137837e74ffc82a57a7", "support" - ], + ], "css/overflow_position_abs_simple_a.html": [ - "95191fdcec1ee5e1ddc8e4ffba549e2df3925401", + "95191fdcec1ee5e1ddc8e4ffba549e2df3925401", "reftest" - ], + ], "css/overflow_position_abs_simple_b.html": [ - "d899d1f950cf76bfa7d4e080c48abbab38c27102", + "d899d1f950cf76bfa7d4e080c48abbab38c27102", "support" - ], + ], "css/overflow_position_rel_inline_block.html": [ - "116e448550c8029f43b4deb960d100b4f63d2264", + "116e448550c8029f43b4deb960d100b4f63d2264", "reftest" - ], + ], "css/overflow_position_rel_inline_block_ref.html": [ - "c4f0ec97cb02b9cc5d08c5992ae1c19d826369b1", + "c4f0ec97cb02b9cc5d08c5992ae1c19d826369b1", "support" - ], + ], "css/overflow_scroll.html": [ - "bf32fbc01d15ec9d30cd7aaeca28ea3ac4ac6d72", + "bf32fbc01d15ec9d30cd7aaeca28ea3ac4ac6d72", "reftest" - ], + ], "css/overflow_simple_a.html": [ - "96951aa172fbbbc47bf3400b10f03abc933f4d14", + "96951aa172fbbbc47bf3400b10f03abc933f4d14", "reftest" - ], + ], "css/overflow_simple_b.html": [ - "d899d1f950cf76bfa7d4e080c48abbab38c27102", + "d899d1f950cf76bfa7d4e080c48abbab38c27102", "support" - ], + ], "css/overflow_transformed_sc.html": [ - "6fbd5e1ef0c8925bf41a2eb7050f9dbb76c8955c", + "6fbd5e1ef0c8925bf41a2eb7050f9dbb76c8955c", "reftest" - ], + ], "css/overflow_transformed_sc_ref.html": [ - "ca67f4ecb136005ed0c066f3e945275eafc8be31", + "ca67f4ecb136005ed0c066f3e945275eafc8be31", "support" - ], + ], "css/overflow_transformed_sc_rotate.html": [ - "5724bb3f1a6e8ab36fa4a6db26792ef3c64dc15b", + "5724bb3f1a6e8ab36fa4a6db26792ef3c64dc15b", "reftest" - ], + ], "css/overflow_transformed_sc_rotate_ref.html": [ - "0035ffcf2179af2d919cebc94570665ce3d98cfa", + "0035ffcf2179af2d919cebc94570665ce3d98cfa", "support" - ], + ], "css/overflow_wrap_a.html": [ - "ee64197bb2783e7b77cb83f6d00a9e424c84eb72", + "ee64197bb2783e7b77cb83f6d00a9e424c84eb72", "reftest" - ], + ], "css/overflow_wrap_ref.html": [ - "33d0de4c381e09f98926a484228fb02cea03038b", + "33d0de4c381e09f98926a484228fb02cea03038b", "support" - ], + ], "css/overflow_xy_a.html": [ - "40d25ab3230cd81cd4c5c0b93b954a5540ecea6d", + "40d25ab3230cd81cd4c5c0b93b954a5540ecea6d", "reftest" - ], + ], "css/overflow_xy_ref.html": [ - "777f18bbebec6140884039662227178a5cf88b29", + "777f18bbebec6140884039662227178a5cf88b29", "support" - ], + ], "css/per_glyph_font_fallback_a.html": [ - "a6f768682293964a730b3cb6bd2e19764b3f75fb", + "a6f768682293964a730b3cb6bd2e19764b3f75fb", "reftest" - ], + ], "css/per_glyph_font_fallback_ref.html": [ - "7e0c56a3a3ab6402ce9c5e43f15e4e8f2eacc766", + "7e0c56a3a3ab6402ce9c5e43f15e4e8f2eacc766", "support" - ], + ], "css/percent_height.html": [ - "0acb14187cebfd5c775dca15f6a77e506d776e3a", + "0acb14187cebfd5c775dca15f6a77e506d776e3a", "reftest" - ], + ], "css/percent_height_ref.html": [ - "f35b27c4536faaa295e559818d099a57f7b65045", + "f35b27c4536faaa295e559818d099a57f7b65045", "support" - ], + ], "css/percentage_height_float_a.html": [ - "4f16e43f433d3a8325e6ef5317024854bd2210d3", + "4f16e43f433d3a8325e6ef5317024854bd2210d3", "reftest" - ], + ], "css/percentage_height_float_ref.html": [ - "f66cec4cfb7e7756c0e9b92e74fbbeabbc497f1a", + "f66cec4cfb7e7756c0e9b92e74fbbeabbc497f1a", "support" - ], + ], "css/percentage_height_root.html": [ - "3b3d54867023a413c305e18bc53ca87059dba03d", + "3b3d54867023a413c305e18bc53ca87059dba03d", "reftest" - ], + ], "css/percentage_height_root_ref.html": [ - "6ea83e4a44170ede688b514fbd762e0be1fa8acf", + "6ea83e4a44170ede688b514fbd762e0be1fa8acf", "support" - ], + ], "css/percentage_width_inline_block_a.html": [ - "7238722e23e82f0c7e035c5209442e1c205aaa4b", + "7238722e23e82f0c7e035c5209442e1c205aaa4b", "reftest" - ], + ], "css/percentage_width_inline_block_ref.html": [ - "375c7c8354fdd3f8b6ff9f59c58118c9c5af88dc", + "375c7c8354fdd3f8b6ff9f59c58118c9c5af88dc", "support" - ], + ], "css/perspective.html": [ - "a575b866a89fbe76f3364d1764aa84b23cef899b", + "a575b866a89fbe76f3364d1764aa84b23cef899b", "testharness" - ], + ], "css/perspective_zero.html": [ - "abc224ccd6f1e7320c9ab8e2650ff897bfa3f3de", + "abc224ccd6f1e7320c9ab8e2650ff897bfa3f3de", "reftest" - ], + ], "css/perspective_zero_ref.html": [ - "3852154dd9db0aaf1bb576292cbdca90df8dfb91", + "3852154dd9db0aaf1bb576292cbdca90df8dfb91", "support" - ], + ], "css/pixel_snapping_border_a.html": [ - "c55be8adeb735cb5d187e82335d614885538ef58", + "c55be8adeb735cb5d187e82335d614885538ef58", "reftest" - ], + ], "css/pixel_snapping_border_ref.html": [ - "483046f65cf2f701a7ffb98dcc162d003dc6b681", + "483046f65cf2f701a7ffb98dcc162d003dc6b681", "support" - ], + ], "css/pixel_snapping_glyphs.html": [ - "a423250c4d440fe7bd8cc3a8392a6ffe4327921a", + "a423250c4d440fe7bd8cc3a8392a6ffe4327921a", "reftest" - ], + ], "css/pixel_snapping_glyphs_ref.html": [ - "92ef1f14e7fb17b434f9be8718420bacbabe5e4b", + "92ef1f14e7fb17b434f9be8718420bacbabe5e4b", "support" - ], + ], "css/pixel_snapping_position_a.html": [ - "ed438f9ed50cb602167b279b08319bcbcfde5709", + "ed438f9ed50cb602167b279b08319bcbcfde5709", "reftest" - ], + ], "css/pixel_snapping_position_ref.html": [ - "58e3e4eddb072f956551325947874f3e284fba1b", + "58e3e4eddb072f956551325947874f3e284fba1b", "support" - ], + ], "css/png_rgba_colorspace_a.html": [ - "f4dfcfc5730863f739fc8dedab8cc718079b10fa", + "f4dfcfc5730863f739fc8dedab8cc718079b10fa", "reftest" - ], + ], "css/png_rgba_colorspace_a.png": [ - "9b9bd17fe479fa8615983574e386f90aec2f91fd", + "9b9bd17fe479fa8615983574e386f90aec2f91fd", "support" - ], + ], "css/png_rgba_colorspace_b.html": [ - "c120145f8e838f3c9251818553559816ac2a3ec0", + "c120145f8e838f3c9251818553559816ac2a3ec0", "support" - ], + ], "css/position_abs_cb_with_non_cb_kid_a.html": [ - "3cdc98eb319a030ca9117419eb99c9bff409731b", + "3cdc98eb319a030ca9117419eb99c9bff409731b", "reftest" - ], + ], "css/position_abs_cb_with_non_cb_kid_b.html": [ - "fb7007bf64432dff4364a42bab63998d1362c085", + "fb7007bf64432dff4364a42bab63998d1362c085", "support" - ], + ], "css/position_abs_height_width_a.html": [ - "8d10201a66dc204ad99884ef65d8f6a3d62ff7ad", + "8d10201a66dc204ad99884ef65d8f6a3d62ff7ad", "reftest" - ], + ], "css/position_abs_height_width_b.html": [ - "ab53620a55225fcf9d499ef39e67806cc20b8bc1", + "ab53620a55225fcf9d499ef39e67806cc20b8bc1", "support" - ], + ], "css/position_abs_left_a.html": [ - "d649a8847d8b5819d8b4d6fad52bfd219bd674de", + "d649a8847d8b5819d8b4d6fad52bfd219bd674de", "reftest" - ], + ], "css/position_abs_left_b.html": [ - "f1d4fcd65a827768e0b4f707bea08a5fbf843fa1", + "f1d4fcd65a827768e0b4f707bea08a5fbf843fa1", "support" - ], + ], "css/position_abs_margin_top_percentage_a.html": [ - "790e8afac62cdbab1e4f478d030eba9695a741ea", + "790e8afac62cdbab1e4f478d030eba9695a741ea", "reftest" - ], + ], "css/position_abs_margin_top_percentage_b.html": [ - "d6dc08da58eee1df6cc1d6955676711a9308c4f5", + "d6dc08da58eee1df6cc1d6955676711a9308c4f5", "support" - ], + ], "css/position_abs_nested_a.html": [ - "aae8081c2c0a29bc2b416d5efe95ffa5a37829bc", + "aae8081c2c0a29bc2b416d5efe95ffa5a37829bc", "reftest" - ], + ], "css/position_abs_nested_b.html": [ - "f3ccdee17aa67ea977385bebcaeca5546f7b56ec", + "f3ccdee17aa67ea977385bebcaeca5546f7b56ec", "support" - ], + ], "css/position_abs_pseudo_a.html": [ - "2362c883e5cdb83f883bf866315e6afd5cf02867", + "2362c883e5cdb83f883bf866315e6afd5cf02867", "reftest" - ], + ], "css/position_abs_pseudo_b.html": [ - "21420d4893d98e9d28ce303895277385ba6ecc7b", + "21420d4893d98e9d28ce303895277385ba6ecc7b", "support" - ], + ], "css/position_abs_replaced_simple_a.html": [ - "d5231adb4b707520aa74c49979e0e99c10c33e41", + "d5231adb4b707520aa74c49979e0e99c10c33e41", "reftest" - ], + ], "css/position_abs_replaced_simple_b.html": [ - "38d051ed829a1dd73c5d2b091039ec8895242902", + "38d051ed829a1dd73c5d2b091039ec8895242902", "support" - ], + ], "css/position_abs_static_y_a.html": [ - "672c02f438f8a08783d6ea44a22682956908c858", + "672c02f438f8a08783d6ea44a22682956908c858", "reftest" - ], + ], "css/position_abs_static_y_b.html": [ - "7b149c7433d75d98b9d98b70b869820088b85074", + "7b149c7433d75d98b9d98b70b869820088b85074", "support" - ], + ], "css/position_abs_width_percentage_a.html": [ - "f9ac2d46b3276696429e887478e129ea68e73886", + "f9ac2d46b3276696429e887478e129ea68e73886", "reftest" - ], + ], "css/position_abs_width_percentage_b.html": [ - "0352d787e69c5dc0c69f12d5206772c6c895fec4", + "0352d787e69c5dc0c69f12d5206772c6c895fec4", "support" - ], + ], "css/position_fixed_a.html": [ - "708fc8bcf8e188df9e09b66e0db32ef8064ad90f", + "708fc8bcf8e188df9e09b66e0db32ef8064ad90f", "reftest" - ], + ], "css/position_fixed_b.html": [ - "5d40c68109cfb0f28fa88cc315450e0a508bf880", + "5d40c68109cfb0f28fa88cc315450e0a508bf880", "support" - ], + ], "css/position_fixed_background_color_a.html": [ - "f10f17848383478ee95b0bef90283c0941a2fbcb", + "f10f17848383478ee95b0bef90283c0941a2fbcb", "reftest" - ], + ], "css/position_fixed_background_color_b.html": [ - "bbabcdf938808b7969684d880a82666eb91fa2bb", + "bbabcdf938808b7969684d880a82666eb91fa2bb", "support" - ], + ], "css/position_fixed_overflow_a.html": [ - "48c795262d19de9e1d663a40cb677ade846e5458", + "48c795262d19de9e1d663a40cb677ade846e5458", "reftest" - ], + ], "css/position_fixed_overflow_b.html": [ - "a8947566153c187ba3191084f89d0163bc5b666e", + "a8947566153c187ba3191084f89d0163bc5b666e", "support" - ], + ], "css/position_fixed_simple_a.html": [ - "d01b955091107990d014e7f7be9c1181e5b06d66", + "d01b955091107990d014e7f7be9c1181e5b06d66", "reftest" - ], + ], "css/position_fixed_simple_b.html": [ - "67ddd4208e63f411a469482314650a2be53b8e5a", + "67ddd4208e63f411a469482314650a2be53b8e5a", "support" - ], + ], "css/position_fixed_static_y_a.html": [ - "f7c7d5b1f93763f3204bb3aba27fbce564612039", + "f7c7d5b1f93763f3204bb3aba27fbce564612039", "reftest" - ], + ], "css/position_fixed_static_y_b.html": [ - "0b9ab5568ef0a577e2401cd9ecaae4633bd58b82", + "0b9ab5568ef0a577e2401cd9ecaae4633bd58b82", "support" - ], + ], "css/position_fixed_tile_edge.html": [ - "c9a06afa374bea88823fe17f30a4b36fcc5411af", + "c9a06afa374bea88823fe17f30a4b36fcc5411af", "reftest" - ], + ], "css/position_fixed_tile_edge_2.html": [ - "7e72bf09265174496f42ec835b898028846bcd06", + "7e72bf09265174496f42ec835b898028846bcd06", "reftest" - ], + ], "css/position_fixed_tile_edge_3.html": [ - "11d2001a8e9ce8eac6a4e7bac8b0c6346fe0be81", + "11d2001a8e9ce8eac6a4e7bac8b0c6346fe0be81", "reftest" - ], + ], "css/position_fixed_tile_edge_ref.html": [ - "21166e47f89f926fef2ff60c69005e448a6fdc0d", + "21166e47f89f926fef2ff60c69005e448a6fdc0d", "support" - ], + ], "css/position_relative_a.html": [ - "9ad0b71a73752f18bb6a9b8ae5d36f62b36e5ebf", + "9ad0b71a73752f18bb6a9b8ae5d36f62b36e5ebf", "reftest" - ], + ], "css/position_relative_b.html": [ - "588ed733f85bc98c17a139d3ac8458b8763684be", + "588ed733f85bc98c17a139d3ac8458b8763684be", "support" - ], + ], "css/position_relative_inline_block_a.html": [ - "87e2748ea46231c286b3a737cafcfad1b77dca4b", + "87e2748ea46231c286b3a737cafcfad1b77dca4b", "reftest" - ], + ], "css/position_relative_inline_block_ref.html": [ - "49bc6cad63155d8aeab7ab4279727cf7218feae0", + "49bc6cad63155d8aeab7ab4279727cf7218feae0", "support" - ], + ], "css/position_relative_painting_order_a.html": [ - "1d9ba17b218f978064f9f540be049391b928f60c", + "1d9ba17b218f978064f9f540be049391b928f60c", "reftest" - ], + ], "css/position_relative_painting_order_ref.html": [ - "d914b18ffd2e2d625daecdaea72ec528f8e1bc86", + "d914b18ffd2e2d625daecdaea72ec528f8e1bc86", "support" - ], + ], "css/position_relative_stacking_context_a.html": [ - "15890602485e0745a9902cda5b16061cbea35ff0", + "15890602485e0745a9902cda5b16061cbea35ff0", "reftest" - ], + ], "css/position_relative_stacking_context_contents_a.html": [ - "9dfcbf12631895fffed77495532bd476b5baa58b", + "9dfcbf12631895fffed77495532bd476b5baa58b", "reftest" - ], + ], "css/position_relative_stacking_context_contents_ref.html": [ - "05577cbb481a53266f225e49c61126f63d69b265", + "05577cbb481a53266f225e49c61126f63d69b265", "support" - ], + ], "css/position_relative_stacking_context_ref.html": [ - "1bb24a009b4a1b3a010cd9edc7fcf5d2e6f00f5b", + "1bb24a009b4a1b3a010cd9edc7fcf5d2e6f00f5b", "support" - ], + ], "css/position_relative_top_percentage_a.html": [ - "823ac1a52c1cb16fa22fbde1586e8fbf8738d642", + "823ac1a52c1cb16fa22fbde1586e8fbf8738d642", "reftest" - ], + ], "css/position_relative_top_percentage_b.html": [ - "c2d3dea79682911d73c67db1412fc7e056f04df5", + "c2d3dea79682911d73c67db1412fc7e056f04df5", "support" - ], + ], "css/position_relative_vertical_percentage_overflow_a.html": [ - "2afe7b9a419fc0cc43a51dfb4b5fbcfe004e1f5d", + "2afe7b9a419fc0cc43a51dfb4b5fbcfe004e1f5d", "reftest" - ], + ], "css/position_relative_vertical_percentage_overflow_ref.html": [ - "32bdcb8ab59789840845f223ac241eb278fae5a4", + "32bdcb8ab59789840845f223ac241eb278fae5a4", "support" - ], + ], "css/pre_ignorable_whitespace_a.html": [ - "cc11c24dc6dae7abffd941f64c4bf71149ad7f5a", + "cc11c24dc6dae7abffd941f64c4bf71149ad7f5a", "reftest" - ], + ], "css/pre_ignorable_whitespace_ref.html": [ - "48ffe0dd06f377f1b928ff6199863a6885a21c26", + "48ffe0dd06f377f1b928ff6199863a6885a21c26", "support" - ], + ], "css/pre_with_tab.html": [ - "bbcfd6856a50f5c2e14a9e530b13c6d5b038126d", + "bbcfd6856a50f5c2e14a9e530b13c6d5b038126d", "reftest" - ], + ], "css/pre_with_tab_ref.html": [ - "a0b8d6d8e93be03aacf8a8dd356dcb80955e8dcd", + "a0b8d6d8e93be03aacf8a8dd356dcb80955e8dcd", "support" - ], + ], "css/pseudo_content_with_layers.html": [ - "09dcdbcfbd17322c06e68d4ed207833bc4ffbb36", + "09dcdbcfbd17322c06e68d4ed207833bc4ffbb36", "reftest" - ], + ], "css/pseudo_content_with_layers_ref.html": [ - "0c5a56f33fa088e693372b74b00fe9a10e113e3a", + "0c5a56f33fa088e693372b74b00fe9a10e113e3a", "support" - ], + ], "css/pseudo_element_a.html": [ - "e6bb2186f9225050c223fc144c7419bc7629a981", + "e6bb2186f9225050c223fc144c7419bc7629a981", "reftest" - ], + ], "css/pseudo_element_b.html": [ - "892ce7ed4d999363b831d5099f26a154b90777e6", + "892ce7ed4d999363b831d5099f26a154b90777e6", "support" - ], + ], "css/pseudo_element_restyle_no_rules.html": [ - "f309fab8312a710303e2bcdecb4d62ee24ab759d", + "f309fab8312a710303e2bcdecb4d62ee24ab759d", "reftest" - ], + ], "css/pseudo_element_restyle_no_rules_ref.html": [ - "f09f5d074e86f4a4d9c6dcc3abb9834f181ebaec", + "f09f5d074e86f4a4d9c6dcc3abb9834f181ebaec", "support" - ], + ], "css/pseudo_element_spacing_margin.html": [ - "8ca773655a520eb9cad1befb2fad6a183c9bc5e4", + "8ca773655a520eb9cad1befb2fad6a183c9bc5e4", "reftest" - ], + ], "css/pseudo_element_spacing_padding.html": [ - "63de712937bd1aadd5b0c631343b105756bf00c7", + "63de712937bd1aadd5b0c631343b105756bf00c7", "reftest" - ], + ], "css/pseudo_element_spacing_ref.html": [ - "9eb5ee245cfbbbc943ef68091ba8d29c5b96f371", + "9eb5ee245cfbbbc943ef68091ba8d29c5b96f371", "support" - ], + ], "css/pseudo_inherit.html": [ - "63515c50d2047f3b0c9aec41ed27882c041a7ac7", + "63515c50d2047f3b0c9aec41ed27882c041a7ac7", "reftest" - ], + ], "css/pseudo_inherit_ref.html": [ - "0195f154cf3c4303e5aaf4fc9e7cfa358b8386d7", + "0195f154cf3c4303e5aaf4fc9e7cfa358b8386d7", "support" - ], + ], "css/quotes_none_a.html": [ - "c37ff23e9084d7d198b3c97e14d2e00ab417dd6c", + "c37ff23e9084d7d198b3c97e14d2e00ab417dd6c", "reftest" - ], + ], "css/quotes_none_ref.html": [ - "85f3cf14ca2da71a45efd75803e84e7b5dc23a85", + "85f3cf14ca2da71a45efd75803e84e7b5dc23a85", "support" - ], + ], "css/quotes_simple_a.html": [ - "579bcb8d219ae2039370afa7128f9d04c7340e5d", + "579bcb8d219ae2039370afa7128f9d04c7340e5d", "reftest" - ], + ], "css/quotes_simple_ref.html": [ - "b378efaa4ab1acf3435b3fc574a9ff630f34b9f5", + "b378efaa4ab1acf3435b3fc574a9ff630f34b9f5", "support" - ], + ], "css/relative_position_clip_a.html": [ - "801239c93ae6e3068eafc04f0f286a3f548e5b37", + "801239c93ae6e3068eafc04f0f286a3f548e5b37", "reftest" - ], + ], "css/relative_position_clip_ref.html": [ - "376c854fe81eac663faa0225936716f3c4620fc6", + "376c854fe81eac663faa0225936716f3c4620fc6", "support" - ], + ], "css/relative_position_vertical_percentage_a.html": [ - "f12eaece74c80137917e8dbec971e61283f7ea90", + "f12eaece74c80137917e8dbec971e61283f7ea90", "reftest" - ], + ], "css/relative_position_vertical_percentage_ref.html": [ - "e70b8d368920a3c9d58cdcb41e7c198ed507203e", + "e70b8d368920a3c9d58cdcb41e7c198ed507203e", "support" - ], + ], "css/removeproperty.html": [ - "64705e3984b4ac2513c2cda461247641de33869e", + "64705e3984b4ac2513c2cda461247641de33869e", "reftest" - ], + ], "css/removeproperty_ref.html": [ - "c2f19ccd4ce21fbd77f6a1aaefbf9adc349f33f0", + "c2f19ccd4ce21fbd77f6a1aaefbf9adc349f33f0", "support" - ], + ], "css/reset.css": [ - "e51564727011306f41cf77d38dc3c235d3c98147", + "e51564727011306f41cf77d38dc3c235d3c98147", "support" - ], + ], "css/restyle-nth-child-ref.html": [ - "c59c9fde35ca2115af42b1e72085226c578dd6e7", + "c59c9fde35ca2115af42b1e72085226c578dd6e7", "support" - ], + ], "css/restyle-nth-child.html": [ - "b7e1fb4b46102b0374a8f9a11e82f36b352739c1", + "b7e1fb4b46102b0374a8f9a11e82f36b352739c1", "reftest" - ], + ], "css/restyle_hints_attr.css": [ - "64d332c31f7771cfd156a97c94a1ca92cf97d00d", + "64d332c31f7771cfd156a97c94a1ca92cf97d00d", "support" - ], + ], "css/restyle_hints_attr.html": [ - "d9c55498f8f92e74083572e6e5b6e25007001853", + "d9c55498f8f92e74083572e6e5b6e25007001853", "reftest" - ], + ], "css/restyle_hints_attr_ref.html": [ - "2d87a0f4526ad20581ac65af8c501d49c01a8d6a", + "2d87a0f4526ad20581ac65af8c501d49c01a8d6a", "support" - ], + ], "css/restyle_hints_state.css": [ - "6a152778e421ab5780ef927413108043dde62821", + "6a152778e421ab5780ef927413108043dde62821", "support" - ], + ], "css/restyle_hints_state.html": [ - "27a56d146a3f0f4ae0d357380ba6c943fdd9d8e9", + "27a56d146a3f0f4ae0d357380ba6c943fdd9d8e9", "reftest" - ], + ], "css/restyle_hints_state_ref.html": [ - "d8d0ad1dd092a591ab23ec48e0d1c7c8975e94af", + "d8d0ad1dd092a591ab23ec48e0d1c7c8975e94af", "support" - ], + ], "css/root_display_inline_a.html": [ - "44d4297ad551c998a7a8bd136c27d3a1cd5d3646", + "44d4297ad551c998a7a8bd136c27d3a1cd5d3646", "reftest" - ], + ], "css/root_display_ref.html": [ - "26ba9034a2606d9a60d34662a56e29e418290b31", + "26ba9034a2606d9a60d34662a56e29e418290b31", "support" - ], + ], "css/root_display_without_style_a.html": [ - "861a1ba705116d501e28cfabf63455d945029af9", + "861a1ba705116d501e28cfabf63455d945029af9", "reftest" - ], + ], "css/root_height_a.html": [ - "728a197a555e2f05d53ca289d8ef4d6e76ecca47", + "728a197a555e2f05d53ca289d8ef4d6e76ecca47", "reftest" - ], + ], "css/root_height_b.html": [ - "b0f3d86a16c6696c49fd445d0aaf47af2f775df3", + "b0f3d86a16c6696c49fd445d0aaf47af2f775df3", "support" - ], + ], "css/root_margin_collapse_a.html": [ - "78b0662e571b7f40ac90c7f95069ef9071f383d4", + "78b0662e571b7f40ac90c7f95069ef9071f383d4", "reftest" - ], + ], "css/root_margin_collapse_b.html": [ - "d7bdcf4e5365ddea5ba5d47be5557c6a68bbb197", + "d7bdcf4e5365ddea5ba5d47be5557c6a68bbb197", "support" - ], + ], "css/root_margins_a.html": [ - "5ba8712a2af61d775928c92a21d702e661f4cc68", + "5ba8712a2af61d775928c92a21d702e661f4cc68", "reftest" - ], + ], "css/root_margins_ref.html": [ - "f96f3c30a54e65ae6a1c39f607bfcc0ced9cb8c5", + "f96f3c30a54e65ae6a1c39f607bfcc0ced9cb8c5", "support" - ], + ], "css/root_pseudo_a.html": [ - "daebb8c3c37f8b556fccbb72e2db48c1c15fdcd6", + "daebb8c3c37f8b556fccbb72e2db48c1c15fdcd6", "reftest" - ], + ], "css/root_pseudo_b.html": [ - "4b6d7a04ffcd8306236490fd8ccfa8acf2e32cc5", + "4b6d7a04ffcd8306236490fd8ccfa8acf2e32cc5", "support" - ], + ], "css/rotate_anim.html": [ - "a05f75c44ac2f90713afc4fd8b35ed7538e83bf6", + "a05f75c44ac2f90713afc4fd8b35ed7538e83bf6", "reftest" - ], + ], "css/rotate_anim_ref.html": [ - "84a9fea14ef68d8eb1032ef34bd8a578644a8cb2", + "84a9fea14ef68d8eb1032ef34bd8a578644a8cb2", "support" - ], + ], "css/rtl_body.html": [ - "2df16f4858c43f2a6c50e83ecdb3c0ec016a1a2b", + "2df16f4858c43f2a6c50e83ecdb3c0ec016a1a2b", "reftest" - ], + ], "css/rtl_body_ref.html": [ - "662d8667ab9f08545e1f9efef946f6e84ebf016f", + "662d8667ab9f08545e1f9efef946f6e84ebf016f", "support" - ], + ], "css/rtl_float_a.html": [ - "64612b5c0affc741445a0dad00be42353d503455", + "64612b5c0affc741445a0dad00be42353d503455", "reftest" - ], + ], "css/rtl_float_ref.html": [ - "3432a957d8104f2faa8c0fc82d98f9601178a0f7", + "3432a957d8104f2faa8c0fc82d98f9601178a0f7", "support" - ], + ], "css/rtl_margin_a.html": [ - "90310f3418e9e83ac0de546d54a1d9dbef833ab9", + "90310f3418e9e83ac0de546d54a1d9dbef833ab9", "reftest" - ], + ], "css/rtl_margin_ref.html": [ - "52ecebdf4a848fa966a6b5f8ec8b177f4cb25e6a", + "52ecebdf4a848fa966a6b5f8ec8b177f4cb25e6a", "support" - ], + ], "css/rtl_simple.html": [ - "b8b3ca952ac648af72ef1c3ab87ba31f3948dead", + "b8b3ca952ac648af72ef1c3ab87ba31f3948dead", "reftest" - ], + ], "css/rtl_simple_ref.html": [ - "371e7b94da4a701d3e9b4f92720de6e5b82f0a5a", + "371e7b94da4a701d3e9b4f92720de6e5b82f0a5a", "support" - ], + ], "css/rtl_table_a.html": [ - "cbb2d35328528072e053e02c8f37358d1c2dfa2d", + "cbb2d35328528072e053e02c8f37358d1c2dfa2d", "reftest" - ], + ], "css/rtl_table_ref.html": [ - "94b66b93f748ee289970b6b8e2b1397968d82d7b", + "94b66b93f748ee289970b6b8e2b1397968d82d7b", "support" - ], + ], "css/rust-0.png": [ - "20d93badf5e2290baba400611b888d31dc03b5af", + "20d93badf5e2290baba400611b888d31dc03b5af", "support" - ], + ], "css/rust-logo-256x256.png": [ - "63506dd85efce44f8433942a6f4e54d718a97046", + "63506dd85efce44f8433942a6f4e54d718a97046", "support" - ], + ], "css/rust_logo.png": [ - "20d93badf5e2290baba400611b888d31dc03b5af", + "20d93badf5e2290baba400611b888d31dc03b5af", "support" - ], + ], "css/servo_center_a.html": [ - "047191730c30e2595c731dd141f00842df93d0e7", + "047191730c30e2595c731dd141f00842df93d0e7", "reftest" - ], + ], "css/servo_center_ref.html": [ - "3d72f7940919fb877e691642ac1f147084b9584c", + "3d72f7940919fb877e691642ac1f147084b9584c", "support" - ], + ], "css/setattribute_id_restyle_a.html": [ - "68d6c02a375ff15aa1b554ab79ae49b54dc92b86", + "68d6c02a375ff15aa1b554ab79ae49b54dc92b86", "reftest" - ], + ], "css/setattribute_id_restyle_b.html": [ - "f16fe454c503343276a5cfdb47437dda529fb249", + "f16fe454c503343276a5cfdb47437dda529fb249", "support" - ], + ], "css/simple_inline_absolute_containing_block_a.html": [ - "4fdc1247b400eef10ad428e986dbd8f64fd15b47", + "4fdc1247b400eef10ad428e986dbd8f64fd15b47", "reftest" - ], + ], "css/simple_inline_absolute_containing_block_ref.html": [ - "413ac37355f9b08e3858d3cc4edd84dc27d29ec6", + "413ac37355f9b08e3858d3cc4edd84dc27d29ec6", "support" - ], + ], "css/smiling.png": [ - "725eef526d704d45f1bff18a035d666fc08f1445", + "725eef526d704d45f1bff18a035d666fc08f1445", "support" - ], + ], "css/stacked_layers.html": [ - "bb9d0155f86833d22203bbff0e5cc31a85d5e14c", + "bb9d0155f86833d22203bbff0e5cc31a85d5e14c", "reftest" - ], + ], "css/stacked_layers_ref.html": [ - "0525bab6b11800d29f90efc7efef0f43165fba01", + "0525bab6b11800d29f90efc7efef0f43165fba01", "support" - ], + ], "css/stacking_context_overflow_a.html": [ - "dc379afb77977b0e99a0a8ce3321c9afff236a37", + "dc379afb77977b0e99a0a8ce3321c9afff236a37", "reftest" - ], + ], "css/stacking_context_overflow_ref.html": [ - "49991c449ab4f42afae6f512a7f184e70d77bc34", + "49991c449ab4f42afae6f512a7f184e70d77bc34", "support" - ], + ], "css/stacking_context_overflow_relative_outline_a.html": [ - "65eee6d5bc5238517ff09b5935d1371bc8e14059", + "65eee6d5bc5238517ff09b5935d1371bc8e14059", "reftest" - ], + ], "css/stacking_context_overflow_relative_outline_ref.html": [ - "6117d76ff8fea8d1db5360246db7cc137604a817", + "6117d76ff8fea8d1db5360246db7cc137604a817", "support" - ], + ], "css/stacking_context_rtl-ref.html": [ - "1ad1875d75690fcfed49c21df718e8b321c6f04f", + "1ad1875d75690fcfed49c21df718e8b321c6f04f", "support" - ], + ], "css/stacking_context_rtl.html": [ - "2bd24384710c05f842eeed3d072acd9bdcec93e1", + "2bd24384710c05f842eeed3d072acd9bdcec93e1", "reftest" - ], + ], "css/stacking_order_overflow_auto.html": [ - "9da6457ce1f3fe89c9e535f6d3ebff65d5d9bc30", + "9da6457ce1f3fe89c9e535f6d3ebff65d5d9bc30", "reftest" - ], + ], "css/stacking_order_overflow_scroll.html": [ - "c8e3729dce3e158ae381c6cf57a9196df0b16b4b", + "c8e3729dce3e158ae381c6cf57a9196df0b16b4b", "reftest" - ], + ], "css/stacking_order_ref.html": [ - "908f43b1295f1a970a1b709128a23c5c28937263", + "908f43b1295f1a970a1b709128a23c5c28937263", "support" - ], + ], "css/style_is_in_doc.html": [ - "cb3a56c76714ba2908c662062f27383e34f73c35", + "cb3a56c76714ba2908c662062f27383e34f73c35", "reftest" - ], + ], "css/style_is_in_doc_ref.html": [ - "023768e8d77b0d9556b9853129d2f0366f6869b4", + "023768e8d77b0d9556b9853129d2f0366f6869b4", "support" - ], + ], "css/stylesheet_media_queries.html": [ - "49956367a16c3de98d173d4cf5692c05451340a0", + "49956367a16c3de98d173d4cf5692c05451340a0", "testharness" - ], + ], "css/subdirectory/background_image.css": [ - "0dd0c5e9c6166080a54a325cf5d67149e7ce57cf", + "0dd0c5e9c6166080a54a325cf5d67149e7ce57cf", "support" - ], + ], "css/submit_focus_a.html": [ - "2f45fb0ac1b03f77134206c2c1cf6f1b53fc1699", + "2f45fb0ac1b03f77134206c2c1cf6f1b53fc1699", "reftest" - ], + ], "css/submit_focus_b.html": [ - "732c705b400f0767d999cdb093f5235187fa064d", + "732c705b400f0767d999cdb093f5235187fa064d", "support" - ], + ], "css/svg_children.html": [ - "9562a1c5a2af81642aef4023b83daef672e15002", + "9562a1c5a2af81642aef4023b83daef672e15002", "reftest" - ], + ], "css/svg_children_ref.html": [ - "cadbabc7c5a0b671050b80d579d19cc6668ba2fc", + "cadbabc7c5a0b671050b80d579d19cc6668ba2fc", "support" - ], + ], "css/swatch-lime.png": [ - "55fd7fdaedfc1ed505b111f20fabbca568c68fa5", + "55fd7fdaedfc1ed505b111f20fabbca568c68fa5", "support" - ], + ], "css/swatch-orange.png": [ - "d3cd498b52bd88ea6c991f050f1ecb1cfdd136bb", + "d3cd498b52bd88ea6c991f050f1ecb1cfdd136bb", "support" - ], + ], "css/table_auto_width.html": [ - "02efc2cc36d087bcdb62c263603fcfab1a28879d", + "02efc2cc36d087bcdb62c263603fcfab1a28879d", "reftest" - ], + ], "css/table_auto_width_ref.html": [ - "79dd490fc23f6b39304beb322d378c7a520ce02d", + "79dd490fc23f6b39304beb322d378c7a520ce02d", "support" - ], + ], "css/table_caption_bottom_a.html": [ - "6eb0b0c12706d9b32650ccfc09de51c960ddbfe9", + "6eb0b0c12706d9b32650ccfc09de51c960ddbfe9", "reftest" - ], + ], "css/table_caption_bottom_ref.html": [ - "7c5dde58bd0229a5f743684b8811747dbcb5ff97", + "7c5dde58bd0229a5f743684b8811747dbcb5ff97", "support" - ], + ], "css/table_caption_top_a.html": [ - "ab921e9a3e6541827956fd535e6c2d0140d0e012", + "ab921e9a3e6541827956fd535e6c2d0140d0e012", "reftest" - ], + ], "css/table_caption_top_ref.html": [ - "d22c3b5e05065452f5afe7d32ba224afb1b1ca77", + "d22c3b5e05065452f5afe7d32ba224afb1b1ca77", "support" - ], + ], "css/table_cell_float_a.html": [ - "8c19383465d16c30bece7988f4a3256634579779", + "8c19383465d16c30bece7988f4a3256634579779", "reftest" - ], + ], "css/table_cell_float_ref.html": [ - "8c4eee36c3f9a98ba2dcab8f4db5bb867de3b96a", + "8c4eee36c3f9a98ba2dcab8f4db5bb867de3b96a", "support" - ], + ], "css/table_center_a.html": [ - "423e34c5258808637f9cf5a9d8170f8afb8b8e19", + "423e34c5258808637f9cf5a9d8170f8afb8b8e19", "reftest" - ], + ], "css/table_center_ref.html": [ - "27e3f34bfdc9a034484aaf8703b3264ca5a34014", + "27e3f34bfdc9a034484aaf8703b3264ca5a34014", "support" - ], + ], "css/table_colspan_fixed_a.html": [ - "627fe798dc22e11e43c356ba4aebffd2ec60d462", + "627fe798dc22e11e43c356ba4aebffd2ec60d462", "reftest" - ], + ], "css/table_colspan_fixed_ref.html": [ - "36a8756fb14f61fd84ffc63bd7674ba3e0c2bbaf", + "36a8756fb14f61fd84ffc63bd7674ba3e0c2bbaf", "support" - ], + ], "css/table_colspan_simple_a.html": [ - "0bd5292552c974484401af3951c815ee7a7259a7", + "0bd5292552c974484401af3951c815ee7a7259a7", "reftest" - ], + ], "css/table_colspan_simple_ref.html": [ - "7758b688985330915e0369a495bceeb4a7ecd17a", + "7758b688985330915e0369a495bceeb4a7ecd17a", "support" - ], + ], "css/table_colspan_spacing_a.html": [ - "6ff2df81ce5f0677ddc7b179eb6a88ddecd95840", + "6ff2df81ce5f0677ddc7b179eb6a88ddecd95840", "reftest" - ], + ], "css/table_colspan_spacing_ref.html": [ - "6ea1a783c91897b2690a1a344f8a9688c14a2ce0", + "6ea1a783c91897b2690a1a344f8a9688c14a2ce0", "support" - ], + ], "css/table_containing_block_a.html": [ - "1118412eccffa81259838fefe4b9e3d6768fc471", + "1118412eccffa81259838fefe4b9e3d6768fc471", "reftest" - ], + ], "css/table_containing_block_ref.html": [ - "36c274868cae917fb0ec436d3906359292210b9c", + "36c274868cae917fb0ec436d3906359292210b9c", "support" - ], + ], "css/table_expansion_to_fit_a.html": [ - "ce130e89652a03cfec5a90d166c971232c429aa3", + "ce130e89652a03cfec5a90d166c971232c429aa3", "reftest" - ], + ], "css/table_expansion_to_fit_ref.html": [ - "1e02d640f85d5c29110dafd07bdc89cd32843ff5", + "1e02d640f85d5c29110dafd07bdc89cd32843ff5", "support" - ], + ], "css/table_float_translation_a.html": [ - "41ceefa012d8dbbe3a5ddcc5e7a25fb6237974c2", + "41ceefa012d8dbbe3a5ddcc5e7a25fb6237974c2", "reftest" - ], + ], "css/table_float_translation_ref.html": [ - "7d1d08f26748166580760df8eef01dd1ca718563", + "7d1d08f26748166580760df8eef01dd1ca718563", "support" - ], + ], "css/table_intrinsic_style_specified_width_a.html": [ - "0e1a95148afcd57dc566836d000fde4a2d58ae4b", + "0e1a95148afcd57dc566836d000fde4a2d58ae4b", "reftest" - ], + ], "css/table_intrinsic_style_specified_width_ref.html": [ - "20eb6836c3952db8486b7a1708ec7d4dd22a742b", + "20eb6836c3952db8486b7a1708ec7d4dd22a742b", "support" - ], + ], "css/table_margin_a.html": [ - "b95a3a3ef29e9287bc7b772ab6ffae07c693c3bd", + "b95a3a3ef29e9287bc7b772ab6ffae07c693c3bd", "reftest" - ], + ], "css/table_margin_auto_a.html": [ - "447e1cacdda8ce0e3d093e7e66206cd2c02449f5", + "447e1cacdda8ce0e3d093e7e66206cd2c02449f5", "reftest" - ], + ], "css/table_margin_auto_ref.html": [ - "c46e9a410e5499bf6b0ef1b2ffd5720e1ac4666c", + "c46e9a410e5499bf6b0ef1b2ffd5720e1ac4666c", "support" - ], + ], "css/table_margin_ref.html": [ - "fa5c4f88d82201c7b96ded81828de5d53b3347ef", + "fa5c4f88d82201c7b96ded81828de5d53b3347ef", "support" - ], + ], "css/table_overflow.html": [ - "f37c66ac3efc7d166a8ba12cd5c016bf850d316b", + "f37c66ac3efc7d166a8ba12cd5c016bf850d316b", "reftest" - ], + ], "css/table_overflow_ref.html": [ - "763a95cf31c3f359c3da0ddb8de3e59a06aaf6a1", + "763a95cf31c3f359c3da0ddb8de3e59a06aaf6a1", "support" - ], + ], "css/table_padding_a.html": [ - "6c2feb220580c7f3fd7096b7e75be49bca2edb4e", + "6c2feb220580c7f3fd7096b7e75be49bca2edb4e", "reftest" - ], + ], "css/table_padding_ref.html": [ - "37258ea35a7e9d5c68eae433d34797d16667fdfa", + "37258ea35a7e9d5c68eae433d34797d16667fdfa", "support" - ], + ], "css/table_percentage_capping_a.html": [ - "fcd9250720084aceab695c7c202632302376a3b3", + "fcd9250720084aceab695c7c202632302376a3b3", "reftest" - ], + ], "css/table_percentage_capping_ref.html": [ - "1287f1db2c35f8a20c4a0f16137936a273c4ef87", + "1287f1db2c35f8a20c4a0f16137936a273c4ef87", "support" - ], + ], "css/table_percentage_width_a.html": [ - "c5ed8f6419957de6362dff7b92da27210a37a6ac", + "c5ed8f6419957de6362dff7b92da27210a37a6ac", "reftest" - ], + ], "css/table_percentage_width_ref.html": [ - "eb15c64aab62e56326452015f89d79fe3570e84b", + "eb15c64aab62e56326452015f89d79fe3570e84b", "support" - ], + ], "css/table_preferred_width_a.html": [ - "525f6253cfb1711e33acb4e13e062ecb5832c7d3", + "525f6253cfb1711e33acb4e13e062ecb5832c7d3", "reftest" - ], + ], "css/table_preferred_width_ref.html": [ - "06e9dd6694393744503912aa005e7320cc093e36", + "06e9dd6694393744503912aa005e7320cc093e36", "support" - ], + ], "css/table_root_percent_width.html": [ - "4294cf5f2ef46b14120c0dd2b2fa4524c55f84b1", + "4294cf5f2ef46b14120c0dd2b2fa4524c55f84b1", "reftest" - ], + ], "css/table_root_percent_width_ref.html": [ - "00b308a54e106d39963ffefde609ad1369279b28", + "00b308a54e106d39963ffefde609ad1369279b28", "support" - ], + ], "css/table_row_direction_a.html": [ - "88cd6fa6345d8457f2a49fc5b56b6ddd8dd5bab8", + "88cd6fa6345d8457f2a49fc5b56b6ddd8dd5bab8", "reftest" - ], + ], "css/table_row_direction_ref.html": [ - "03cdf991d022a9425a788a67f899f65d88361d61", + "03cdf991d022a9425a788a67f899f65d88361d61", "support" - ], + ], "css/table_rowspan_notequal_a.html": [ - "f37ad51c0ecd2ce30eb3c6825531d9e6845dc9ae", + "f37ad51c0ecd2ce30eb3c6825531d9e6845dc9ae", "reftest" - ], + ], "css/table_rowspan_notequal_ref.html": [ - "2b1e1b6bbcdd6c24c9ba7d71e6c498afaf1fbcf5", + "2b1e1b6bbcdd6c24c9ba7d71e6c498afaf1fbcf5", "support" - ], + ], "css/table_rowspan_rowgroup_a.html": [ - "94f091ccf1362c46085ad13d3c6f4e4dd422824c", + "94f091ccf1362c46085ad13d3c6f4e4dd422824c", "reftest" - ], + ], "css/table_rowspan_rowgroup_ref.html": [ - "0e4b668510a9f450d77dede9b5daa08c5e45baf7", + "0e4b668510a9f450d77dede9b5daa08c5e45baf7", "support" - ], + ], "css/table_rowspan_simple_a.html": [ - "8a0df11a942be6526616d41dde2f2be206031333", + "8a0df11a942be6526616d41dde2f2be206031333", "reftest" - ], + ], "css/table_rowspan_simple_ref.html": [ - "a9878865cd2ea999f3a8c840e03ab496cfd7fc48", + "a9878865cd2ea999f3a8c840e03ab496cfd7fc48", "support" - ], + ], "css/table_specified_width_a.html": [ - "ea0f69ee086613427aba80b55d4ff9a8caf48646", + "ea0f69ee086613427aba80b55d4ff9a8caf48646", "reftest" - ], + ], "css/table_specified_width_ref.html": [ - "5d1965711e2811c37770a7c1b077a1ad25aa42ad", + "5d1965711e2811c37770a7c1b077a1ad25aa42ad", "support" - ], + ], "css/table_valign_presentational_hint_a.html": [ - "e6df7d8de956bebd34a1360d5fb029477a910c03", + "e6df7d8de956bebd34a1360d5fb029477a910c03", "reftest" - ], + ], "css/table_valign_presentational_hint_ref.html": [ - "fcb03be12caf8bde92ef405effcf20495b6676c4", + "fcb03be12caf8bde92ef405effcf20495b6676c4", "support" - ], + ], "css/table_vertical_align_absolute_a.html": [ - "d29bbca479c05fdcfea6aa4b38d5c74c51650baa", + "d29bbca479c05fdcfea6aa4b38d5c74c51650baa", "reftest" - ], + ], "css/table_vertical_align_absolute_ref.html": [ - "908fccbfdc23916bda6cbe0e23127e6e7df00e5d", + "908fccbfdc23916bda6cbe0e23127e6e7df00e5d", "support" - ], + ], "css/table_vertical_align_margin_padding.html": [ - "3dc9c49c6c38831b4c021447aeacfda79bea46f6", + "3dc9c49c6c38831b4c021447aeacfda79bea46f6", "reftest" - ], + ], "css/table_vertical_align_margin_padding_ref.html": [ - "8ae237dbe2b956335b8e761b8c267b09f09073b1", + "8ae237dbe2b956335b8e761b8c267b09f09073b1", "support" - ], + ], "css/table_width_attribute_a.html": [ - "59c0ed5fa7311e6f7145fa358a1dda4093ae13ae", + "59c0ed5fa7311e6f7145fa358a1dda4093ae13ae", "reftest" - ], + ], "css/table_width_attribute_ref.html": [ - "7ccf3ea21a91e96ada3d2511bb9cfddeb616edee", + "7ccf3ea21a91e96ada3d2511bb9cfddeb616edee", "support" - ], + ], "css/table_with_position_sticky.html": [ - "327f668ec30637e51b972b43407d7148c473b7fc", + "327f668ec30637e51b972b43407d7148c473b7fc", "reftest" - ], + ], "css/table_with_position_sticky_ref.html": [ - "e7e5d66cd23524ecb672adb8afb812824885c6f3", + "e7e5d66cd23524ecb672adb8afb812824885c6f3", "support" - ], + ], "css/test.jpeg": [ - "3314a53600bc9ed915a0ff5d2c9478c078897ba1", + "3314a53600bc9ed915a0ff5d2c9478c078897ba1", "support" - ], + ], "css/test_font_family_parsing.html": [ - "fb43bee5635fdfe92f9d187b3f7d3087bff0c76b", + "fb43bee5635fdfe92f9d187b3f7d3087bff0c76b", "testharness" - ], + ], "css/test_variable_legal_values.html": [ - "22826c4d29c80e6af310078265320b066391a9ea", + "22826c4d29c80e6af310078265320b066391a9ea", "testharness" - ], + ], "css/test_variable_serialization_computed.html": [ - "a7f0b63d1c415f2fb49badcedc780f26f6bd3058", + "a7f0b63d1c415f2fb49badcedc780f26f6bd3058", "testharness" - ], + ], "css/test_variable_serialization_specified.html": [ - "5a0e7997ba4470039730f56e9174ed50713aca5e", + "5a0e7997ba4470039730f56e9174ed50713aca5e", "testharness" - ], + ], "css/text_align_complex_a.html": [ - "2d81dc278b3a347bdc1d24ca83ef4fb3b1af37d6", + "2d81dc278b3a347bdc1d24ca83ef4fb3b1af37d6", "reftest" - ], + ], "css/text_align_complex_ref.html": [ - "d7a244de5a8884e4e32c3d12c40e38815c791b9f", + "d7a244de5a8884e4e32c3d12c40e38815c791b9f", "support" - ], + ], "css/text_align_justify_a.html": [ - "b1384247a7447e281570b900f72c9f1399a629c4", + "b1384247a7447e281570b900f72c9f1399a629c4", "reftest" - ], + ], "css/text_align_justify_ref.html": [ - "556245af1cef230be5e88399af4e8a619356374e", + "556245af1cef230be5e88399af4e8a619356374e", "support" - ], + ], "css/text_align_rtl.html": [ - "1ec5be242e9e83a68dc78370ffd14d7776a22034", + "1ec5be242e9e83a68dc78370ffd14d7776a22034", "reftest" - ], + ], "css/text_align_rtl_ref.html": [ - "9aa2852c45abb8c5fb40044d3eaf38d9bb4f35c9", + "9aa2852c45abb8c5fb40044d3eaf38d9bb4f35c9", "support" - ], + ], "css/text_align_start_end.html": [ - "25b156ea004ec3c61a0eaa4e80b2de1edef11007", + "25b156ea004ec3c61a0eaa4e80b2de1edef11007", "reftest" - ], + ], "css/text_align_start_end_ref.html": [ - "cc8d6c4dec411eedce94982ca18bf93b012cdbc9", + "cc8d6c4dec411eedce94982ca18bf93b012cdbc9", "support" - ], + ], "css/text_damage_a.html": [ - "428e804c119ff768b5e5b6c08ae9fb7cb8992b1a", + "428e804c119ff768b5e5b6c08ae9fb7cb8992b1a", "reftest" - ], + ], "css/text_damage_ref.html": [ - "3cf8ef2b20c75a24fca2f36e63e79bc8748675a1", + "3cf8ef2b20c75a24fca2f36e63e79bc8748675a1", "support" - ], + ], "css/text_decoration_cached.html": [ - "10557883e6a327cc23a51236e7c399ffa29174ed", + "10557883e6a327cc23a51236e7c399ffa29174ed", "reftest" - ], + ], "css/text_decoration_cached_ref.html": [ - "04a222264c324f9e2f8fa3dfa9493e2691a1af4b", + "04a222264c324f9e2f8fa3dfa9493e2691a1af4b", "support" - ], + ], "css/text_decoration_propagation_a.html": [ - "52975110ef0b238a32c0e6ccba09a0ca6fa2f3a3", + "52975110ef0b238a32c0e6ccba09a0ca6fa2f3a3", "reftest" - ], + ], "css/text_decoration_propagation_b.html": [ - "ff7473ec78ef82155d01fb98e0a67e8e9b72488f", + "ff7473ec78ef82155d01fb98e0a67e8e9b72488f", "support" - ], + ], "css/text_decoration_smoke_a.html": [ - "ac7c814ee439c88a5c45ad3f098588b9e22f8a56", + "ac7c814ee439c88a5c45ad3f098588b9e22f8a56", "reftest" - ], + ], "css/text_decoration_smoke_ref.html": [ - "4bb7e6def4c42208e5285f77a55535152e1388d8", + "4bb7e6def4c42208e5285f77a55535152e1388d8", "support" - ], + ], "css/text_decoration_underline_subpx_a.html": [ - "700641537a8f630a93201dd52681996d4739c58e", + "700641537a8f630a93201dd52681996d4739c58e", "reftest" - ], + ], "css/text_decoration_underline_subpx_ref.html": [ - "8e23c14ed42ee66c7e9769abfb797d2b1c1ad0bf", + "8e23c14ed42ee66c7e9769abfb797d2b1c1ad0bf", "support" - ], + ], "css/text_indent_a.html": [ - "3f3f925f459cb9a670a7fc5e258e1fa5708d3324", + "3f3f925f459cb9a670a7fc5e258e1fa5708d3324", "reftest" - ], + ], "css/text_indent_ref.html": [ - "c4f7c2eaf56c0e2abbd1b40810e6e1f0916e35ad", + "c4f7c2eaf56c0e2abbd1b40810e6e1f0916e35ad", "support" - ], + ], "css/text_justify_none_a.html": [ - "925a13e6e15f53f149460de94fb023ff7c2637c5", + "925a13e6e15f53f149460de94fb023ff7c2637c5", "reftest" - ], + ], "css/text_justify_none_ref.html": [ - "6b129f0cc14db93b12d9536ce5d12c091d6bb869", + "6b129f0cc14db93b12d9536ce5d12c091d6bb869", "support" - ], + ], "css/text_node_opacity.html": [ - "6bb8d9c091c4b2d7ce6ed4cc9c763e2cbe23904b", + "6bb8d9c091c4b2d7ce6ed4cc9c763e2cbe23904b", "reftest" - ], + ], "css/text_node_opacity_ref.html": [ - "0d1bfeaca47bac5e9a36b977315cfb1ea37e2294", + "0d1bfeaca47bac5e9a36b977315cfb1ea37e2294", "support" - ], + ], "css/text_overflow_basic_a.html": [ - "7fa2222ece2c2443a0c1e9cc4c36f11853da5925", + "7fa2222ece2c2443a0c1e9cc4c36f11853da5925", "reftest" - ], + ], "css/text_overflow_basic_ref.html": [ - "a5f1021231090c2cfda6088bdec14a25c50f9fe5", + "a5f1021231090c2cfda6088bdec14a25c50f9fe5", "support" - ], + ], "css/text_overflow_ellipsis.html": [ - "70de0992fee1682333a01e232b183218047be669", + "70de0992fee1682333a01e232b183218047be669", "reftest" - ], + ], "css/text_overflow_ref.html": [ - "0e19e6e3f071e67360e19470c274e351d87ad3b5", + "0e19e6e3f071e67360e19470c274e351d87ad3b5", "support" - ], + ], "css/text_overflow_reflow.html": [ - "958e2826fa4c1a5e5e785faa582ac4bb2ea2840e", + "958e2826fa4c1a5e5e785faa582ac4bb2ea2840e", "reftest" - ], + ], "css/text_overflow_reflow_ref.html": [ - "3997908406b32e94a863e56935cbc89f240ffe07", + "3997908406b32e94a863e56935cbc89f240ffe07", "support" - ], + ], "css/text_overflow_string.html": [ - "3249b8b224f0e67d0f7bc2e714bacfa6084e7a78", + "3249b8b224f0e67d0f7bc2e714bacfa6084e7a78", "reftest" - ], + ], "css/text_shadow_blur_a.html": [ - "a87f3584d1bdd476730107983c095076ac10f01c", + "a87f3584d1bdd476730107983c095076ac10f01c", "reftest" - ], + ], "css/text_shadow_blur_ref.html": [ - "b733b16ec18bf9d445d8173f3bb275402bc679ba", + "b733b16ec18bf9d445d8173f3bb275402bc679ba", "support" - ], + ], "css/text_shadow_decorations_a.html": [ - "3df81eb610a7982f785d2d6bfba4830cb55a4669", + "3df81eb610a7982f785d2d6bfba4830cb55a4669", "reftest" - ], + ], "css/text_shadow_decorations_ref.html": [ - "00cd8dd3e3558b2246d255e354a7387e680abe74", + "00cd8dd3e3558b2246d255e354a7387e680abe74", "support" - ], + ], "css/text_shadow_multiple_shadows_a.html": [ - "95855a7d24ca622c7376ed3624936e3749329754", + "95855a7d24ca622c7376ed3624936e3749329754", "reftest" - ], + ], "css/text_shadow_multiple_shadows_ref.html": [ - "6a33debae4bf040bcf7e9cd81c351bac5084ff2b", + "6a33debae4bf040bcf7e9cd81c351bac5084ff2b", "support" - ], + ], "css/text_shadow_simple_a.html": [ - "af43aa604358433b7d3a1542c15d33116550b3a5", + "af43aa604358433b7d3a1542c15d33116550b3a5", "reftest" - ], + ], "css/text_shadow_simple_ref.html": [ - "34c9b897b9856ced433098b2c19f2d8bcf47c148", + "34c9b897b9856ced433098b2c19f2d8bcf47c148", "support" - ], + ], "css/text_transform_capitalize_a.html": [ - "6a77ff56d7636f02b5658ae5a32c7be42418304b", + "6a77ff56d7636f02b5658ae5a32c7be42418304b", "reftest" - ], + ], "css/text_transform_capitalize_ref.html": [ - "1fd4ceb1b301d8aef0eb98eca56a7a8d03dc5d5a", + "1fd4ceb1b301d8aef0eb98eca56a7a8d03dc5d5a", "support" - ], + ], "css/text_transform_lowercase_a.html": [ - "6971c40c4116c1c39662962853850e6570504d89", + "6971c40c4116c1c39662962853850e6570504d89", "reftest" - ], + ], "css/text_transform_lowercase_ref.html": [ - "d8d3bec39f7b068c80fe971371487feb44e9f77d", + "d8d3bec39f7b068c80fe971371487feb44e9f77d", "support" - ], + ], "css/text_transform_none_a.html": [ - "59f77f2f13ceed57b47c8e6ba850f4ec70305d56", + "59f77f2f13ceed57b47c8e6ba850f4ec70305d56", "reftest" - ], + ], "css/text_transform_none_ref.html": [ - "6eaaf7e9832f2b721d947fc4647031b5d52a4464", + "6eaaf7e9832f2b721d947fc4647031b5d52a4464", "support" - ], + ], "css/text_transform_uppercase_a.html": [ - "fe96b8ad64530a0e30085c1ec61820b9c79493e1", + "fe96b8ad64530a0e30085c1ec61820b9c79493e1", "reftest" - ], + ], "css/text_transform_uppercase_ref.html": [ - "97d2f366ea32246c55b7a8c01a89c1df86c3378c", + "97d2f366ea32246c55b7a8c01a89c1df86c3378c", "support" - ], + ], "css/textarea_space_calculation-ref.html": [ - "b777beb062b67a51c1efdfe4afa55568fd3724e6", + "b777beb062b67a51c1efdfe4afa55568fd3724e6", "support" - ], + ], "css/textarea_space_calculation.html": [ - "20945e971b543cbc11741863314ccf3595654e80", + "20945e971b543cbc11741863314ccf3595654e80", "reftest" - ], + ], "css/transform_3d.html": [ - "ec4e26eef1601227747afbf5ca2cae2b10e56142", + "ec4e26eef1601227747afbf5ca2cae2b10e56142", "reftest" - ], + ], "css/transform_3d_from_outside_viewport.html": [ - "f400968bb8512141ad4b15c524d0d449da05053a", + "f400968bb8512141ad4b15c524d0d449da05053a", "reftest" - ], + ], "css/transform_3d_from_outside_viewport_ref.html": [ - "1cd20131596dc6dbd02ee67a16982fbaf1e1a7fb", + "1cd20131596dc6dbd02ee67a16982fbaf1e1a7fb", "support" - ], + ], "css/transform_3d_ref.html": [ - "2b3b8a2e1a18f6e8b6e059c9ec641984a0367793", + "2b3b8a2e1a18f6e8b6e059c9ec641984a0367793", "support" - ], + ], "css/transform_optimization.html": [ - "41eef420c2713da8e5cb134c7b4ac0258c3d4480", + "41eef420c2713da8e5cb134c7b4ac0258c3d4480", "reftest" - ], + ], "css/transform_optimization_ref.html": [ - "09c0eb206640a474ebf5b3b21cc0a6e1fb3f5e90", + "09c0eb206640a474ebf5b3b21cc0a6e1fb3f5e90", "support" - ], + ], "css/transform_scroll_layer.html": [ - "a48d8fe749e0b9fde9ef4416991f70f5baae8aec", + "a48d8fe749e0b9fde9ef4416991f70f5baae8aec", "reftest" - ], + ], "css/transform_scroll_layer_ref.html": [ - "44953c3e7e2b1fdb59f127bf68437fb60247a90a", + "44953c3e7e2b1fdb59f127bf68437fb60247a90a", "support" - ], + ], "css/transform_simple_a.html": [ - "8af4ced9f79f1305df1d9094307cf95c97cab473", + "8af4ced9f79f1305df1d9094307cf95c97cab473", "reftest" - ], + ], "css/transform_simple_ref.html": [ - "ad55c46fa69885b55eea1b3c6675c5b8c6a04443", + "ad55c46fa69885b55eea1b3c6675c5b8c6a04443", "support" - ], + ], "css/transform_skew_a.html": [ - "ca80752694571da935c1b77360c5a132f67da052", + "ca80752694571da935c1b77360c5a132f67da052", "reftest" - ], + ], "css/transform_skew_ref.html": [ - "b6ef9bb8fe9c129b02f5f3213865673a42638190", + "b6ef9bb8fe9c129b02f5f3213865673a42638190", "support" - ], + ], "css/transform_stacking_context_a.html": [ - "15dcf3e832604c833bf6e6f777b264cfdd030e5a", + "15dcf3e832604c833bf6e6f777b264cfdd030e5a", "reftest" - ], + ], "css/transform_stacking_context_ref.html": [ - "dd71c1c9347c5284297f06c9b676f2dd9e491674", + "dd71c1c9347c5284297f06c9b676f2dd9e491674", "support" - ], + ], "css/transition_calc.html": [ - "8b7650450f6c3f3c05542e94c5236c4a86e87382", + "8b7650450f6c3f3c05542e94c5236c4a86e87382", "reftest" - ], + ], "css/transition_calc_implicit.html": [ - "a4cca7548ae321fea7f1afcef2df20e40402859b", + "a4cca7548ae321fea7f1afcef2df20e40402859b", "reftest" - ], + ], "css/transition_calc_implicit_ref.html": [ - "0e76edd65b7baf5316fc9d0c4da59a3502e4c27a", + "0e76edd65b7baf5316fc9d0c4da59a3502e4c27a", "support" - ], + ], "css/transition_calc_ref.html": [ - "654e5a26232e6591dd2a6803b445166506306f5f", + "654e5a26232e6591dd2a6803b445166506306f5f", "support" - ], + ], "css/translate_clip.html": [ - "96f538039a8cbdea516a72bcbd7a396d43c010d8", + "96f538039a8cbdea516a72bcbd7a396d43c010d8", "reftest" - ], + ], "css/translate_clip_nested.html": [ - "2b6296cc048f7f48dd69f2b7ee650a78a593124b", + "2b6296cc048f7f48dd69f2b7ee650a78a593124b", "reftest" - ], + ], "css/translate_clip_nested_ref.html": [ - "edaef9186ced1ee4eb274d4f6041f49a9189b0fe", + "edaef9186ced1ee4eb274d4f6041f49a9189b0fe", "support" - ], + ], "css/translate_clip_ref.html": [ - "812e822b003710170d26675f278d47a6580d63e9", + "812e822b003710170d26675f278d47a6580d63e9", "support" - ], + ], "css/truncated_text_fragment_stacking_context.html": [ - "bd6cabb1537330c5b66f823f2e02ab05ea6d5911", + "bd6cabb1537330c5b66f823f2e02ab05ea6d5911", "reftest" - ], + ], "css/truncated_text_fragment_stacking_context_ref.html": [ - "27e25766be27e9138f586f9fa6881415094a0516", + "27e25766be27e9138f586f9fa6881415094a0516", "support" - ], + ], "css/upper_id_attr.html": [ - "58052e022591f9b2c02be74d8f8361ad32301b29", + "58052e022591f9b2c02be74d8f8361ad32301b29", "reftest" - ], + ], "css/upper_id_attr_ref.html": [ - "16fab3f717958d4a46c78f1800a458dde5842b85", + "16fab3f717958d4a46c78f1800a458dde5842b85", "support" - ], + ], "css/vertical-lr-blocks.html": [ - "46d8586a6fc098e61daae8b9b0f55ecb7a351de9", + "46d8586a6fc098e61daae8b9b0f55ecb7a351de9", "reftest" - ], + ], "css/vertical-lr-blocks_ref.html": [ - "8581695c49f174ad445e80b7d64481c428a79270", + "8581695c49f174ad445e80b7d64481c428a79270", "support" - ], + ], "css/vertical_align_bottom_a.html": [ - "c0ffdac8f2bec1d400ca54f0141df39a40cfc45a", + "c0ffdac8f2bec1d400ca54f0141df39a40cfc45a", "reftest" - ], + ], "css/vertical_align_bottom_ref.html": [ - "228f1c806c2f936f52076bb4962f69412b73b196", + "228f1c806c2f936f52076bb4962f69412b73b196", "support" - ], + ], "css/vertical_align_inline_block_a.html": [ - "4d44d94f90a79a2bf8921ea9216f96cf5b324e8f", + "4d44d94f90a79a2bf8921ea9216f96cf5b324e8f", "reftest" - ], + ], "css/vertical_align_inline_block_ref.html": [ - "5762329b14723f46cb043371499ad94b51a42a9c", + "5762329b14723f46cb043371499ad94b51a42a9c", "support" - ], + ], "css/vertical_align_inside_table_a.html": [ - "f459cea8a4779fb6a17b8f206102e0e5e825d9e7", + "f459cea8a4779fb6a17b8f206102e0e5e825d9e7", "reftest" - ], + ], "css/vertical_align_inside_table_ref.html": [ - "9669401320986f6038219e02f53b9addc4b506a5", + "9669401320986f6038219e02f53b9addc4b506a5", "support" - ], + ], "css/vertical_align_middle_a.html": [ - "01b3cc0ab9c9d3bc534083d470da8fec55aea632", + "01b3cc0ab9c9d3bc534083d470da8fec55aea632", "reftest" - ], + ], "css/vertical_align_middle_ref.html": [ - "e6e2b3428eaef2f4260890c49b11e563154eccdf", + "e6e2b3428eaef2f4260890c49b11e563154eccdf", "support" - ], + ], "css/vertical_align_sub_a.html": [ - "de55595f7338499f5c7fdca348095b1beed5a174", + "de55595f7338499f5c7fdca348095b1beed5a174", "reftest" - ], + ], "css/vertical_align_sub_ref.html": [ - "59e8c3dba9156fc54927f18140fb39c90a87491e", + "59e8c3dba9156fc54927f18140fb39c90a87491e", "support" - ], + ], "css/vertical_align_super_a.html": [ - "d62a1acb8d122ac2499844397d8fa1017b3b6d5f", + "d62a1acb8d122ac2499844397d8fa1017b3b6d5f", "reftest" - ], + ], "css/vertical_align_super_nested_a.html": [ - "440eef567465f62c4aad0fcd6bf6000829175f1e", + "440eef567465f62c4aad0fcd6bf6000829175f1e", "reftest" - ], + ], "css/vertical_align_super_nested_ref.html": [ - "c41655365415f688f42f512e55b6c9729c06d547", + "c41655365415f688f42f512e55b6c9729c06d547", "support" - ], + ], "css/vertical_align_super_ref.html": [ - "d12753c3afdabefd65dcce9e09f47430bee76027", + "d12753c3afdabefd65dcce9e09f47430bee76027", "support" - ], + ], "css/vertical_align_text_bottom_a.html": [ - "ad06fc711c2a86480ad480308bba2b6fef5419e8", + "ad06fc711c2a86480ad480308bba2b6fef5419e8", "reftest" - ], + ], "css/vertical_align_text_bottom_ref.html": [ - "fff385a6f77b8adeb79a6bb772fed98197f687a9", + "fff385a6f77b8adeb79a6bb772fed98197f687a9", "support" - ], + ], "css/vertical_align_text_top_a.html": [ - "e45c30c04be827548c4b7008a0ecbd201ea2fc9b", + "e45c30c04be827548c4b7008a0ecbd201ea2fc9b", "reftest" - ], + ], "css/vertical_align_text_top_ref.html": [ - "f6a6bfb0ca4c1b6198a5a9081dd83047689d80db", + "f6a6bfb0ca4c1b6198a5a9081dd83047689d80db", "support" - ], + ], "css/vertical_align_top_a.html": [ - "7197e407eb9bf66f7c1b24151c43637ec9f53ee1", + "7197e407eb9bf66f7c1b24151c43637ec9f53ee1", "reftest" - ], + ], "css/vertical_align_top_bottom_a.html": [ - "de5e108809f55606d3fb85ea71e5d5eac75315a7", + "de5e108809f55606d3fb85ea71e5d5eac75315a7", "reftest" - ], + ], "css/vertical_align_top_bottom_ref.html": [ - "53516c83cacb14eed69e266014e20ee33266105d", + "53516c83cacb14eed69e266014e20ee33266105d", "support" - ], + ], "css/vertical_align_top_ref.html": [ - "37108822bdda89716fc614b92923b5bc309984aa", + "37108822bdda89716fc614b92923b5bc309984aa", "support" - ], + ], "css/vertical_align_top_span_a.html": [ - "e7d384d80e68a6de6d750504a31ef7c22f1e9665", + "e7d384d80e68a6de6d750504a31ef7c22f1e9665", "reftest" - ], + ], "css/vertical_align_top_span_ref.html": [ - "488c1aada28cc3ab41e7a6d63d3f4e5b950b1f35", + "488c1aada28cc3ab41e7a6d63d3f4e5b950b1f35", "support" - ], + ], "css/viewport_ignore_desktop.html": [ - "0cdd5adf58255732b5843f475feffd65f3a669f6", + "0cdd5adf58255732b5843f475feffd65f3a669f6", "reftest" - ], + ], "css/viewport_ignore_desktop.html.ini": [ - "696f7ab3ac81362267fa882303d687cbffe454df", + "696f7ab3ac81362267fa882303d687cbffe454df", "support" - ], + ], "css/viewport_ignore_desktop_ref.html": [ - "149d364517b397c14628550e5af1c7fa37c84e90", + "149d364517b397c14628550e5af1c7fa37c84e90", "support" - ], + ], "css/viewport_meta.html": [ - "69c57539ec5076335582a4c40fc19886b6d2620f", + "69c57539ec5076335582a4c40fc19886b6d2620f", "reftest" - ], + ], "css/viewport_percentage_vmin_vmax_a.html": [ - "903e4ea87426e2909ee0e2b683d6f097683f5c81", + "903e4ea87426e2909ee0e2b683d6f097683f5c81", "reftest" - ], + ], "css/viewport_percentage_vmin_vmax_b.html": [ - "2926c19dc9b7b18f99711ce8c09685963e14d46b", + "2926c19dc9b7b18f99711ce8c09685963e14d46b", "reftest" - ], + ], "css/viewport_percentage_vmin_vmax_ref.html": [ - "ed8838a765af102aefdc1544677336c32c83ba28", + "ed8838a765af102aefdc1544677336c32c83ba28", "support" - ], + ], "css/viewport_percentage_vw_vh_a.html": [ - "4ae0d07e923a7a3b9520b54e222abd987ae93ed6", + "4ae0d07e923a7a3b9520b54e222abd987ae93ed6", "reftest" - ], + ], "css/viewport_percentage_vw_vh_b.html": [ - "6d306b5ff8207b89531e9d6e67d898364e5a0f68", + "6d306b5ff8207b89531e9d6e67d898364e5a0f68", "reftest" - ], + ], "css/viewport_percentage_vw_vh_ref.html": [ - "07146c46a08ffe5c5e1bfd0ac451242202e93397", + "07146c46a08ffe5c5e1bfd0ac451242202e93397", "support" - ], + ], "css/viewport_rule.html": [ - "09d9c72a1651adf01cb14651c0eae4c5a563e682", + "09d9c72a1651adf01cb14651c0eae4c5a563e682", "reftest" - ], + ], "css/viewport_rule_ref.html": [ - "4c7be62919ac9cd9dd65861637bf10c958595e0d", + "4c7be62919ac9cd9dd65861637bf10c958595e0d", "support" - ], + ], "css/visibility_hidden.html": [ - "95dbf18a0eacacb7162ab220f0d08113745efa14", + "95dbf18a0eacacb7162ab220f0d08113745efa14", "reftest" - ], + ], "css/visibility_hidden_ref.html": [ - "8f0a447ccb8175a8278438537e7597ad5116393b", + "8f0a447ccb8175a8278438537e7597ad5116393b", "support" - ], + ], "css/white-space-mixed-002-ref.htm": [ - "15d0c4d13842b305aaaec77b869bfd598bd5c231", + "15d0c4d13842b305aaaec77b869bfd598bd5c231", "support" - ], + ], "css/white-space-mixed-002.htm": [ - "c8399602a7d5dfd3ebb7883033ac76b05fd4d6f4", + "c8399602a7d5dfd3ebb7883033ac76b05fd4d6f4", "reftest" - ], + ], "css/white-space-pre-line-long-line.html": [ - "bf0d0085fef0f1639637b2e652a7fb857cd51bf6", + "bf0d0085fef0f1639637b2e652a7fb857cd51bf6", "testharness" - ], + ], "css/white-space-pre-line-ref.htm": [ - "631c37056b507874270f9f3c9479fb0a3b38c5b9", + "631c37056b507874270f9f3c9479fb0a3b38c5b9", "support" - ], + ], "css/white-space-pre-line.htm": [ - "ed1cdb31a097d127ef568d9c1118f2ca3724d363", + "ed1cdb31a097d127ef568d9c1118f2ca3724d363", "reftest" - ], + ], "css/white-space-pre-wrap-long-line.html": [ - "f965a31a2099500f9297a130637db2874eae6ea0", + "f965a31a2099500f9297a130637db2874eae6ea0", "testharness" - ], + ], "css/white-space-pre-wrap-ref.htm": [ - "f6bda4e0ee8defc790c5137ccfd8801af5cc9126", + "f6bda4e0ee8defc790c5137ccfd8801af5cc9126", "support" - ], + ], "css/white-space-pre-wrap.htm": [ - "ab6bc399c14abd1bfb831ebdcaeaf2e2f55dad19", + "ab6bc399c14abd1bfb831ebdcaeaf2e2f55dad19", "reftest" - ], + ], "css/white_space_intrinsic_sizes_a.html": [ - "66d7a80ce376fb529669ddd1c7c06541e50a168c", + "66d7a80ce376fb529669ddd1c7c06541e50a168c", "reftest" - ], + ], "css/white_space_intrinsic_sizes_ref.html": [ - "cd54f8a7e08c3160a59470c17d52a167c6db6d11", + "cd54f8a7e08c3160a59470c17d52a167c6db6d11", "support" - ], + ], "css/whitespace_no_affect_border.html": [ - "2927baf910ce16b33d767825948f8abba64cc15a", + "2927baf910ce16b33d767825948f8abba64cc15a", "reftest" - ], + ], "css/whitespace_no_affect_border_ref.html": [ - "a5d31243945f43f8e0782d49f6c2819bac542da1", + "a5d31243945f43f8e0782d49f6c2819bac542da1", "support" - ], + ], "css/whitespace_nowrap_a.html": [ - "28957fb193095c97bd1d25c826e4646eebf5f58c", + "28957fb193095c97bd1d25c826e4646eebf5f58c", "reftest" - ], + ], "css/whitespace_nowrap_line_breaking_a.html": [ - "f045e31afaceb148257c8c9d3ee50b1d027ed330", + "f045e31afaceb148257c8c9d3ee50b1d027ed330", "reftest" - ], + ], "css/whitespace_nowrap_line_breaking_ref.html": [ - "930da5fdc15489be74faa5d4d762d82e05d4546a", + "930da5fdc15489be74faa5d4d762d82e05d4546a", "support" - ], + ], "css/whitespace_nowrap_ref.html": [ - "dcb56fefb8148285358b3ec6e028182b435ff399", + "dcb56fefb8148285358b3ec6e028182b435ff399", "support" - ], + ], "css/whitespace_pre.html": [ - "6d0393944b2d436d1b5084ad888006723fc0009f", + "6d0393944b2d436d1b5084ad888006723fc0009f", "reftest" - ], + ], "css/whitespace_pre_ref.html": [ - "9f07533e6de88b5fc9004012d90e73ef9514e3ff", + "9f07533e6de88b5fc9004012d90e73ef9514e3ff", "support" - ], + ], "css/width_nonreplaced_block_simple_a.html": [ - "cf91a08c52611c9b7e738d9c3a1acaed51f6e287", + "cf91a08c52611c9b7e738d9c3a1acaed51f6e287", "reftest" - ], + ], "css/width_nonreplaced_block_simple_b.html": [ - "8f1282a01d6a14c3ceb84af73fc6c65fe88d9959", + "8f1282a01d6a14c3ceb84af73fc6c65fe88d9959", "support" - ], + ], "css/word-break-keep-all-005.htm": [ - "5bf0022a007e9fc9e74f56b6651a473683f497cc", + "5bf0022a007e9fc9e74f56b6651a473683f497cc", "reftest" - ], + ], "css/word-break-keep-all-006.htm": [ - "17eb109a001410405f8ad859403b74d9232e2942", + "17eb109a001410405f8ad859403b74d9232e2942", "reftest" - ], + ], "css/word-break-keep-all-007.htm": [ - "ac1385ff8c94102702db435a6b943078ed6aee23", + "ac1385ff8c94102702db435a6b943078ed6aee23", "reftest" - ], + ], "css/word-break-keep-all-008.htm": [ - "2b935f80f11c6bc6eddc11eab9d29ba7573486de", + "2b935f80f11c6bc6eddc11eab9d29ba7573486de", "reftest" - ], + ], "css/word-break-keep-all-ref-005.htm": [ - "156b202ba8d96098ce72028b10be5c3207de78d1", + "156b202ba8d96098ce72028b10be5c3207de78d1", "support" - ], + ], "css/word-break-keep-all-ref-006.htm": [ - "118e9630e382d49b023f82e75a3fa5acca4ce96c", + "118e9630e382d49b023f82e75a3fa5acca4ce96c", "support" - ], + ], "css/word-break-keep-all-ref-007.htm": [ - "11161b436965bea3d93240758bcbb6416d5d80b4", + "11161b436965bea3d93240758bcbb6416d5d80b4", "support" - ], + ], "css/word-break-keep-all-ref-008.htm": [ - "bf2e5f58edb5c66c5bc2b06a4f42dae4a851efa5", + "bf2e5f58edb5c66c5bc2b06a4f42dae4a851efa5", "support" - ], + ], "css/word-spacing-ref.html": [ - "79ed5571ed9557db25ae86cc33a1c4b6a91e4c41", + "79ed5571ed9557db25ae86cc33a1c4b6a91e4c41", "support" - ], + ], "css/word-spacing.html": [ - "3e0e7b72699fd5fadf38e343833ce50ca3b830f5", + "3e0e7b72699fd5fadf38e343833ce50ca3b830f5", "reftest" - ], + ], "css/word_break_a.html": [ - "3d1427258acf30beaee8eeed3ba77927ec2aa4b7", + "3d1427258acf30beaee8eeed3ba77927ec2aa4b7", "reftest" - ], + ], "css/word_break_ref.html": [ - "58da73b938f6d47d596aa65d2f7902ee21cd4669", + "58da73b938f6d47d596aa65d2f7902ee21cd4669", "support" - ], + ], "css/writing-mode_change_display.html": [ - "dd2b2cf3e565b61717c7e0e6fae484fd56edb0c2", + "dd2b2cf3e565b61717c7e0e6fae484fd56edb0c2", "testharness" - ], + ], "lint.whitelist": [ - "4e9dcc5ddf894bc85224a634349663b832dd8c24", + "4e9dcc5ddf894bc85224a634349663b832dd8c24", "support" - ], + ], "mozilla/2x2.png": [ - "276791c4348ada7e1da71041f2ccd383305e209c", + "276791c4348ada7e1da71041f2ccd383305e209c", "support" - ], + ], "mozilla/DOMParser.html": [ - "f386a3e0191af2c70dcb05790ce7db15dd5ccbf1", + "f386a3e0191af2c70dcb05790ce7db15dd5ccbf1", "testharness" - ], + ], "mozilla/Event.html": [ - "3947b286122ee47f2f874232763ceeff3c2b661e", + "3947b286122ee47f2f874232763ceeff3c2b661e", "testharness" - ], + ], "mozilla/FileAPI/blob.html": [ - "3f932083542b66bac64bf799ec4b945c986060c5", + "3f932083542b66bac64bf799ec4b945c986060c5", "testharness" - ], + ], "mozilla/FileAPI/blob_url_upload.html": [ - "17c8e3ad0b4fe904a77db8ecb9f63598e4a84b2c", + "17c8e3ad0b4fe904a77db8ecb9f63598e4a84b2c", "reftest" - ], + ], "mozilla/FileAPI/blob_url_upload_ref.html": [ - "6f95c43ac324528035901d763a02885505b49a9c", + "6f95c43ac324528035901d763a02885505b49a9c", "support" - ], + ], "mozilla/FileAPI/file-select.html": [ - "06a5f30dd441e9f4bb54ba7019469d7280f12310", + "06a5f30dd441e9f4bb54ba7019469d7280f12310", "testharness" - ], + ], "mozilla/FileAPI/file-upload-frame.html": [ - "13951bb37d06045220de53862bc45a9129c85ad9", + "13951bb37d06045220de53862bc45a9129c85ad9", "support" - ], + ], "mozilla/FileAPI/file-upload.html": [ - "bff5fb1ee7a0908a7761cd7fa02895f732a3f1dd", + "bff5fb1ee7a0908a7761cd7fa02895f732a3f1dd", "testharness" - ], + ], "mozilla/FileAPI/resource/file-submission.py": [ - "24d5129eb8d38c9415622c78ed401ae344273ce1", + "24d5129eb8d38c9415622c78ed401ae344273ce1", "support" - ], + ], "mozilla/FileAPI/resource/upload.txt": [ - "5ab2f8a4323abafb10abb68657d9d39f1a775057", + "5ab2f8a4323abafb10abb68657d9d39f1a775057", "support" - ], + ], "mozilla/FocusEvent.html": [ - "9e002c1088de060b5e7f94c4152bf9fb779c04cc", + "9e002c1088de060b5e7f94c4152bf9fb779c04cc", "testharness" - ], + ], "mozilla/MouseEvent.html": [ - "5eb83759fa70dff9d89d4dac22f239f395f167cc", + "5eb83759fa70dff9d89d4dac22f239f395f167cc", "testharness" - ], + ], "mozilla/activation.html": [ - "abc1f58275c1a87e04aef221d337a4bd0dbf0f35", + "abc1f58275c1a87e04aef221d337a4bd0dbf0f35", "testharness" - ], + ], "mozilla/adopt-panic.css": [ - "182d72fa7fddab14222e4085b2cc498d79865709", + "182d72fa7fddab14222e4085b2cc498d79865709", "support" - ], + ], "mozilla/adopted_node_is_same_origin_domain.html": [ - "81de5b389c922067c61effe03208ea740ba8e067", + "81de5b389c922067c61effe03208ea740ba8e067", "testharness" - ], + ], "mozilla/animation-removed-node.html": [ - "a2f9dfe284a22a6241290c86841172387dcdbeb6", + "a2f9dfe284a22a6241290c86841172387dcdbeb6", "testharness" - ], + ], "mozilla/binding_keyword.html": [ - "818d2aa29471026c1b4215dfcd1b9939a052b1ea", + "818d2aa29471026c1b4215dfcd1b9939a052b1ea", "testharness" - ], + ], "mozilla/blank.html": [ - "39654855a826184e75c4278434360ee0a6fb2a59", + "39654855a826184e75c4278434360ee0a6fb2a59", "support" - ], + ], "mozilla/body_listener.html": [ - "13a1a0fdc15ac05458ebf2c1fd75d501a6de92e3", + "13a1a0fdc15ac05458ebf2c1fd75d501a6de92e3", "testharness" - ], + ], "mozilla/calc.html": [ - "2408f196c000a5d0f05cb35db4c8607486810351", + "2408f196c000a5d0f05cb35db4c8607486810351", "testharness" - ], + ], "mozilla/canvas.initial.reset.2dstate.html": [ - "e276ed09ffcf16eff16b784c622b93665c4109ee", + "e276ed09ffcf16eff16b784c622b93665c4109ee", "testharness" - ], + ], "mozilla/canvas/fill_and_stroke_getters_setters.html": [ - "aec8c864348eda3870440994cd8d2816d0d1a9d9", + "aec8c864348eda3870440994cd8d2816d0d1a9d9", "testharness" - ], + ], "mozilla/canvas/set_dimensions.html": [ - "4afff538f28bfb0eec4e701b4b19e1bebb987cd1", + "4afff538f28bfb0eec4e701b4b19e1bebb987cd1", "reftest" - ], + ], "mozilla/canvas/set_dimensions_ref.html": [ - "b3590cc402fceae4cfb7856a3a536a83dbce1d13", + "b3590cc402fceae4cfb7856a3a536a83dbce1d13", "support" - ], + ], "mozilla/caption.html": [ - "85f31176e3275c178b0cc2d2d3d62e4f06d475b1", + "85f31176e3275c178b0cc2d2d3d62e4f06d475b1", "testharness" - ], + ], "mozilla/child_reparenting.html": [ - "502a493ebb72ed14c74c09ef9d0257038e4d81de", + "502a493ebb72ed14c74c09ef9d0257038e4d81de", "testharness" - ], + ], "mozilla/click_prevent.html": [ - "c330e7339e478690b7694d70f3b05c6b3808a8d2", + "c330e7339e478690b7694d70f3b05c6b3808a8d2", "support" - ], + ], "mozilla/client-top-left-height-width.html": [ - "a1fade32ab93c5df3e74f6a13bacc29713f6241c", + "a1fade32ab93c5df3e74f6a13bacc29713f6241c", "testharness" - ], + ], "mozilla/codegen_unions.html": [ - "1fff0e01c89cfa3bff91a6f19c00171bbb55b692", + "1fff0e01c89cfa3bff91a6f19c00171bbb55b692", "testharness" - ], + ], "mozilla/collections.html": [ - "8e06ffcc0933719b4b79ea6656d6635cc121d900", + "8e06ffcc0933719b4b79ea6656d6635cc121d900", "testharness" - ], + ], "mozilla/createEvent-storageevent.html": [ - "f5deb0173b1459a655ecd62d1c1fd1b45c42c35b", + "f5deb0173b1459a655ecd62d1c1fd1b45c42c35b", "testharness" - ], + ], "mozilla/cross-origin-objects/cross-origin-objects.html": [ - "d7b0e0da1acfe773a19301e8bdebeeee6539fb5e", + "d7b0e0da1acfe773a19301e8bdebeeee6539fb5e", "testharness" - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage-child1.html": [ - "6097799bb60aa0f0a9ee0920df3b92c0b4d7ed6b", + "6097799bb60aa0f0a9ee0920df3b92c0b4d7ed6b", "support" - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage-child2.html": [ - "a1395ad2b51415b251fb7e27ef6fdfe3d87ae3ef", + "a1395ad2b51415b251fb7e27ef6fdfe3d87ae3ef", "support" - ], + ], "mozilla/cross-origin-objects/cross-origin-postMessage.html": [ - "143240c97aa60b52c8d2e0067c25e4509bf6481d", + "143240c97aa60b52c8d2e0067c25e4509bf6481d", "testharness" - ], + ], "mozilla/custom_auto_rooter.html": [ - "3d6f04e85b27bcf957b273e04e4a80b75e714b2f", + "3d6f04e85b27bcf957b273e04e4a80b75e714b2f", "testharness" - ], + ], "mozilla/deep_serialization_succeeds.html": [ - "086dc4d34de466f76561168cc20e7471fab8962b", + "086dc4d34de466f76561168cc20e7471fab8962b", "testharness" - ], + ], "mozilla/details_ui_closed.html": [ - "cf5c046a983f1b05188372408fec65639741c423", + "cf5c046a983f1b05188372408fec65639741c423", "reftest" - ], + ], "mozilla/details_ui_closed_ref.html": [ - "b7db1ce810c09c9169142db4333f2648ed098239", + "b7db1ce810c09c9169142db4333f2648ed098239", "support" - ], + ], "mozilla/details_ui_opened.html": [ - "2d9b13aad0a09394da2d90d9a5ae5fd32b9d88fe", + "2d9b13aad0a09394da2d90d9a5ae5fd32b9d88fe", "reftest" - ], + ], "mozilla/details_ui_opened_ref.html": [ - "57ae10d082ad59bcd74a1a226eac048d8d4bf12d", + "57ae10d082ad59bcd74a1a226eac048d8d4bf12d", "support" - ], + ], "mozilla/deterministic-raf.html": [ - "441664829a14379ebc92306f42ab0bad6581257e", + "441664829a14379ebc92306f42ab0bad6581257e", "testharness" - ], + ], "mozilla/documentElement.html": [ - "aee3278ba84ca12a77286a1c03dbaec9fc3a7cd0", + "aee3278ba84ca12a77286a1c03dbaec9fc3a7cd0", "testharness" - ], + ], "mozilla/document_activeElement.html": [ - "92a8e399adb4b463c3f4a257f879e10314723582", + "92a8e399adb4b463c3f4a257f879e10314723582", "testharness" - ], + ], "mozilla/document_characterSet.html": [ - "70d892aae56a6c30003e70c52c47fb2f1d9ad90e", + "70d892aae56a6c30003e70c52c47fb2f1d9ad90e", "testharness" - ], + ], "mozilla/document_characterSet_default.html": [ - "5dbd445b67b32d6201d46f5ce4cb402814424ae6", + "5dbd445b67b32d6201d46f5ce4cb402814424ae6", "testharness" - ], + ], "mozilla/document_characterSet_invalid.html": [ - "129fbe0a3899bbde13ff00cfdcadfce7f09154d9", + "129fbe0a3899bbde13ff00cfdcadfce7f09154d9", "testharness" - ], + ], "mozilla/document_characterSet_long.html": [ - "c420ced277078c423ef9b13c8cf4d535df95b6f6", + "c420ced277078c423ef9b13c8cf4d535df95b6f6", "testharness" - ], + ], "mozilla/document_characterSet_short.html": [ - "c36b81d3fbe1b9345f52df2dc9060b4afff5b0d6", + "c36b81d3fbe1b9345f52df2dc9060b4afff5b0d6", "testharness" - ], + ], "mozilla/document_compatMode_loose.html": [ - "b1bf75b1e7f40f8ca996165f2b099a4a301c3380", + "b1bf75b1e7f40f8ca996165f2b099a4a301c3380", "testharness" - ], + ], "mozilla/document_compatMode_strict.html": [ - "39ecdc22bab2b4c0314aecc015243e3bca7516cc", + "39ecdc22bab2b4c0314aecc015243e3bca7516cc", "testharness" - ], + ], "mozilla/document_contenttype.html": [ - "efa63b2ea3930b5705f1a91845d84a2deba185f5", + "efa63b2ea3930b5705f1a91845d84a2deba185f5", "testharness" - ], + ], "mozilla/document_datalist_options.html": [ - "28441f21ed52211120b526740e1c5b6df431cf19", + "28441f21ed52211120b526740e1c5b6df431cf19", "testharness" - ], + ], "mozilla/document_defaultView.html": [ - "cd99a11bae9ac9b8ba0b48c75f277e7a895d5073", + "cd99a11bae9ac9b8ba0b48c75f277e7a895d5073", "testharness" - ], + ], "mozilla/document_elementsFromPoint.html": [ - "a17f0b698165aa98040eef06679d54726d9e73ee", + "a17f0b698165aa98040eef06679d54726d9e73ee", "testharness" - ], + ], "mozilla/document_getElementById.html": [ - "2d937b5a51b8add7111b4fb04fe547cca53180d9", + "2d937b5a51b8add7111b4fb04fe547cca53180d9", "testharness" - ], + ], "mozilla/document_getElementsByName.html": [ - "52cf843f451b34e0c981dee33ed2533af4736c96", + "52cf843f451b34e0c981dee33ed2533af4736c96", "testharness" - ], + ], "mozilla/document_head.html": [ - "88e568b86442a73879be2ee47f17c0946d507f6b", + "88e568b86442a73879be2ee47f17c0946d507f6b", "testharness" - ], + ], "mozilla/document_images_cache.html": [ - "b1e4768c9e5dce7d9b88f9ad0e615d168afeceb8", + "b1e4768c9e5dce7d9b88f9ad0e615d168afeceb8", "testharness" - ], + ], "mozilla/document_implementation.html": [ - "e8652d90f5694a35e74b380385e7cb44ce7f2411", + "e8652d90f5694a35e74b380385e7cb44ce7f2411", "testharness" - ], + ], "mozilla/document_links_cache.html": [ - "3a0172826d4ff2d9a754ffb6a437055bb2cf6ec9", + "3a0172826d4ff2d9a754ffb6a437055bb2cf6ec9", "testharness" - ], + ], "mozilla/document_readystate.html": [ - "7ff8f66cdf74430f86ed7028294530229809d8de", + "7ff8f66cdf74430f86ed7028294530229809d8de", "testharness" - ], + ], "mozilla/document_set_node_value.html": [ - "c6e23b8a0554da45c8192047b83abaf82b689810", + "c6e23b8a0554da45c8192047b83abaf82b689810", "testharness" - ], + ], "mozilla/document_title_nontextchildren.html": [ - "3f132f9ac1a63e879f8147c75de8ccec87102bf2", + "3f132f9ac1a63e879f8147c75de8ccec87102bf2", "testharness" - ], + ], "mozilla/document_url.html": [ - "e1c90d1bcd04de24514a9e5f956979bcfd12f82b", + "e1c90d1bcd04de24514a9e5f956979bcfd12f82b", "testharness" - ], + ], "mozilla/double_focus.html": [ - "89ed38f5086c4d74ff4ba840e1b9f4bdf07a1133", + "89ed38f5086c4d74ff4ba840e1b9f4bdf07a1133", "testharness" - ], + ], "mozilla/duplicated_scroll_ids.html": [ - "a0ac8e578ddb63efa9aa673285a38c67c4ba6c2b", + "a0ac8e578ddb63efa9aa673285a38c67c4ba6c2b", "reftest" - ], + ], "mozilla/duplicated_scroll_ids_ref.html": [ - "6783d72a6629f4938df8126dc5114d936eaaa48f", + "6783d72a6629f4938df8126dc5114d936eaaa48f", "support" - ], + ], "mozilla/element_attribute.html": [ - "87eff09bf542402fadc577bccce6e0fa67737dcf", + "87eff09bf542402fadc577bccce6e0fa67737dcf", "testharness" - ], + ], "mozilla/element_attributes.html": [ - "6a45c5b4c6f56d203dbfb77109e3af52fd12a2a8", + "6a45c5b4c6f56d203dbfb77109e3af52fd12a2a8", "testharness" - ], + ], "mozilla/element_className.html": [ - "e074b5e156c0180a3bd6984b3cad75ec3241ce11", + "e074b5e156c0180a3bd6984b3cad75ec3241ce11", "testharness" - ], + ], "mozilla/element_getcomputedstyle.html": [ - "24204d1220ffe024c3e6ba337b61d411367faa48", + "24204d1220ffe024c3e6ba337b61d411367faa48", "testharness" - ], + ], "mozilla/element_matches.html": [ - "6998a15c0cf4e49b75b447e2641308344b7a67f6", + "6998a15c0cf4e49b75b447e2641308344b7a67f6", "testharness" - ], + ], "mozilla/element_matches_empty.html": [ - "2f90014344b19c1df5096fb9ed79b5146147a667", + "2f90014344b19c1df5096fb9ed79b5146147a667", "testharness" - ], + ], "mozilla/element_parentOffset.html": [ - "a6e86ebe869c4edafae744ddc2eade9d40e0d4e5", + "a6e86ebe869c4edafae744ddc2eade9d40e0d4e5", "testharness" - ], + ], "mozilla/element_setAttributeNode.html": [ - "b7c4964a135fdb04545ef3d00fa5f0d5fc222897", + "b7c4964a135fdb04545ef3d00fa5f0d5fc222897", "testharness" - ], + ], "mozilla/empty_clientrect.html": [ - "d1aa50b22383160889237b2a12ef9bdd00fae7a9", + "d1aa50b22383160889237b2a12ef9bdd00fae7a9", "testharness" - ], + ], "mozilla/enabled_disabled_selectors.html": [ - "fe8f3e7ecc26432c6c9c9471fb15a388c5c66e43", + "fe8f3e7ecc26432c6c9c9471fb15a388c5c66e43", "testharness" - ], + ], "mozilla/event_dispatch.html": [ - "304b55fbeca27ea4be07b7b3ca03fa3ec4cf5f90", + "304b55fbeca27ea4be07b7b3ca03fa3ec4cf5f90", "testharness" - ], + ], "mozilla/event_dispatch_dynamic.html": [ - "08dc4c89a6d8ce8a12a1377c36a311a8bc3f8a89", + "08dc4c89a6d8ce8a12a1377c36a311a8bc3f8a89", "testharness" - ], + ], "mozilla/event_dispatch_order.html": [ - "48513cfff42b8635eb8822a903e7e85250a7ac51", + "48513cfff42b8635eb8822a903e7e85250a7ac51", "testharness" - ], + ], "mozilla/event_handler_syntax_error.html": [ - "78962c67d2cd2093ce9e241596b151ee2ce466ec", + "78962c67d2cd2093ce9e241596b151ee2ce466ec", "testharness" - ], + ], "mozilla/event_listener.html": [ - "0ba1ce0d5577de68e5e8ff3acbce52043e7dee43", + "0ba1ce0d5577de68e5e8ff3acbce52043e7dee43", "testharness" - ], + ], "mozilla/first-reflow-sheet-assert.html": [ - "268af6d333f04adc35974ca3f2e9ebb29783fd2e", + "268af6d333f04adc35974ca3f2e9ebb29783fd2e", "testharness" - ], + ], "mozilla/focus_blur.html": [ - "83575faf7adfe061d7a9b03bb74187844b5926a1", + "83575faf7adfe061d7a9b03bb74187844b5926a1", "testharness" - ], + ], "mozilla/follow-hyperlink.html": [ - "6ac9eaeb5814a663988ed8c664c113072e329dc5", + "6ac9eaeb5814a663988ed8c664c113072e329dc5", "testharness" - ], + ], "mozilla/form_submit_about.html": [ - "ec572ab0bc608c8cf5dd43f4159d3a67fc31a0de", + "ec572ab0bc608c8cf5dd43f4159d3a67fc31a0de", "testharness" - ], + ], "mozilla/form_submit_about_frame.html": [ - "7beb90f1ab7bce0b162050180c4a44380940aed8", + "7beb90f1ab7bce0b162050180c4a44380940aed8", "support" - ], + ], "mozilla/form_tab_keyevent.html": [ - "d909254cb066e38bcbf9c76be5097fe86be7bf30", + "d909254cb066e38bcbf9c76be5097fe86be7bf30", "testharness" - ], + ], "mozilla/fullscreen-remove-single.html": [ - "1e3246f791df31532c32a816a14e4e3959582146", + "1e3246f791df31532c32a816a14e4e3959582146", "testharness" - ], + ], "mozilla/getBoundingClientRect.html": [ - "a8e92d836330126f6ccc4a13354368e223d260da", + "a8e92d836330126f6ccc4a13354368e223d260da", "testharness" - ], + ], "mozilla/getComputedStyle.html": [ - "2d902c2fd0abb1298a4b5439bce4dbcc87d0854d", + "2d902c2fd0abb1298a4b5439bce4dbcc87d0854d", "testharness" - ], + ], "mozilla/getPropertyPriority.html": [ - "75cd6517ffce41dc29d7324569c3d2f2c2cf102e", + "75cd6517ffce41dc29d7324569c3d2f2c2cf102e", "testharness" - ], + ], "mozilla/global.html": [ - "5ce66ed4b40e7d92bf3cd1f088ecb1eaade98b1c", + "5ce66ed4b40e7d92bf3cd1f088ecb1eaade98b1c", "testharness" - ], + ], "mozilla/globals/empty.html": [ - "2e54da0668afc8d6267d343f75b123279c617442", + "2e54da0668afc8d6267d343f75b123279c617442", "support" - ], + ], "mozilla/globals/entry.html": [ - "f963385342adbd92e4858a507c88155b4ed4371f", + "f963385342adbd92e4858a507c88155b4ed4371f", "testharness" - ], + ], "mozilla/globals/entry.worker.js": [ - "f83e7a1e16be122a60bef9cca847142d0fcf4a7e", + "f83e7a1e16be122a60bef9cca847142d0fcf4a7e", "testharness" - ], + ], "mozilla/globals/incumbent.html": [ - "9baa0cdcd5abad00b321e8b9351a1bc162783ed5", + "9baa0cdcd5abad00b321e8b9351a1bc162783ed5", "support" - ], + ], "mozilla/hit_test_multiple_sc.html": [ - "1c79d25ea06f80eb515282fb0a53a34f92a25698", + "1c79d25ea06f80eb515282fb0a53a34f92a25698", "testharness" - ], + ], "mozilla/hit_test_nested_sc.html": [ - "e5c1565ff1970963eda03a6f177a3dd6d9eaee21", + "e5c1565ff1970963eda03a6f177a3dd6d9eaee21", "testharness" - ], + ], "mozilla/hit_test_pos_fixed.html": [ - "fd00a540a98f81795f75afee72a0024887fcc6b4", + "fd00a540a98f81795f75afee72a0024887fcc6b4", "testharness" - ], + ], "mozilla/htmlcollection.html": [ - "57114d30a9265be16d521493c1f041a21b82d3b6", + "57114d30a9265be16d521493c1f041a21b82d3b6", "testharness" - ], + ], "mozilla/htmlfieldsetelement_elements.html": [ - "ee0ea4ae15f1f9cd4e1cdb76c5f4c9f13e139bef", + "ee0ea4ae15f1f9cd4e1cdb76c5f4c9f13e139bef", "testharness" - ], + ], "mozilla/htmlfontelement_size_attribute.html": [ - "9db2ded5f9754098425f0689dfb16f7cd39e0ed3", + "9db2ded5f9754098425f0689dfb16f7cd39e0ed3", "testharness" - ], + ], "mozilla/htmlimageelement.html": [ - "fe0cf3e83c57e9d19d53d49632a59e1483f3e4bf", + "fe0cf3e83c57e9d19d53d49632a59e1483f3e4bf", "testharness" - ], + ], "mozilla/htmllabel-activation.html": [ - "8040612c8b9656e25091bd0cf862edad1b2fccc4", + "8040612c8b9656e25091bd0cf862edad1b2fccc4", "testharness" - ], + ], "mozilla/htmllabel-form-activation.html": [ - "68296b3c724cf3f3c2012bb442597b2a78fb5a1f", + "68296b3c724cf3f3c2012bb442597b2a78fb5a1f", "support" - ], + ], "mozilla/htmlspacechars.html": [ - "31cb0c0be6c3054b0bf3d2207174553fa8d6261d", + "31cb0c0be6c3054b0bf3d2207174553fa8d6261d", "testharness" - ], + ], "mozilla/http-cache-xhr.html": [ - "fddb89ca0814f443f49634f467405ed6810a5d0b", + "fddb89ca0814f443f49634f467405ed6810a5d0b", "testharness" - ], + ], "mozilla/http-cache.html": [ - "c854aa3578483906ad7f70b63b1dc6509614cc7f", + "c854aa3578483906ad7f70b63b1dc6509614cc7f", "testharness" - ], + ], "mozilla/iframe-unblock-onload.html": [ - "bc0ff4afcd76b040839b930b21f55630e145de2c", + "bc0ff4afcd76b040839b930b21f55630e145de2c", "testharness" - ], + ], "mozilla/iframe/resize_after_load.html": [ - "c126af16b079fa4163b1fe30b4fdb6f4f2c6c04f", + "c126af16b079fa4163b1fe30b4fdb6f4f2c6c04f", "reftest" - ], + ], "mozilla/iframe/resize_after_load_ref.html": [ - "2d3f57bacd04f2a9a380308656bb0d871994ce45", + "2d3f57bacd04f2a9a380308656bb0d871994ce45", "support" - ], + ], "mozilla/iframe/resources/green_inner_frame.html": [ - "f5cc00c8f571b6516e152f3e00afa8f3a55f2c9a", + "f5cc00c8f571b6516e152f3e00afa8f3a55f2c9a", "support" - ], + ], "mozilla/iframe_child1.html": [ - "257cc5642cb1a054f08cc83f2d943e56fd3ebe99", + "257cc5642cb1a054f08cc83f2d943e56fd3ebe99", "support" - ], + ], "mozilla/iframe_contentDocument.html": [ - "dcbb389fdd6bea1b1a63d00777e8ab45c7ab7b75", + "dcbb389fdd6bea1b1a63d00777e8ab45c7ab7b75", "testharness" - ], + ], "mozilla/iframe_hierarchy.html": [ - "84ae687f8b63cbff61d8473e44514b0533d72f7c", + "84ae687f8b63cbff61d8473e44514b0533d72f7c", "testharness" - ], + ], "mozilla/iframe_parent1.html": [ - "146f5b7d529b4c9bf89334ac3f7a7b366a410ea5", + "146f5b7d529b4c9bf89334ac3f7a7b366a410ea5", "support" - ], + ], "mozilla/iframe_replacement.html": [ - "8feccdcc94d6fd23b8270cd02a7a8c1262dde878", + "8feccdcc94d6fd23b8270cd02a7a8c1262dde878", "testharness" - ], + ], "mozilla/img_async_src_set_before_window_load.html": [ - "370d4ef9b8d1e6d187a2b1f97a9d81de040ebb6d", + "370d4ef9b8d1e6d187a2b1f97a9d81de040ebb6d", "testharness" - ], + ], "mozilla/img_find_non_sibling_map.html": [ - "9b88509ecce3ca0e2ce59f3d86e9570640bb5386", + "9b88509ecce3ca0e2ce59f3d86e9570640bb5386", "testharness" - ], + ], "mozilla/img_multiple_request.html": [ - "df625a2bc338c0220808cf7a153128fe9b9d48a8", + "df625a2bc338c0220808cf7a153128fe9b9d48a8", "testharness" - ], + ], "mozilla/img_no_panic_on_no_map.html": [ - "e9f1b56ac4c49c146868123a9a73f55c85ae3771", + "e9f1b56ac4c49c146868123a9a73f55c85ae3771", "testharness" - ], + ], "mozilla/img_placeholder_load.html": [ - "c90b0041a4bc4c255819839cec7265ae65454674", + "c90b0041a4bc4c255819839cec7265ae65454674", "testharness" - ], + ], "mozilla/img_width_height.html": [ - "ec68ac34ee2a35aebb38eb297a33a1cd98f5893c", + "ec68ac34ee2a35aebb38eb297a33a1cd98f5893c", "testharness" - ], + ], "mozilla/inline-event-listener-panic.html": [ - "2418893bc058666a018498dbf414faae2f22ffc5", + "2418893bc058666a018498dbf414faae2f22ffc5", "testharness" - ], + ], "mozilla/inline_event_handler.html": [ - "4f86be5b9cb80913a6483b9cc65350f027cf30cc", + "4f86be5b9cb80913a6483b9cc65350f027cf30cc", "testharness" - ], + ], "mozilla/innerHTML.html": [ - "031e67e0c3bfd25bb32a8c1727864cdcf8bd641b", + "031e67e0c3bfd25bb32a8c1727864cdcf8bd641b", "testharness" - ], + ], "mozilla/input_value.html": [ - "a2a12d44d0331164651816710eeb2ddcb1738735", + "a2a12d44d0331164651816710eeb2ddcb1738735", "testharness" - ], + ], "mozilla/interface_member_exposed.html": [ - "dd637cf92a894e4569e8fb0baf11eea6968033af", + "dd637cf92a894e4569e8fb0baf11eea6968033af", "testharness" - ], + ], "mozilla/interfaces.html": [ "95ab0109c82c8e90a3e53a3579b9337e2091e26c", "testharness" - ], + ], "mozilla/interfaces.js": [ - "6f2a54524ef317a48d758f7e50f742fd9b3a93e4", + "6f2a54524ef317a48d758f7e50f742fd9b3a93e4", "support" - ], + ], "mozilla/interfaces.worker.js": [ - "a5f2e00f234ea66b80e8a9bd4dbbc5433926191f", + "a5f2e00f234ea66b80e8a9bd4dbbc5433926191f", "testharness" - ], + ], "mozilla/invalid-this.html": [ - "bc1e350522670523144a5dc8a9ad4e0398078301", + "bc1e350522670523144a5dc8a9ad4e0398078301", "testharness" - ], + ], "mozilla/iterable.html": [ - "d4fe1259b01ccef6f1185f5a3d52f8b014a21d51", + "d4fe1259b01ccef6f1185f5a3d52f8b014a21d51", "testharness" - ], + ], "mozilla/keyframe-infinite-percentage.html": [ - "36ba83eeac401653356fa38edf30c94d38fd8542", + "36ba83eeac401653356fa38edf30c94d38fd8542", "testharness" - ], + ], "mozilla/lenient_this.html": [ - "960c74613f3c2809bb1f2ee6121bf14f28267051", + "960c74613f3c2809bb1f2ee6121bf14f28267051", "testharness" - ], + ], "mozilla/link_rel_crash.html": [ - "9fa5a1dc04fff0f879d88ce95f4eb5181e2f9b92", + "9fa5a1dc04fff0f879d88ce95f4eb5181e2f9b92", "testharness" - ], + ], "mozilla/load_event.html": [ - "091909ee81cfe7a7ef41c750d1499556e60378fb", + "091909ee81cfe7a7ef41c750d1499556e60378fb", "testharness" - ], + ], "mozilla/localeCompare.html": [ - "c6042d8739edd005e2ce812cebc168a062753a65", + "c6042d8739edd005e2ce812cebc168a062753a65", "testharness" - ], + ], "mozilla/media_query_list_gc.html": [ - "36c13b5305e79f216375c384594374f2606797ea", + "36c13b5305e79f216375c384594374f2606797ea", "testharness" - ], + ], "mozilla/microdata/dup_prop_type_test.html": [ - "23afa74863c8b70ac627eafc2af39059e7039727", + "23afa74863c8b70ac627eafc2af39059e7039727", "testharness" - ], + ], "mozilla/microdata/extra_space_test.html": [ - "8ca5ff587299846d883f3ab33f8257554835262a", + "8ca5ff587299846d883f3ab33f8257554835262a", "testharness" - ], + ], "mozilla/microdata/none_check.html": [ - "9cd9444a992093be703c606a483feb2eb2ec6256", + "9cd9444a992093be703c606a483feb2eb2ec6256", "testharness" - ], + ], "mozilla/microdata/regular_prop_type_test.html": [ - "e7b55d96d99811b72a7901ef4f207dcd1b4bd2b7", + "e7b55d96d99811b72a7901ef4f207dcd1b4bd2b7", "testharness" - ], + ], "mozilla/microdata/single_prop_type_test.html": [ - "15d6a413297578063ce0dd49a9bb20c6547a2d65", + "15d6a413297578063ce0dd49a9bb20c6547a2d65", "testharness" - ], + ], "mozilla/mime_sniffing_font_context.html": [ - "3d8a4d170595ee7bd8926581eefd179a20d131a8", + "3d8a4d170595ee7bd8926581eefd179a20d131a8", "testharness" - ], + ], "mozilla/mql_borrow.html": [ - "17ee0dc48a30933429cb901760ef1b074ed56b6e", + "17ee0dc48a30933429cb901760ef1b074ed56b6e", "testharness" - ], + ], "mozilla/multiple_redirects.html": [ - "790d2933288b8d8fea4ffb8e9266de5c236d7078", + "790d2933288b8d8fea4ffb8e9266de5c236d7078", "testharness" - ], + ], "mozilla/navigator.html": [ - "cb245d9d660dd40af03cf6f430bc4a535662cddd", + "cb245d9d660dd40af03cf6f430bc4a535662cddd", "testharness" - ], + ], "mozilla/nested_asap_script.html": [ - "1690fbcb9272a6f9fe917907a6589b84681e83dc", + "1690fbcb9272a6f9fe917907a6589b84681e83dc", "testharness" - ], + ], "mozilla/nested_asap_script.js": [ - "59562a8c9c39130cad411815059513c4ce0a7c04", + "59562a8c9c39130cad411815059513c4ce0a7c04", "support" - ], + ], "mozilla/network_error_page_load.html": [ - "7304ea34515b4753752f42370f79db388ff62dee", + "7304ea34515b4753752f42370f79db388ff62dee", "testharness" - ], + ], "mozilla/node_compareDocumentPosition.html": [ - "67a73b7f06fc478bc127a47a0402e7461a5e9473", + "67a73b7f06fc478bc127a47a0402e7461a5e9473", "testharness" - ], + ], "mozilla/node_contains.html": [ - "d76471fec9d611506e7db11d23b4609daa09146e", + "d76471fec9d611506e7db11d23b4609daa09146e", "testharness" - ], + ], "mozilla/node_insertBefore.html": [ - "27f4e9182e253b45573b4a58c199fd481d480906", + "27f4e9182e253b45573b4a58c199fd481d480906", "testharness" - ], + ], "mozilla/node_isEqualNode.html": [ - "ab8e54bb1aaa4e3f7d322458d93d3144a5b4ad63", + "ab8e54bb1aaa4e3f7d322458d93d3144a5b4ad63", "testharness" - ], + ], "mozilla/node_lookupPrefix.html": [ - "dfd898dc85f995bd6e4d86f215314c0479106d84", + "dfd898dc85f995bd6e4d86f215314c0479106d84", "testharness" - ], + ], "mozilla/node_normalize.html": [ - "4b333150332c182de5ee0097e2f35bd65d5ec743", + "4b333150332c182de5ee0097e2f35bd65d5ec743", "testharness" - ], + ], "mozilla/node_replaceChild.html": [ - "a0ea4ffc179e1c0dab48665332945a2e073818d0", + "a0ea4ffc179e1c0dab48665332945a2e073818d0", "testharness" - ], + ], "mozilla/non-invertible-transform.html": [ - "f03c9c013446a8a1cbeeda7b980d37fd7ccb7841", + "f03c9c013446a8a1cbeeda7b980d37fd7ccb7841", "testharness" - ], + ], "mozilla/out-of-order-stylesheet-loads-and-imports.html": [ - "d22ae59c689daf77ccda9fa38979413658778dcb", + "d22ae59c689daf77ccda9fa38979413658778dcb", "testharness" - ], + ], "mozilla/out-of-order-stylesheet-loads.html": [ - "0ed15447bc1c78c4383b075426c3b571cf61dc8f", + "0ed15447bc1c78c4383b075426c3b571cf61dc8f", "testharness" - ], + ], "mozilla/paint_timing.html": [ - "0c1798ec565a77d20d9550b5cec352a0b286c415", + "0c1798ec565a77d20d9550b5cec352a0b286c415", "testharness" - ], + ], "mozilla/parentNode_querySelector.html": [ - "0a0c5531c02eb505661e13963211e4f35af37abb", + "0a0c5531c02eb505661e13963211e4f35af37abb", "testharness" - ], + ], "mozilla/parentNode_querySelectorAll.html": [ - "d08adcf448492036f26639043133d41b99137f5d", + "d08adcf448492036f26639043133d41b99137f5d", "testharness" - ], + ], "mozilla/parentnodes.html": [ - "5aff666995fe6cd1d4e84e63a9f6019d04387f8e", + "5aff666995fe6cd1d4e84e63a9f6019d04387f8e", "testharness" - ], + ], "mozilla/poster.png": [ - "33834c3ef095fa9c0080017e1b65b2eb8413eac4", + "33834c3ef095fa9c0080017e1b65b2eb8413eac4", "support" - ], + ], "mozilla/postmessage_closed.html": [ - "c54e371b270cd2e34558dfb7994785d697330534", + "c54e371b270cd2e34558dfb7994785d697330534", "testharness" - ], + ], "mozilla/preferences.html": [ - "a1da58a825e2832c7eb55a87322b7ba840ee2661", + "a1da58a825e2832c7eb55a87322b7ba840ee2661", "testharness" - ], + ], "mozilla/preserve_wrapper_callback.html": [ - "13369b98ede578fba8c6691d812f60c360260706", + "13369b98ede578fba8c6691d812f60c360260706", "testharness" - ], + ], "mozilla/promise.html": [ - "729e87882b4adcfdd440bc5ca4b5ac832a5627bb", + "729e87882b4adcfdd440bc5ca4b5ac832a5627bb", "testharness" - ], + ], "mozilla/prototypes.html": [ - "478b89a6fb876477711c19e392d7e4d190bff7a0", + "478b89a6fb876477711c19e392d7e4d190bff7a0", "testharness" - ], + ], "mozilla/proxy_setter.html": [ - "b8d3d8e9cfba0f547e859db86073b1767a6a9a2f", + "b8d3d8e9cfba0f547e859db86073b1767a6a9a2f", "testharness" - ], + ], "mozilla/range_deleteContents.html": [ - "8de03455bcb0d18258f76af20f58c14868fe1c21", + "8de03455bcb0d18258f76af20f58c14868fe1c21", "testharness" - ], + ], "mozilla/range_request_blob_url.html": [ - "075397620e989dafc814c0ed2bca46bd476bccf6", + "075397620e989dafc814c0ed2bca46bd476bccf6", "testharness" - ], + ], "mozilla/range_request_file_url.html": [ - "4fd4ddc8b1a9959e90b243795267c220d6a05f5e", + "4fd4ddc8b1a9959e90b243795267c220d6a05f5e", "testharness" - ], + ], "mozilla/referrer-policy/OWNERS": [ - "db2d613c22614f458bef6b6fe357f765bf289506", + "db2d613c22614f458bef6b6fe357f765bf289506", "support" - ], + ], "mozilla/referrer-policy/README.md": [ - "9d139c8e71d82d4253975e20bb313124173c452f", + "9d139c8e71d82d4253975e20bb313124173c452f", "support" - ], + ], "mozilla/referrer-policy/generic/common.js": [ - "6adf59c0c29d839b39212e37f3260fd1c0862f80", + "6adf59c0c29d839b39212e37f3260fd1c0862f80", "support" - ], + ], "mozilla/referrer-policy/generic/referrer-policy-test-case.js": [ - "2d676c40b23481dc20795cb2cbee2ef1ea08f553", + "2d676c40b23481dc20795cb2cbee2ef1ea08f553", "support" - ], + ], "mozilla/referrer-policy/generic/sanity-checker.js": [ - "e0714885ffcc9d13bf2acb8e60634a2dd62170dc", + "e0714885ffcc9d13bf2acb8e60634a2dd62170dc", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/a-tag.html": [ - "8f8b8da64973a35574a2c728b56fcb305698ad40", + "8f8b8da64973a35574a2c728b56fcb305698ad40", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/a-tag.py": [ - "24330e4f3c2d7b15284607dad364af14e1948942", + "24330e4f3c2d7b15284607dad364af14e1948942", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/document.py": [ - "0c627780dd8a185387fe1a0b8a73235517655f70", + "0c627780dd8a185387fe1a0b8a73235517655f70", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/link.py": [ - "362e78bd4bfdec4cb1727b5c540a091ab460e0f1", + "362e78bd4bfdec4cb1727b5c540a091ab460e0f1", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/mozresource.py": [ - "763062ce52c5e133acad5218c4d426171a6a677e", + "763062ce52c5e133acad5218c4d426171a6a677e", "support" - ], + ], "mozilla/referrer-policy/generic/subresource/stash.py": [ - "9be57acbdaddaa72007154136234d852c3ef819c", + "9be57acbdaddaa72007154136234d852c3ef819c", "support" - ], + ], "mozilla/referrer-policy/generic/template/css.template": [ - "30021bc8130d918570ab38c675d47334f627abbf", + "30021bc8130d918570ab38c675d47334f627abbf", "support" - ], + ], "mozilla/referrer-policy/generic/template/disclaimer.template": [ - "66c43ed6f21324d44b1596c09a02fecf53f41323", + "66c43ed6f21324d44b1596c09a02fecf53f41323", "support" - ], + ], "mozilla/referrer-policy/generic/template/document.html.template": [ - "fa2baa63cf80efb44cae5e4c1f03f2dbcd92e57b", + "fa2baa63cf80efb44cae5e4c1f03f2dbcd92e57b", "support" - ], + ], "mozilla/referrer-policy/generic/template/script.js.template": [ - "e2edf21819dff6afc8a4f5816a0be58f987341ff", + "e2edf21819dff6afc8a4f5816a0be58f987341ff", "support" - ], + ], "mozilla/referrer-policy/generic/template/spec_json.js.template": [ - "e4cbd03425968819d773460335404584d9d375fc", + "e4cbd03425968819d773460335404584d9d375fc", "support" - ], + ], "mozilla/referrer-policy/generic/template/test.debug.html.template": [ - "a92e460e93443737bf89a0f045d2c0e9ac476136", + "a92e460e93443737bf89a0f045d2c0e9ac476136", "support" - ], + ], "mozilla/referrer-policy/generic/template/test.js.template": [ - "4b01d4d113a8d3a2e8313dc822b8f8dcad21c5f5", + "4b01d4d113a8d3a2e8313dc822b8f8dcad21c5f5", "support" - ], + ], "mozilla/referrer-policy/generic/template/test.release.html.template": [ - "b2523fb045dc7837bce786465f5c0595df002669", + "b2523fb045dc7837bce786465f5c0595df002669", "support" - ], + ], "mozilla/referrer-policy/generic/template/test_description.template": [ - "fbc80bb25af678657dc5f417bb9a930496ca4875", + "fbc80bb25af678657dc5f417bb9a930496ca4875", "support" - ], + ], "mozilla/referrer-policy/generic/template/worker.js.template": [ - "817dd8c87ac81e1a13bbee7691d69fb2a021f527", + "817dd8c87ac81e1a13bbee7691d69fb2a021f527", "support" - ], + ], "mozilla/referrer-policy/generic/tools/__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", "support" - ], + ], "mozilla/referrer-policy/generic/tools/clean.py": [ - "715e1d6ae4b53461a99b3789a5200e4cb6456f4c", + "715e1d6ae4b53461a99b3789a5200e4cb6456f4c", "support" - ], + ], "mozilla/referrer-policy/generic/tools/common_paths.py": [ - "4626223c4c56e2cc661e8e888e2aed192e41affb", + "4626223c4c56e2cc661e8e888e2aed192e41affb", "support" - ], + ], "mozilla/referrer-policy/generic/tools/generate.py": [ - "627133bf6bc6df512f432160743cfc3029a4e5ce", + "627133bf6bc6df512f432160743cfc3029a4e5ce", "support" - ], + ], "mozilla/referrer-policy/generic/tools/regenerate": [ - "e6bd63519b331b3a921755445f6895e39f7864f5", + "e6bd63519b331b3a921755445f6895e39f7864f5", "support" - ], + ], "mozilla/referrer-policy/generic/tools/spec_validator.py": [ - "8641bbc1f1653e70bf21b0e803d4212fb957af16", + "8641bbc1f1653e70bf21b0e803d4212fb957af16", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "83bf807c0cd37c2775d7bc375ac2558c96edf8ba", + "83bf807c0cd37c2775d7bc375ac2558c96edf8ba", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "cee768b4d3f5731bc4e4bf06e9baa6d1d8b3b5d3", + "cee768b4d3f5731bc4e4bf06e9baa6d1d8b3b5d3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "09ecf5a98f31067f126773276ed12af87ec174be", + "09ecf5a98f31067f126773276ed12af87ec174be", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "27ddbe14cd9b6d09a67cbb87fd7e5c7d85285ec0", + "27ddbe14cd9b6d09a67cbb87fd7e5c7d85285ec0", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "72059f8b29b01e5095a209cc67ce2410502efee4", + "72059f8b29b01e5095a209cc67ce2410502efee4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "26322f75e9f67b024306398ca07bc8dd38de9a52", + "26322f75e9f67b024306398ca07bc8dd38de9a52", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "1fe16bd3fc1ff773605d25b0a74e2feb8deca0d8", + "1fe16bd3fc1ff773605d25b0a74e2feb8deca0d8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "8f02ff3921ad82caa95c125db98597659cda5c29", + "8f02ff3921ad82caa95c125db98597659cda5c29", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "e532c627e5be4d8e1ab04b0bb3a7335855991516", + "e532c627e5be4d8e1ab04b0bb3a7335855991516", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "a9dc72117a5e74625e3f9defa2c0e32e39da4498", + "a9dc72117a5e74625e3f9defa2c0e32e39da4498", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "1750d9a09bc0e44769ac46f809d5897143334111", + "1750d9a09bc0e44769ac46f809d5897143334111", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "f2cd6e01066ca5e145a528d0c8d06c1226cac2f9", + "f2cd6e01066ca5e145a528d0c8d06c1226cac2f9", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "0214509d27b24d642204e5653cd5ca10f72c3b17", + "0214509d27b24d642204e5653cd5ca10f72c3b17", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "fe01beca1022e86f913c95cd4aa0b88b0764d1f8", + "fe01beca1022e86f913c95cd4aa0b88b0764d1f8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "249583c8ccfdd4500ed5225814fd033a95793026", + "249583c8ccfdd4500ed5225814fd033a95793026", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "f809976cae5b1b7679fae1ae561929c9c26e19bb", + "f809976cae5b1b7679fae1ae561929c9c26e19bb", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "22661eec35c382f2a028241b7b36e8205d0ec6bf", + "22661eec35c382f2a028241b7b36e8205d0ec6bf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "755425577a7614b4feefc3b7abaee2ad95f0aa67", + "755425577a7614b4feefc3b7abaee2ad95f0aa67", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "eaa02ad2983e7d9c6bf869bf0d7c78c56e17f47c", + "eaa02ad2983e7d9c6bf869bf0d7c78c56e17f47c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "4ae39d55784dae9272e8aa35346d0de0407025a1", + "4ae39d55784dae9272e8aa35346d0de0407025a1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "c9864a5a1ee4360122d3ed111165082a1637743b", + "c9864a5a1ee4360122d3ed111165082a1637743b", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "db8ef405daa0145d0b2d4f8e8e23b912f3e6985f", + "db8ef405daa0145d0b2d4f8e8e23b912f3e6985f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "cc4437740f791f309fb89d1e24be536310ba16e4", + "cc4437740f791f309fb89d1e24be536310ba16e4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "3d9d116ef4282a903b60f0f25844b5722660689c", + "3d9d116ef4282a903b60f0f25844b5722660689c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "8e2efeb10cf8c0d25ded805cc6aebd3c1292958a", + "8e2efeb10cf8c0d25ded805cc6aebd3c1292958a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "3335a72e71cd7ebd34bb5d894a86e3662be60405", + "3335a72e71cd7ebd34bb5d894a86e3662be60405", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "ab03444f9b77d4dcea7417fa84815998e104bdcc", + "ab03444f9b77d4dcea7417fa84815998e104bdcc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "e81fc8826efc55db9e60d9c8a36daa03f4ebbade", + "e81fc8826efc55db9e60d9c8a36daa03f4ebbade", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "e6bdd25216198b36a211357ef6ea6fd98e570934", + "e6bdd25216198b36a211357ef6ea6fd98e570934", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "19a2fe065823259e1d22155221952a59a965eb38", + "19a2fe065823259e1d22155221952a59a965eb38", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "a80dd7f2850b5371036bef757e56c6af50a9dc56", + "a80dd7f2850b5371036bef757e56c6af50a9dc56", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "1221154f79fcff84480105d13285d5c8be444096", + "1221154f79fcff84480105d13285d5c8be444096", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "eac9f15e15828584c9325cfc8eff0267b4900d19", + "eac9f15e15828584c9325cfc8eff0267b4900d19", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "0a825e7fba13c1ed3ce2d22e1490036160933cb0", + "0a825e7fba13c1ed3ce2d22e1490036160933cb0", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "3cb001bf5d53e278f932f7ec6a7431db386a20c8", + "3cb001bf5d53e278f932f7ec6a7431db386a20c8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "c0bdf6d9899ef2e0efa41363cbd22292d4d81439", + "c0bdf6d9899ef2e0efa41363cbd22292d4d81439", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "cfa06807b362dee220f82e4777ba33594da3f73d", + "cfa06807b362dee220f82e4777ba33594da3f73d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "324884e8c3dc283d6a9d1eaa9b0800a92f30c0e7", + "324884e8c3dc283d6a9d1eaa9b0800a92f30c0e7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "07780241974a7bed6cdadb149c90d90469f3226d", + "07780241974a7bed6cdadb149c90d90469f3226d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "01a946be353eab8d0ed215fed65b8d3ddc5dcdbf", + "01a946be353eab8d0ed215fed65b8d3ddc5dcdbf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "ff442044fc445ba0f37dd62ca1e303ffe960293f", + "ff442044fc445ba0f37dd62ca1e303ffe960293f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "890bd45e038250a599addaafbdfa0d8eae535820", + "890bd45e038250a599addaafbdfa0d8eae535820", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "adb2c9dd25be3c35ae5523e85b6e42604ccf9cbc", + "adb2c9dd25be3c35ae5523e85b6e42604ccf9cbc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "3bd097e1f8a819d454058ed90d9e86d25612e96f", + "3bd097e1f8a819d454058ed90d9e86d25612e96f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "3b50585996e82493fb06ff14779a96b9730f817f", + "3b50585996e82493fb06ff14779a96b9730f817f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "ab8d6bbe7dd9764e105ec4a5ea66a8a78e235d41", + "ab8d6bbe7dd9764e105ec4a5ea66a8a78e235d41", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "2c2ab524a341888c179cf34a402d7af1d8fec639", + "2c2ab524a341888c179cf34a402d7af1d8fec639", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "f37ebb1e83e0f1a058a886cb2ef530cb6eb805f7", + "f37ebb1e83e0f1a058a886cb2ef530cb6eb805f7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "850f68df4bc07723863890b6862bd61656cd6eb7", + "850f68df4bc07723863890b6862bd61656cd6eb7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "9605a483c607bb33dcf5f02d07f67b2f75e1765f", + "9605a483c607bb33dcf5f02d07f67b2f75e1765f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "ce77bfdac5de3ffcd32a7a98346a3089fd477d3d", + "ce77bfdac5de3ffcd32a7a98346a3089fd477d3d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "d2cbca0c187a699cf71aa79178245c91cbdbc2d4", + "d2cbca0c187a699cf71aa79178245c91cbdbc2d4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "5ea855747193cfb1820076fe3527c7a16839100b", + "5ea855747193cfb1820076fe3527c7a16839100b", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "6feb8e25d7cb3f45d1e9c726a3bbaf5ad4e242f4", + "6feb8e25d7cb3f45d1e9c726a3bbaf5ad4e242f4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "32672ff58106e2c4f3ddc6c2c9552ba2b165840e", + "32672ff58106e2c4f3ddc6c2c9552ba2b165840e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "68eafc865952c5ee49973d9256afff61ad2f02c3", + "68eafc865952c5ee49973d9256afff61ad2f02c3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "8f45b4cc4e5edca4bb5f5fd2e21b2fc36f51406c", + "8f45b4cc4e5edca4bb5f5fd2e21b2fc36f51406c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "ac808dd6df331dad014aa12578b652d47e215594", + "ac808dd6df331dad014aa12578b652d47e215594", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "ebdd25b0abb625b9bed92a99f084cd0ff7a7bd43", + "ebdd25b0abb625b9bed92a99f084cd0ff7a7bd43", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "a8ba4b2f2365593c4b5785cf7fa8ac7a9cd3a21c", + "a8ba4b2f2365593c4b5785cf7fa8ac7a9cd3a21c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "36a5dcdfa4d92446eddd5d988a1ba96579fa3e90", + "36a5dcdfa4d92446eddd5d988a1ba96579fa3e90", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "f8558f488a65df5167fa13c5e0038a5f4f9a959d", + "f8558f488a65df5167fa13c5e0038a5f4f9a959d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "ffbda4f21dbb17a74fc52c41a1e1d3d7e896034f", + "ffbda4f21dbb17a74fc52c41a1e1d3d7e896034f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "e2ec69874003c298ab54e854848d75713b061d8c", + "e2ec69874003c298ab54e854848d75713b061d8c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "8592006300091afc6b537674d6ce299df4fe57c4", + "8592006300091afc6b537674d6ce299df4fe57c4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "d7110749891623a534c821be6e4f33e99b73c250", + "d7110749891623a534c821be6e4f33e99b73c250", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "e87c84ec0dad9ae936705ca04f858cb056ccac9f", + "e87c84ec0dad9ae936705ca04f858cb056ccac9f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "7c5ef9383a62705a36bea2683733f33db961008e", + "7c5ef9383a62705a36bea2683733f33db961008e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "fd55d3a6a075948d04fcff905d13a8cf11245dc1", + "fd55d3a6a075948d04fcff905d13a8cf11245dc1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "550eee944f2aece317cf91f6d919357a959c83d6", + "550eee944f2aece317cf91f6d919357a959c83d6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "a89179ba4548246915dda6a7e563619457743237", + "a89179ba4548246915dda6a7e563619457743237", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "1ed25cc30c8a9c22cfa227a33c0b6aef0d2334f1", + "1ed25cc30c8a9c22cfa227a33c0b6aef0d2334f1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html.headers": [ - "f2152da955f3295aec2ac05adc2357ac7629cf7b", + "f2152da955f3295aec2ac05adc2357ac7629cf7b", "support" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "a2b065d6b269c3e9a059f4279b1f7eb82b0375b8", + "a2b065d6b269c3e9a059f4279b1f7eb82b0375b8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "72af59fd8299f622839a3a821e5529cacacff8a7", + "72af59fd8299f622839a3a821e5529cacacff8a7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "d593b58fe40a6b2e26975b949c86fffbd2034bbd", + "d593b58fe40a6b2e26975b949c86fffbd2034bbd", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "33267880b678c3bbdc6ad19fd811944eb25f05c2", + "33267880b678c3bbdc6ad19fd811944eb25f05c2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "5eb3618345d854ed4f41029de6cc3dfdcfb838a3", + "5eb3618345d854ed4f41029de6cc3dfdcfb838a3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "147e3b91a9380f234d3ceb2195ad597221d528b6", + "147e3b91a9380f234d3ceb2195ad597221d528b6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "cde014b2863b75b4869d0ba30105c1f806439db0", + "cde014b2863b75b4869d0ba30105c1f806439db0", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "8ea3b75d95b56cb76fffbd3601f887b1dda28a33", + "8ea3b75d95b56cb76fffbd3601f887b1dda28a33", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "f5813e5c39feacb0806b7bbd059876bc08eea47a", + "f5813e5c39feacb0806b7bbd059876bc08eea47a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "c837d1c0f10681d5ec72bbe73bc4bca63456ef28", + "c837d1c0f10681d5ec72bbe73bc4bca63456ef28", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "c999da57203f29293674524a94a8656b9892f306", + "c999da57203f29293674524a94a8656b9892f306", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "246f9e80b230512ffa4338d148b2a8bd85220945", + "246f9e80b230512ffa4338d148b2a8bd85220945", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "2763a8f87dc3d5ec83bd678546e526ffa94e876a", + "2763a8f87dc3d5ec83bd678546e526ffa94e876a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "507a43f7e39319cabc52de17ab55d322902861a2", + "507a43f7e39319cabc52de17ab55d322902861a2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "9ca934c543551c52027de68ba774a62ed42fd909", + "9ca934c543551c52027de68ba774a62ed42fd909", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "5b5524efe5044768f5f4aebf41b2a0aa4d31f42f", + "5b5524efe5044768f5f4aebf41b2a0aa4d31f42f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "7fcaf289293bb3181cd1c6828227552a418fd1f5", + "7fcaf289293bb3181cd1c6828227552a418fd1f5", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "faba80d85198566440aa05330ef67e9e926b2fb0", + "faba80d85198566440aa05330ef67e9e926b2fb0", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "e44c3596a0db6711c691d51c72b1309795392dd1", + "e44c3596a0db6711c691d51c72b1309795392dd1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "9f8dc97322ab7b63eafe4ed4406c3e06386b15a6", + "9f8dc97322ab7b63eafe4ed4406c3e06386b15a6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "06bd9ef1c9db626e4d360b901539f6c0c4b023ce", + "06bd9ef1c9db626e4d360b901539f6c0c4b023ce", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "bf25ce542b2145eaada10b9e5b14cf2790a9db52", + "bf25ce542b2145eaada10b9e5b14cf2790a9db52", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "3a178db8d0b31615511b9ebc256a30d19d1498d3", + "3a178db8d0b31615511b9ebc256a30d19d1498d3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "9761abdcc49ea667dc9c49a032bc88f5484efb88", + "9761abdcc49ea667dc9c49a032bc88f5484efb88", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "ee3b88828e7462d5813e1c8ee9c76fcf5dc19e7c", + "ee3b88828e7462d5813e1c8ee9c76fcf5dc19e7c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "11cdafe5682eb04f9e7dc6f3b6d60dbd0ef5a7a5", + "11cdafe5682eb04f9e7dc6f3b6d60dbd0ef5a7a5", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "86f0dea9ef3fe8f334e1175ddc83eac1a995a489", + "86f0dea9ef3fe8f334e1175ddc83eac1a995a489", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "8d8f78563ab7309bee1d5ab3913de6badf83aa39", + "8d8f78563ab7309bee1d5ab3913de6badf83aa39", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "7b15091b0013e22cc0bdb438303d3a39f78c3aaa", + "7b15091b0013e22cc0bdb438303d3a39f78c3aaa", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "e93c7ad539bc72ef98c60b8257939d4afafe707c", + "e93c7ad539bc72ef98c60b8257939d4afafe707c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "593552134e37fb2e4e612f3db765d1cae7418091", + "593552134e37fb2e4e612f3db765d1cae7418091", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "6b246ffb5d72e1fea12173b04b45f754ac2a8485", + "6b246ffb5d72e1fea12173b04b45f754ac2a8485", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "1626df0349ed6b1310cd5ce2840cb6ef64f95ab1", + "1626df0349ed6b1310cd5ce2840cb6ef64f95ab1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "8ae9694934770b24f181fd93146b232588f7c735", + "8ae9694934770b24f181fd93146b232588f7c735", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "30b76fc541a95b4ec3c6e0e31a6b9739245c8d7e", + "30b76fc541a95b4ec3c6e0e31a6b9739245c8d7e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "98f0a3dd3ee7595f8c837c8cb14a64ffbd6c0ff5", + "98f0a3dd3ee7595f8c837c8cb14a64ffbd6c0ff5", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "279994960afee51ee3a34dfc462f9aa0ee31def3", + "279994960afee51ee3a34dfc462f9aa0ee31def3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "9c389b696a6cebaa7da362720a235a6eaa956ac9", + "9c389b696a6cebaa7da362720a235a6eaa956ac9", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "c15cb2e7ccde2a80a1ec67d782d522197e4ed4cb", + "c15cb2e7ccde2a80a1ec67d782d522197e4ed4cb", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "9807e217061d9b9b4aa7e314c47fea8af02c1a02", + "9807e217061d9b9b4aa7e314c47fea8af02c1a02", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "ca120d93477c1adf97198e264ca6f5a55f43078d", + "ca120d93477c1adf97198e264ca6f5a55f43078d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "0a2b8becbdcd3524516b0a92107901400237612d", + "0a2b8becbdcd3524516b0a92107901400237612d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "6ab8a2936376c77921dcd27600c321a4bac1e928", + "6ab8a2936376c77921dcd27600c321a4bac1e928", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "071b763a016b85e97ae729cacac3fa405658ca80", + "071b763a016b85e97ae729cacac3fa405658ca80", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "576afe6face2eb53439a6652909e6365e89751e6", + "576afe6face2eb53439a6652909e6365e89751e6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "8fc3c1025d7834368704960ed67fbe97f3bb343e", + "8fc3c1025d7834368704960ed67fbe97f3bb343e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "27aa02f70925987b7dc2ee2d1ca8f1fd8ca29d7f", + "27aa02f70925987b7dc2ee2d1ca8f1fd8ca29d7f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "42c11cd548d585df58126763549ccb4a130c2b56", + "42c11cd548d585df58126763549ccb4a130c2b56", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "de0af0598736b41c64dfb4a9c394398d5d7803b4", + "de0af0598736b41c64dfb4a9c394398d5d7803b4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "99c24a45106653087518b88d5b79e7731ff34564", + "99c24a45106653087518b88d5b79e7731ff34564", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "afa999806ed3cc2c54cd018d25fb0cdca07976a8", + "afa999806ed3cc2c54cd018d25fb0cdca07976a8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "18ed8c2a184d20b41b29e148aca981cc30eecdd6", + "18ed8c2a184d20b41b29e148aca981cc30eecdd6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "45da44217d372ad5aa5404d273652558d07175bf", + "45da44217d372ad5aa5404d273652558d07175bf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "c46ebbf18c7dc41ca0aeb91021fa54d4e75bc407", + "c46ebbf18c7dc41ca0aeb91021fa54d4e75bc407", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "94172e0932d27764e3e53b9a7e16046fc46d8c06", + "94172e0932d27764e3e53b9a7e16046fc46d8c06", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "0caa9038f715580ce055c9636d9bf6290bd47914", + "0caa9038f715580ce055c9636d9bf6290bd47914", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "1a5d0d016a49760be34cc79deff1141ebb2b01bd", + "1a5d0d016a49760be34cc79deff1141ebb2b01bd", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "a52353d51e9cd9ef59eed7bed80bf885afdb5cba", + "a52353d51e9cd9ef59eed7bed80bf885afdb5cba", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "2e03e034f77b89a944896e0ecb8ec5a6ede94841", + "2e03e034f77b89a944896e0ecb8ec5a6ede94841", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "8352b8e96a49b7f25912c0fd612e5b7cab0535e6", + "8352b8e96a49b7f25912c0fd612e5b7cab0535e6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "44b84e129cbf8622a5601fc23e5e2c86bc6a6ede", + "44b84e129cbf8622a5601fc23e5e2c86bc6a6ede", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "93281743059f6aa8febb13c81371fda7f0a82f47", + "93281743059f6aa8febb13c81371fda7f0a82f47", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "efb6b0930df5dfd04f403a85b8a5f5e2e2dc385d", + "efb6b0930df5dfd04f403a85b8a5f5e2e2dc385d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "df2c221cf75f7a4551448c70ed6c108fb1f2acab", + "df2c221cf75f7a4551448c70ed6c108fb1f2acab", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "fbde8afaf27bb0171a83893e1fafd5ffdb23cc06", + "fbde8afaf27bb0171a83893e1fafd5ffdb23cc06", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "5a7cadef302579e131597b40e27afdc59d903998", + "5a7cadef302579e131597b40e27afdc59d903998", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "49b5996c0f92c2ed124687d1cdd99c8c41320aab", + "49b5996c0f92c2ed124687d1cdd99c8c41320aab", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "d3e8e2bf66a0a60ee2665dc961c931c4aab1089d", + "d3e8e2bf66a0a60ee2665dc961c931c4aab1089d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "5bc9df06330c66673ced4bf2bb35e9ca8c2c69fa", + "5bc9df06330c66673ced4bf2bb35e9ca8c2c69fa", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "24a2a24752ce1fdd7c45844a12cf6c9fc4ff6881", + "24a2a24752ce1fdd7c45844a12cf6c9fc4ff6881", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "e35010b0dcb189d5199c0d9bb4065c0a8e82964d", + "e35010b0dcb189d5199c0d9bb4065c0a8e82964d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "8e446c5de5a457f3f0363bcd32cc5dcfdbd33f29", + "8e446c5de5a457f3f0363bcd32cc5dcfdbd33f29", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "77e5e8d48a3d54946b6e5b2fc2cbd785091baf09", + "77e5e8d48a3d54946b6e5b2fc2cbd785091baf09", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "3ad89e9922bced4650f1653b954097ccfc78a906", + "3ad89e9922bced4650f1653b954097ccfc78a906", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "83da898bf3c74fdc4ec1688a955194724542c985", + "83da898bf3c74fdc4ec1688a955194724542c985", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "d45aaba6977f9aaa3d74f5a6c6164801a3db4a2d", + "d45aaba6977f9aaa3d74f5a6c6164801a3db4a2d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "287685b5ab417103af3b6b19083f93a7eaf76166", + "287685b5ab417103af3b6b19083f93a7eaf76166", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "5abf46c7980b74e08a9a9036d7101dfa96ada6dc", + "5abf46c7980b74e08a9a9036d7101dfa96ada6dc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "fc80b64e2689fab32e1a895c225206b169d238fa", + "fc80b64e2689fab32e1a895c225206b169d238fa", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "24745ae3ef6955b4b6adf18987d19ac2d01a7b36", + "24745ae3ef6955b4b6adf18987d19ac2d01a7b36", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "36a1a51101c325d99bd7e71f532e8481852cf2e9", + "36a1a51101c325d99bd7e71f532e8481852cf2e9", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "8bf9811b9a45a583f762cba5552e09e8c3e63f03", + "8bf9811b9a45a583f762cba5552e09e8c3e63f03", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "be0a0f5cc564b71fe9327f4dd96ec13bbde4d505", + "be0a0f5cc564b71fe9327f4dd96ec13bbde4d505", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "8fe5a517d5fd4a3a83e8b36f5b4e959000503296", + "8fe5a517d5fd4a3a83e8b36f5b4e959000503296", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "6b526036e20d6b40da45b7ff798a8fc97ebb9c77", + "6b526036e20d6b40da45b7ff798a8fc97ebb9c77", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "e0b557655bc95cd7a6dc34f71d41fa8e7c4723cf", + "e0b557655bc95cd7a6dc34f71d41fa8e7c4723cf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "a64c1843df12bb628346e53e7d29d8e96e118a65", + "a64c1843df12bb628346e53e7d29d8e96e118a65", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "466e073270564f16ea36ba242e169f48b6ab2839", + "466e073270564f16ea36ba242e169f48b6ab2839", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "d947f323df341252252b5d0e56071b10664769fe", + "d947f323df341252252b5d0e56071b10664769fe", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "b2aab04b80e1ae8666af15445642c5c89649fd71", + "b2aab04b80e1ae8666af15445642c5c89649fd71", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "32759c04828ac6f0163f6d0580180dc6d73e9446", + "32759c04828ac6f0163f6d0580180dc6d73e9446", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "f1f700ca9b9a795201e5bae8f372d307f6d9aae2", + "f1f700ca9b9a795201e5bae8f372d307f6d9aae2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "fbd5305905474c3cbc386e5adc7a2383bf0e28e4", + "fbd5305905474c3cbc386e5adc7a2383bf0e28e4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "3d9ec06dffdd9d62c3626fc9d495daeebb63becc", + "3d9ec06dffdd9d62c3626fc9d495daeebb63becc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "85d499e318c91dce425aa3ae2ff6eff01446af3d", + "85d499e318c91dce425aa3ae2ff6eff01446af3d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "6f6db1a8b276b8ab9eebd0bd02285db6d7672ae2", + "6f6db1a8b276b8ab9eebd0bd02285db6d7672ae2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "a9cc6a5af8c2b2c4021a2ead9c41c5f22db37fe6", + "a9cc6a5af8c2b2c4021a2ead9c41c5f22db37fe6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "1e69ce641684539b2fc2f9f9c52dc342c0076b41", + "1e69ce641684539b2fc2f9f9c52dc342c0076b41", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "9c01e379f1d579d3ffdce3f3ace775a95fb356ab", + "9c01e379f1d579d3ffdce3f3ace775a95fb356ab", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "b6150dde844ef07f3b0b9157977c1897f179435a", + "b6150dde844ef07f3b0b9157977c1897f179435a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "a2a1db135fc669b42cbad3d35ed4366a2dab911a", + "a2a1db135fc669b42cbad3d35ed4366a2dab911a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "13176108c8e7d7772954324063115eca3c14f563", + "13176108c8e7d7772954324063115eca3c14f563", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "89ebca36ab3679de9fac2214cb838fa5fa9937a6", + "89ebca36ab3679de9fac2214cb838fa5fa9937a6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "8fc8f828d9c496bad94632d609d9d59ebba94bf7", + "8fc8f828d9c496bad94632d609d9d59ebba94bf7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "60ee2b5a3a6b87a11a641193b2166e74290a6d4c", + "60ee2b5a3a6b87a11a641193b2166e74290a6d4c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "76209dbb3b44329733c90e39a83d9cbacee1ed72", + "76209dbb3b44329733c90e39a83d9cbacee1ed72", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "85687e0a3ebed7eda64134fcdd74c751eeaf31cc", + "85687e0a3ebed7eda64134fcdd74c751eeaf31cc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "3000a27662f918b406173941c92356eb2c9f3900", + "3000a27662f918b406173941c92356eb2c9f3900", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "9707534637ec8cdfd1f9636240d91cc82aea2620", + "9707534637ec8cdfd1f9636240d91cc82aea2620", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "0b94a5651b25e5bc04bbf7577af06f8a2ffd7c2c", + "0b94a5651b25e5bc04bbf7577af06f8a2ffd7c2c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "fd3e18548a325bde0daf1fa7ef439254a8ff0bf2", + "fd3e18548a325bde0daf1fa7ef439254a8ff0bf2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "51940c818f476942b1bc3c916cb63e88a9238a10", + "51940c818f476942b1bc3c916cb63e88a9238a10", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "d79f35c4db1bdfa9640ada8dbf6be4ebed984b90", + "d79f35c4db1bdfa9640ada8dbf6be4ebed984b90", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "6d8aac0b09891ad27155e11cb535977865aa4790", + "6d8aac0b09891ad27155e11cb535977865aa4790", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "732b81fa39d7ad763ad3fe6b6e4d9f25bda6e40d", + "732b81fa39d7ad763ad3fe6b6e4d9f25bda6e40d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "68f660949ff0bbdda0e86ac912acb2177fdc6da7", + "68f660949ff0bbdda0e86ac912acb2177fdc6da7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "33cc2cd2074acc9ec0be8bcb176aa3834b93bc65", + "33cc2cd2074acc9ec0be8bcb176aa3834b93bc65", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "3d173eaaefcd4bddb00399488443799535b784ac", + "3d173eaaefcd4bddb00399488443799535b784ac", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "2561ba4d3192d15d10d95cce7abc2b50b6f6375d", + "2561ba4d3192d15d10d95cce7abc2b50b6f6375d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "cc793db90bd8be6655024ef41e81ea1893130cb8", + "cc793db90bd8be6655024ef41e81ea1893130cb8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "69c952cd784a3e21cd1a9b29a6454c0ef00395d9", + "69c952cd784a3e21cd1a9b29a6454c0ef00395d9", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "d757d0593fdcc405f51f916c2285e7743d21903e", + "d757d0593fdcc405f51f916c2285e7743d21903e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "4d7b5a3d3f6975444d64c444233493e98df28d03", + "4d7b5a3d3f6975444d64c444233493e98df28d03", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "09981bbb6aae0874213d3212d7a9c970c6559dc4", + "09981bbb6aae0874213d3212d7a9c970c6559dc4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "711d89c27a5304500149add6a3a09a249719f73e", + "711d89c27a5304500149add6a3a09a249719f73e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "920a6aa6db157e2798ca4ad85d520eeab79d43eb", + "920a6aa6db157e2798ca4ad85d520eeab79d43eb", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "30e24be56b9b8ce1d3510038d4e9e31c6016db88", + "30e24be56b9b8ce1d3510038d4e9e31c6016db88", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "117497f3ff906c4b98c8e8b88db3dbbae3b4f1b6", + "117497f3ff906c4b98c8e8b88db3dbbae3b4f1b6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "0e6d4a9e1186b0d9bf156e405ced3f07130e7808", + "0e6d4a9e1186b0d9bf156e405ced3f07130e7808", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "e95d47d00f9da90fa5502dee3793d274d9fe60cf", + "e95d47d00f9da90fa5502dee3793d274d9fe60cf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "ddd4a15dd18d705a6da2dcf8d12ec2af9014e13c", + "ddd4a15dd18d705a6da2dcf8d12ec2af9014e13c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "210024dcd96c87404f089c2ea3c6f05363019f4d", + "210024dcd96c87404f089c2ea3c6f05363019f4d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "c184cd6a656e60e4535606264a8f205dfbd05974", + "c184cd6a656e60e4535606264a8f205dfbd05974", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "4fac6209fe6a01bd67f69f91b52d0b4c9c1c7232", + "4fac6209fe6a01bd67f69f91b52d0b4c9c1c7232", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "b777f5d73463d6930b2f110230ff614e913598f7", + "b777f5d73463d6930b2f110230ff614e913598f7", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "1bf59a19f22c2ad79255be7736d6ac2c97a2ad6d", + "1bf59a19f22c2ad79255be7736d6ac2c97a2ad6d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "dd20ac03da1b07b6c8f4db423f338d72910c7438", + "dd20ac03da1b07b6c8f4db423f338d72910c7438", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "04606d455f7209b6804f1f107fd996baeedf7720", + "04606d455f7209b6804f1f107fd996baeedf7720", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "5f4a0b837f8a649b0d12449ea1a1a6b965413ff8", + "5f4a0b837f8a649b0d12449ea1a1a6b965413ff8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "7f867505892cc90c05ee8d2fa7d03ee6a1645ba9", + "7f867505892cc90c05ee8d2fa7d03ee6a1645ba9", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "9583a7b4d3db3b15171d388f74152ca2a6e7d283", + "9583a7b4d3db3b15171d388f74152ca2a6e7d283", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "677ba17cba9bc47c2bb75e1529ab1b83189ceec6", + "677ba17cba9bc47c2bb75e1529ab1b83189ceec6", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "0df663772b3a1e47a65573a6bbc090042ed9221d", + "0df663772b3a1e47a65573a6bbc090042ed9221d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "49f9b375b6252883bd27d95aeaab237bd611e7da", + "49f9b375b6252883bd27d95aeaab237bd611e7da", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "9b531426e5ab952b03e88b378feb5672a1e5eb4e", + "9b531426e5ab952b03e88b378feb5672a1e5eb4e", "support" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "45da314204ebcfeb33954129740eed640bfd7d19", + "45da314204ebcfeb33954129740eed640bfd7d19", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "b259b7d8064921910c107f11525ec7ea81722d34", + "b259b7d8064921910c107f11525ec7ea81722d34", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "4deb67194d7fe3e172144aef2ab132a894d29d05", + "4deb67194d7fe3e172144aef2ab132a894d29d05", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "d0b1c19a88e1ed4310e26b587993cf2c88095ce3", + "d0b1c19a88e1ed4310e26b587993cf2c88095ce3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "784a6f9a007a41b4c348762bc52b36cc4f0b1805", + "784a6f9a007a41b4c348762bc52b36cc4f0b1805", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "72593464206e4b15b421d5cc00765233292af468", + "72593464206e4b15b421d5cc00765233292af468", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "3ad3a9184ff7a39480e489195f73b5ca9d60372b", + "3ad3a9184ff7a39480e489195f73b5ca9d60372b", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "dcdbc5cbbda68343cdd537c41b11410dda14e2b4", + "dcdbc5cbbda68343cdd537c41b11410dda14e2b4", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "16e80c285b29ffdcae25d123ccf3aa4907327da8", + "16e80c285b29ffdcae25d123ccf3aa4907327da8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "6d00e4eeb09f07ec5badff081183f3b029d2369b", + "6d00e4eeb09f07ec5badff081183f3b029d2369b", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "791247457d94a64f1322d4829d338776120183dc", + "791247457d94a64f1322d4829d338776120183dc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "f2ed755b6d6cdda834a0e46319b12ab24f44365f", + "f2ed755b6d6cdda834a0e46319b12ab24f44365f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "35f7ec2afdd7f4cca3da6bd08c0937400a46d14b", + "35f7ec2afdd7f4cca3da6bd08c0937400a46d14b", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "8ffb65ba5b74efddbbd6eaa37f5fb796f5c5187e", + "8ffb65ba5b74efddbbd6eaa37f5fb796f5c5187e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "d2b709aabd02e16ede6249dc56b60613427d63be", + "d2b709aabd02e16ede6249dc56b60613427d63be", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "7150dff86ee7931d05568bfc817689a34d33ba28", + "7150dff86ee7931d05568bfc817689a34d33ba28", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "2aa1fa8d127705626b9ade6c1a4d447e7ebfed60", + "2aa1fa8d127705626b9ade6c1a4d447e7ebfed60", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "27aebad544cf3591119f04619867c79ee83ea533", + "27aebad544cf3591119f04619867c79ee83ea533", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "6b2540d5f5f9b7c30f8e67aa419eaab5e65fb356", + "6b2540d5f5f9b7c30f8e67aa419eaab5e65fb356", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "819b5922ad40b17ee8c1c610384dd5502b1b54db", + "819b5922ad40b17ee8c1c610384dd5502b1b54db", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "1429500d3c988dade215c8683e0a3abfe4a4d2a5", + "1429500d3c988dade215c8683e0a3abfe4a4d2a5", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "6ef9c003f088ceb0cb127f12bba33d884d94223e", + "6ef9c003f088ceb0cb127f12bba33d884d94223e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "ceefd0655ac922975ee0c9ec3a641ab588d9dc76", + "ceefd0655ac922975ee0c9ec3a641ab588d9dc76", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "e44a770682546be3a6c80d3b8b639fbc33675a19", + "e44a770682546be3a6c80d3b8b639fbc33675a19", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "4b1aa50e368991ac0b4d96c1a7a579bfc9e71d25", + "4b1aa50e368991ac0b4d96c1a7a579bfc9e71d25", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "faf311f3752ca28bb710026f7baf12c4322f919e", + "faf311f3752ca28bb710026f7baf12c4322f919e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "321f00208839e4f547bec223fc22ff39de532d33", + "321f00208839e4f547bec223fc22ff39de532d33", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "2f0a2304609293dbf5a44cc3c22753811392dd96", + "2f0a2304609293dbf5a44cc3c22753811392dd96", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "28a4e866df010976565bedf4adea74e2a260909d", + "28a4e866df010976565bedf4adea74e2a260909d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "be955ec5ae7d204a6d6789a587e14cbce6215d50", + "be955ec5ae7d204a6d6789a587e14cbce6215d50", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "2635005c5f0fefbb085b7fbd5a622a533baf0daf", + "2635005c5f0fefbb085b7fbd5a622a533baf0daf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "e9c75d338c17b09695578ce4369c473262601b3c", + "e9c75d338c17b09695578ce4369c473262601b3c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "222345cdbaf158345c645c67c5f0fe7f5dc707e2", + "222345cdbaf158345c645c67c5f0fe7f5dc707e2", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "8ed1924243e90f0750e8bf81b080a8af98e17dfa", + "8ed1924243e90f0750e8bf81b080a8af98e17dfa", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "fdee7a7516f0508f487e39ba4f1b8bc1cf030d7d", + "fdee7a7516f0508f487e39ba4f1b8bc1cf030d7d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "cbf87e59aa875d8d3cb60028aaa25bd3a349e3db", + "cbf87e59aa875d8d3cb60028aaa25bd3a349e3db", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "82ade79f959c21430cdbac7c6288f8a26b751c45", + "82ade79f959c21430cdbac7c6288f8a26b751c45", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "d30a2c60448c235800f9636b5405c4738d7cb779", + "d30a2c60448c235800f9636b5405c4738d7cb779", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "d8c1c5c12c462f0904ca22f4f55285cfb7070b6c", + "d8c1c5c12c462f0904ca22f4f55285cfb7070b6c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "65a5904307c52fa33cfbbc6ed98f755f8af9816d", + "65a5904307c52fa33cfbbc6ed98f755f8af9816d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "d81c61c30a8978e093a19ca7eb48e802043f74de", + "d81c61c30a8978e093a19ca7eb48e802043f74de", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "ee95872bd41b5b3a205e1e83a8a70dec7392b224", + "ee95872bd41b5b3a205e1e83a8a70dec7392b224", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "f02f304e9a52a2e07c464bdadb089e20f8a33b57", + "f02f304e9a52a2e07c464bdadb089e20f8a33b57", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "fa8befb90b17ed5e4280c584612708325dc048ff", + "fa8befb90b17ed5e4280c584612708325dc048ff", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "211cd9e521e9875296b6c3166cd1baec7dd7a1ff", + "211cd9e521e9875296b6c3166cd1baec7dd7a1ff", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "13ffc1e1a2640186670e10ad31e2e9bb33d58e5a", + "13ffc1e1a2640186670e10ad31e2e9bb33d58e5a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "90af09cd5aab0ec1fb73ddb911663f5ab3ca6670", + "90af09cd5aab0ec1fb73ddb911663f5ab3ca6670", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "1b38c274630021bdf19828771fa88e6a87885717", + "1b38c274630021bdf19828771fa88e6a87885717", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "753c68b83e85fba7fed40283530f646ecfefa53e", + "753c68b83e85fba7fed40283530f646ecfefa53e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "6ddb9e51eabaaee86191468ebbb4fb635795ffa8", + "6ddb9e51eabaaee86191468ebbb4fb635795ffa8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "ced4d31a52dc7063570a4373925ef69e908dda09", + "ced4d31a52dc7063570a4373925ef69e908dda09", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "b381862d4921ac77ccfe9427171cc667a87389ba", + "b381862d4921ac77ccfe9427171cc667a87389ba", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "29681de581f2a71cc379725332797641e010c557", + "29681de581f2a71cc379725332797641e010c557", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "b366a33270b47c382643d96709eb418d106eea52", + "b366a33270b47c382643d96709eb418d106eea52", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "fff8111ef0e19b07d6a098850ae46f4b379bb249", + "fff8111ef0e19b07d6a098850ae46f4b379bb249", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "b3ed7b0867480777bce515d815e90a5721007f5f", + "b3ed7b0867480777bce515d815e90a5721007f5f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "72c9500f066cf7c5a62f8a720a3a3b3eaa97c92c", + "72c9500f066cf7c5a62f8a720a3a3b3eaa97c92c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "92fd3721d25c5f496f94a0df813925c6f324d53a", + "92fd3721d25c5f496f94a0df813925c6f324d53a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "ebb5f44de1b293eaf283fbb4e28f21684719381a", + "ebb5f44de1b293eaf283fbb4e28f21684719381a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "611419f761384293991425008bb8d366edb34684", + "611419f761384293991425008bb8d366edb34684", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "29aab961a07b63c940dfc4a7745df5ca1ec8f1f3", + "29aab961a07b63c940dfc4a7745df5ca1ec8f1f3", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "a20382786540cfec25b8461d23ae33b9b69871ad", + "a20382786540cfec25b8461d23ae33b9b69871ad", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "cc49ae2b6672b8bc513cf6a6d85b8d51caa5ff94", + "cc49ae2b6672b8bc513cf6a6d85b8d51caa5ff94", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "42a9b7b023c1391f5574cb94868fcb2cb27fa710", + "42a9b7b023c1391f5574cb94868fcb2cb27fa710", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "078ee8501327f884fdeea1b36b74c3361ac35ffc", + "078ee8501327f884fdeea1b36b74c3361ac35ffc", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "88ce04e35ab8940ef36dc308aa7cbab0b41f418a", + "88ce04e35ab8940ef36dc308aa7cbab0b41f418a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "464af4b53773a12a6386d23afb9bcb2ad6934581", + "464af4b53773a12a6386d23afb9bcb2ad6934581", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "871627d216ffe7fb78ab8387ce40d7610bd7498f", + "871627d216ffe7fb78ab8387ce40d7610bd7498f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "804b73315e0b4f47a9e07de8bfd0750fbd727975", + "804b73315e0b4f47a9e07de8bfd0750fbd727975", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "6757947a83a93bf0aa15a4db615178ee66c572ea", + "6757947a83a93bf0aa15a4db615178ee66c572ea", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "2a61e58cc7174d92e3d23e8584c64a98004ac22a", + "2a61e58cc7174d92e3d23e8584c64a98004ac22a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "d3e5c18bc3e133dba689e2ee1f01eed84257711c", + "d3e5c18bc3e133dba689e2ee1f01eed84257711c", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "3bfe8fd9c86f734146c65a2e3851b3381909b545", + "3bfe8fd9c86f734146c65a2e3851b3381909b545", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "de5baf213d28836d7938c234dbf6d84b35a38e3f", + "de5baf213d28836d7938c234dbf6d84b35a38e3f", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "84829846daaffaa1e9cc2eeea375cdf283417eea", + "84829846daaffaa1e9cc2eeea375cdf283417eea", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "19cdd166366dc16066250584c66345bcc7bf2812", + "19cdd166366dc16066250584c66345bcc7bf2812", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "9c7d1020684a426a62d8f6341b3017d13b6687cf", + "9c7d1020684a426a62d8f6341b3017d13b6687cf", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "9e2bd4f9efbf9f47e3f980f90dffcc36262656ac", + "9e2bd4f9efbf9f47e3f980f90dffcc36262656ac", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "0cff6bfc9fa08c2da540100e0720b72b351882d1", + "0cff6bfc9fa08c2da540100e0720b72b351882d1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "826bb87307f25a03ecdab4ce1742553c923a6f0a", + "826bb87307f25a03ecdab4ce1742553c923a6f0a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "9684bbc28c5b8ad3678f70249ff376985c034c41", + "9684bbc28c5b8ad3678f70249ff376985c034c41", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "b0852508311c4db006b903a37d8e7c94c27513ef", + "b0852508311c4db006b903a37d8e7c94c27513ef", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "6fdf0378e5c5391094f9917c50d9d318dbbd08a8", + "6fdf0378e5c5391094f9917c50d9d318dbbd08a8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "dcd654c7e18f04a87949fc6a7f4a63051f7892f8", + "dcd654c7e18f04a87949fc6a7f4a63051f7892f8", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "d270cb39f8bda17187e854cd35e8f69f20d9ac4d", + "d270cb39f8bda17187e854cd35e8f69f20d9ac4d", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "dc28d81061c26ee6bf8d1d928952295450de648a", + "dc28d81061c26ee6bf8d1d928952295450de648a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "0c32784d7a5183eddef6d69bea542024f5d6c387", + "0c32784d7a5183eddef6d69bea542024f5d6c387", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "6a846e94f89aef1e1efd67c723b177a02158daec", + "6a846e94f89aef1e1efd67c723b177a02158daec", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "ee8605cf20223f412597b413508ac9279738ee3e", + "ee8605cf20223f412597b413508ac9279738ee3e", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "f2352085ed0a8ed674b8517c23a189759b797dc1", + "f2352085ed0a8ed674b8517c23a189759b797dc1", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "f80fe8f7daefd247a81f227a03ad0758ffda3398", + "f80fe8f7daefd247a81f227a03ad0758ffda3398", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "f556af21e8dc23ebc6da62eb4664e2055cf6956a", + "f556af21e8dc23ebc6da62eb4664e2055cf6956a", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "d7f59c41bf2f8df43246e2d7a89e0a6f9e3ce290", + "d7f59c41bf2f8df43246e2d7a89e0a6f9e3ce290", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "d348770a9e69b251d7194104fa16c56534aebc36", + "d348770a9e69b251d7194104fa16c56534aebc36", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "2155ba40e868e8a9dd16100a5051a5bff2e6a544", + "2155ba40e868e8a9dd16100a5051a5bff2e6a544", "testharness" - ], + ], "mozilla/referrer-policy/no-referrer/rel-noreferrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "6e6860e3a044b8ebbd5f898790b4c4b8a3185474", + "6e6860e3a044b8ebbd5f898790b4c4b8a3185474", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "815c38b5dd29b3256bc17db3441c0089f8bfb624", + "815c38b5dd29b3256bc17db3441c0089f8bfb624", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "ded83d5d7da7ef0f8da828f7b29c6f803276905e", + "ded83d5d7da7ef0f8da828f7b29c6f803276905e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "cbcccaba567b91a5b59739bcdbb81d2c662e52c9", + "cbcccaba567b91a5b59739bcdbb81d2c662e52c9", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "5c94c1450fb73614ac87fb36fb6e2dd9a13c2b11", + "5c94c1450fb73614ac87fb36fb6e2dd9a13c2b11", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "1d040a2955b83352d4bcea80244b934b26965410", + "1d040a2955b83352d4bcea80244b934b26965410", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "e6e0d838fd15e34f1a9174a375fd996650146f07", + "e6e0d838fd15e34f1a9174a375fd996650146f07", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "9efdd01d344a1f066fab70956c7c70b1e19f48cf", + "9efdd01d344a1f066fab70956c7c70b1e19f48cf", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "f2ef19ffd4b6297245594fffdb01c1e73062a740", + "f2ef19ffd4b6297245594fffdb01c1e73062a740", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "6a12943b1fd7c86e584259fcee2354dee8699e8d", + "6a12943b1fd7c86e584259fcee2354dee8699e8d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "67d3c1a16244343e8399bdb2602f1153cbb8d120", + "67d3c1a16244343e8399bdb2602f1153cbb8d120", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "a452885cc24c41e15df598e3c6cc99535a28d5ab", + "a452885cc24c41e15df598e3c6cc99535a28d5ab", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "0b6928140cfbc67cb2362e6d107accaaf9d4dd97", + "0b6928140cfbc67cb2362e6d107accaaf9d4dd97", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "5e9526c5ecd593866571bf8329f0eede48449d76", + "5e9526c5ecd593866571bf8329f0eede48449d76", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "32a78fbb5255e0951371dd0f6230c088033e778e", + "32a78fbb5255e0951371dd0f6230c088033e778e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "d84a4f6f49049ef7bcf7be7f67183db4c49e8d35", + "d84a4f6f49049ef7bcf7be7f67183db4c49e8d35", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "35ec5a15fbeb6df2036b1c0edf6f58a33ff2981e", + "35ec5a15fbeb6df2036b1c0edf6f58a33ff2981e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "374b1cb158c9e1c5d875473411499384ad1ff459", + "374b1cb158c9e1c5d875473411499384ad1ff459", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "e1fb23efad1d0b8235a562f20b2c2e2b3bac349a", + "e1fb23efad1d0b8235a562f20b2c2e2b3bac349a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "e130f72c2bf055494e5a56153a3576c02b2d9746", + "e130f72c2bf055494e5a56153a3576c02b2d9746", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "4ac830a03c4526d2dee303288f474e1dc5b655b8", + "4ac830a03c4526d2dee303288f474e1dc5b655b8", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "04fd8577b724c1a77c5d7e25a66ec4bd45a90413", + "04fd8577b724c1a77c5d7e25a66ec4bd45a90413", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "6f3e6f257a7d157868ecd10c799fc4039e1c41b1", + "6f3e6f257a7d157868ecd10c799fc4039e1c41b1", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "a0e7459c01e1da8f2209bb8a8503bd1b6d584cbb", + "a0e7459c01e1da8f2209bb8a8503bd1b6d584cbb", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "f9716974554217972ee296cee41a0c0000362b81", + "f9716974554217972ee296cee41a0c0000362b81", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "b1b62cfb5e83660f4408f1ac162c28636cf7df20", + "b1b62cfb5e83660f4408f1ac162c28636cf7df20", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "93c006f59f939b0903cf8da3166234b082961657", + "93c006f59f939b0903cf8da3166234b082961657", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "c95f60cb59c5ed8d9da71aa614f94ae1d2c82036", + "c95f60cb59c5ed8d9da71aa614f94ae1d2c82036", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "c29f95f22df55a76fa082e332c32244442a461f5", + "c29f95f22df55a76fa082e332c32244442a461f5", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ - "13b3de74e09d6358504311efe23ba37d1bce4ef2", + "13b3de74e09d6358504311efe23ba37d1bce4ef2", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", + "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", + "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "c29f95f22df55a76fa082e332c32244442a461f5", + "c29f95f22df55a76fa082e332c32244442a461f5", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ - "13b3de74e09d6358504311efe23ba37d1bce4ef2", + "13b3de74e09d6358504311efe23ba37d1bce4ef2", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", + "18c5714e3a4ab3d306bc6ad1ab89cf98cd347dd0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "83ecb90b896f308d8c29c7ecccddbb864e157fe1", + "83ecb90b896f308d8c29c7ecccddbb864e157fe1", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ - "26e249ba7ecca4854658c9dbb4230c7f01d11773", + "26e249ba7ecca4854658c9dbb4230c7f01d11773", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "640338c0e1747fa33a645fc911d3adbebfe81a18", + "640338c0e1747fa33a645fc911d3adbebfe81a18", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "640338c0e1747fa33a645fc911d3adbebfe81a18", + "640338c0e1747fa33a645fc911d3adbebfe81a18", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "83ecb90b896f308d8c29c7ecccddbb864e157fe1", + "83ecb90b896f308d8c29c7ecccddbb864e157fe1", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ - "26e249ba7ecca4854658c9dbb4230c7f01d11773", + "26e249ba7ecca4854658c9dbb4230c7f01d11773", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "640338c0e1747fa33a645fc911d3adbebfe81a18", + "640338c0e1747fa33a645fc911d3adbebfe81a18", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "7d0c6341addaf634fba1759f524fd69b17a1fd9d", + "7d0c6341addaf634fba1759f524fd69b17a1fd9d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ - "be4a9a26f26a15098ca90aeb1dd0b8d8102b1725", + "be4a9a26f26a15098ca90aeb1dd0b8d8102b1725", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "87330980857dab41f4c4f5be041418829d09128c", + "87330980857dab41f4c4f5be041418829d09128c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "87330980857dab41f4c4f5be041418829d09128c", + "87330980857dab41f4c4f5be041418829d09128c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "7d0c6341addaf634fba1759f524fd69b17a1fd9d", + "7d0c6341addaf634fba1759f524fd69b17a1fd9d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ - "be4a9a26f26a15098ca90aeb1dd0b8d8102b1725", + "be4a9a26f26a15098ca90aeb1dd0b8d8102b1725", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "87330980857dab41f4c4f5be041418829d09128c", + "87330980857dab41f4c4f5be041418829d09128c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "343ce2731d3ba92ef30fe6954b5694a5d228ec94", + "343ce2731d3ba92ef30fe6954b5694a5d228ec94", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "004fb3200484bd1b7463b7742ac23456befb393c", + "004fb3200484bd1b7463b7742ac23456befb393c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "ef2f5ff0d36aa80eb9acec1892ee6ecbddb773ab", + "ef2f5ff0d36aa80eb9acec1892ee6ecbddb773ab", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "c9e4e2bdb48044ba0ad7579fd1a97e22c5814697", + "c9e4e2bdb48044ba0ad7579fd1a97e22c5814697", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "530b5af744e792d6d77c47564e1540f79c3cc448", + "530b5af744e792d6d77c47564e1540f79c3cc448", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "fb20d79f52b10e035172c61aa5dab743f15637d1", + "fb20d79f52b10e035172c61aa5dab743f15637d1", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "326b9994a507934b35236f5fbc10b8e8e427979e", + "326b9994a507934b35236f5fbc10b8e8e427979e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "cbd4159afc33e29c20dbea6cc140e1f2dcf9082e", + "cbd4159afc33e29c20dbea6cc140e1f2dcf9082e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "3bedb2ee41eef5bebf4db0b0e3cdbf84ab549583", + "3bedb2ee41eef5bebf4db0b0e3cdbf84ab549583", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "3fac660ebf00e76639dd0a221a028cb8a9259e6b", + "3fac660ebf00e76639dd0a221a028cb8a9259e6b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "d8d9e5a1aed6663696cdcab7cb766934a40aa7aa", + "d8d9e5a1aed6663696cdcab7cb766934a40aa7aa", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "6478ba73fb9724f6214f6bae984ca4953bc1a5e6", + "6478ba73fb9724f6214f6bae984ca4953bc1a5e6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "46daea793ea171f4a7bbd36b510bfeebedfb65cd", + "46daea793ea171f4a7bbd36b510bfeebedfb65cd", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "07acdbe76894395317cc6dd8251b50f222a30a1f", + "07acdbe76894395317cc6dd8251b50f222a30a1f", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "2526f2cfacda4d53b90f7d70aa6f2902e1115457", + "2526f2cfacda4d53b90f7d70aa6f2902e1115457", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "feb4bee59d20f5f31596cd533af54cb528a6c148", + "feb4bee59d20f5f31596cd533af54cb528a6c148", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "4035b957050728c4307fa73544883139f2dd9cbb", + "4035b957050728c4307fa73544883139f2dd9cbb", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "a15529459cd5a356d02738b1bc7e5e49ceac3760", + "a15529459cd5a356d02738b1bc7e5e49ceac3760", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "9900ed1274e5ec538a8f6d066e774b49140562da", + "9900ed1274e5ec538a8f6d066e774b49140562da", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "d874a5bea34370252723e73c1062dd486c3984df", + "d874a5bea34370252723e73c1062dd486c3984df", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "8346d8ebee79532d1c92b47efd8555d7426d33f5", + "8346d8ebee79532d1c92b47efd8555d7426d33f5", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "c532e2d40fb0103e6718b7dc9e09ffaecc04ed32", + "c532e2d40fb0103e6718b7dc9e09ffaecc04ed32", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "f63abd6a25df462fdc214b740e9ad8ead5c8dddb", + "f63abd6a25df462fdc214b740e9ad8ead5c8dddb", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "b58096acd884d48f8f16a98ab864e7ff0cdc6e73", + "b58096acd884d48f8f16a98ab864e7ff0cdc6e73", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "e6ad72f5dec437262eed099486a91abb29efa960", + "e6ad72f5dec437262eed099486a91abb29efa960", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "784d927fbae8eb9b9e6a402bc0da360a0111a67b", + "784d927fbae8eb9b9e6a402bc0da360a0111a67b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "2d078641a2bc11cd388d27b1ad0085583cae8a81", + "2d078641a2bc11cd388d27b1ad0085583cae8a81", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "9699d68e608d663b04e59e406ec117d7e9a4db1b", + "9699d68e608d663b04e59e406ec117d7e9a4db1b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ - "643d25eb25842fc701d2b3e5167e18c503fdc48d", + "643d25eb25842fc701d2b3e5167e18c503fdc48d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "a5a665855bf8fd5abf25d55fc1b538da04da4201", + "a5a665855bf8fd5abf25d55fc1b538da04da4201", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "a5a665855bf8fd5abf25d55fc1b538da04da4201", + "a5a665855bf8fd5abf25d55fc1b538da04da4201", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "9699d68e608d663b04e59e406ec117d7e9a4db1b", + "9699d68e608d663b04e59e406ec117d7e9a4db1b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ - "643d25eb25842fc701d2b3e5167e18c503fdc48d", + "643d25eb25842fc701d2b3e5167e18c503fdc48d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "a5a665855bf8fd5abf25d55fc1b538da04da4201", + "a5a665855bf8fd5abf25d55fc1b538da04da4201", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "5a0d1c44cfea8331bc0ad3d9f6236da4985da80a", + "5a0d1c44cfea8331bc0ad3d9f6236da4985da80a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ - "9174597bb1b45793f592a4729e5d64dda4807e40", + "9174597bb1b45793f592a4729e5d64dda4807e40", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", + "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", + "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "5a0d1c44cfea8331bc0ad3d9f6236da4985da80a", + "5a0d1c44cfea8331bc0ad3d9f6236da4985da80a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ - "9174597bb1b45793f592a4729e5d64dda4807e40", + "9174597bb1b45793f592a4729e5d64dda4807e40", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", + "03ed4974e1d5f6d627b8ff3e11960721e9b7c926", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "74d050c01e26d78297a14755e1cfe31ddec3e932", + "74d050c01e26d78297a14755e1cfe31ddec3e932", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ - "c683f39386a67d83d1ac89124e906659e1c27b3e", + "c683f39386a67d83d1ac89124e906659e1c27b3e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "9a83e45fc9b4d84bbc6844398051fcd8246f840e", + "9a83e45fc9b4d84bbc6844398051fcd8246f840e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "9a83e45fc9b4d84bbc6844398051fcd8246f840e", + "9a83e45fc9b4d84bbc6844398051fcd8246f840e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "74d050c01e26d78297a14755e1cfe31ddec3e932", + "74d050c01e26d78297a14755e1cfe31ddec3e932", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ - "c683f39386a67d83d1ac89124e906659e1c27b3e", + "c683f39386a67d83d1ac89124e906659e1c27b3e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "9a83e45fc9b4d84bbc6844398051fcd8246f840e", + "9a83e45fc9b4d84bbc6844398051fcd8246f840e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html.headers": [ - "9ce1de38843b358434a917f1c992c99d0c7fd9fb", + "9ce1de38843b358434a917f1c992c99d0c7fd9fb", "support" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "8c1dd13f7d3744158b5096eeb6fecad281aa4d68", + "8c1dd13f7d3744158b5096eeb6fecad281aa4d68", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "e0bdbf2e73871ee4e37ce56c9cb8008ee3a4486c", + "e0bdbf2e73871ee4e37ce56c9cb8008ee3a4486c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "9ec4e2eee2521de4ad43908618e0eba38deecc70", + "9ec4e2eee2521de4ad43908618e0eba38deecc70", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "e9d372c691d9565c2ebcfa35012b0ea1215437c4", + "e9d372c691d9565c2ebcfa35012b0ea1215437c4", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "6c2006cc43509448aea8182200dc2335956c9afe", + "6c2006cc43509448aea8182200dc2335956c9afe", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "06b463b95bfbe77b4e1001e9f97cd870be9eb322", + "06b463b95bfbe77b4e1001e9f97cd870be9eb322", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "195ae61fb6e8ae4f78b4dea688992b995db46627", + "195ae61fb6e8ae4f78b4dea688992b995db46627", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "d375decad327768e6c97d07101987d0cd9e8e2ab", + "d375decad327768e6c97d07101987d0cd9e8e2ab", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "c43503d853a7f04f76a0ad5bf91883a97ead22b5", + "c43503d853a7f04f76a0ad5bf91883a97ead22b5", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "ca798ce4de98a3dce1a9d8c672ef3f280c6dca93", + "ca798ce4de98a3dce1a9d8c672ef3f280c6dca93", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "cc4e0dfcc6174c92910175e09ccf717924114ae6", + "cc4e0dfcc6174c92910175e09ccf717924114ae6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "d46ea96f809478795bdf6cb1d0ece40e31455594", + "d46ea96f809478795bdf6cb1d0ece40e31455594", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "209789908e4332ee7ec1d91093e7d1426b5b0eea", + "209789908e4332ee7ec1d91093e7d1426b5b0eea", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "3d1fb44d2dd206b96633fb3d05731b162554ed14", + "3d1fb44d2dd206b96633fb3d05731b162554ed14", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "d4765f110bff5ef69286a3ef6fd7b447ef22f159", + "d4765f110bff5ef69286a3ef6fd7b447ef22f159", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "370fc2a4c309167c4cff0da4e84492de6dcbd49f", + "370fc2a4c309167c4cff0da4e84492de6dcbd49f", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "b8f553a3b6b280a4e5ab07d1c395fff4f60288c6", + "b8f553a3b6b280a4e5ab07d1c395fff4f60288c6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "4f630bb76e81197c09d81e7f18cec4089470809a", + "4f630bb76e81197c09d81e7f18cec4089470809a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "fd290122d4a480c927eee537c7987795c7abc6fb", + "fd290122d4a480c927eee537c7987795c7abc6fb", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "b1d294625dfb81eb432c65444a169f2f11b6a646", + "b1d294625dfb81eb432c65444a169f2f11b6a646", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "0abec66abc59c4d74de333a846799cd95edbd7ed", + "0abec66abc59c4d74de333a846799cd95edbd7ed", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "da74e85bf420e21f934d390b3637ec3f6ea538df", + "da74e85bf420e21f934d390b3637ec3f6ea538df", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "649bfc88c4e4115be9e354caf03c0faa9c424299", + "649bfc88c4e4115be9e354caf03c0faa9c424299", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "01cc6d616f21649295e980128d21db98fba0ad6d", + "01cc6d616f21649295e980128d21db98fba0ad6d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "3ed141c6b260cadd3dea97c565ddcc8224bc3dcd", + "3ed141c6b260cadd3dea97c565ddcc8224bc3dcd", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "15e47a4d8c0e77db698f1ac30bca379fcf7b688c", + "15e47a4d8c0e77db698f1ac30bca379fcf7b688c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "e0247c849e696891cc76616acbadc111eb13a462", + "e0247c849e696891cc76616acbadc111eb13a462", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "dad14a2029f0add4fb2f151ca20bc08a064e530a", + "dad14a2029f0add4fb2f151ca20bc08a064e530a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ - "21ba011276007b5008bd2d3f20b677ff8fd41aa0", + "21ba011276007b5008bd2d3f20b677ff8fd41aa0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", + "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", + "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "dad14a2029f0add4fb2f151ca20bc08a064e530a", + "dad14a2029f0add4fb2f151ca20bc08a064e530a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ - "21ba011276007b5008bd2d3f20b677ff8fd41aa0", + "21ba011276007b5008bd2d3f20b677ff8fd41aa0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", + "4551f14155d0e14f8356ee3f7d4a353bf35e1e99", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "adfc443855b719389c5bf1be264e59429f5bb97a", + "adfc443855b719389c5bf1be264e59429f5bb97a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ - "b93ac7af744c6153b31bf643e3ee25af6b90c55a", + "b93ac7af744c6153b31bf643e3ee25af6b90c55a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "939a4da80c2ecedaca35822b983b53bb52d80f4e", + "939a4da80c2ecedaca35822b983b53bb52d80f4e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "939a4da80c2ecedaca35822b983b53bb52d80f4e", + "939a4da80c2ecedaca35822b983b53bb52d80f4e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "adfc443855b719389c5bf1be264e59429f5bb97a", + "adfc443855b719389c5bf1be264e59429f5bb97a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ - "b93ac7af744c6153b31bf643e3ee25af6b90c55a", + "b93ac7af744c6153b31bf643e3ee25af6b90c55a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "939a4da80c2ecedaca35822b983b53bb52d80f4e", + "939a4da80c2ecedaca35822b983b53bb52d80f4e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "e69f8b21f3677a10ad0dcc74ff4b7a66228f3537", + "e69f8b21f3677a10ad0dcc74ff4b7a66228f3537", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ - "7b6f1711589612aa5da344055f69623cdca0d03e", + "7b6f1711589612aa5da344055f69623cdca0d03e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "ef84dbb247260e556c72a238636c893f41718ea3", + "ef84dbb247260e556c72a238636c893f41718ea3", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "ef84dbb247260e556c72a238636c893f41718ea3", + "ef84dbb247260e556c72a238636c893f41718ea3", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "e69f8b21f3677a10ad0dcc74ff4b7a66228f3537", + "e69f8b21f3677a10ad0dcc74ff4b7a66228f3537", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ - "7b6f1711589612aa5da344055f69623cdca0d03e", + "7b6f1711589612aa5da344055f69623cdca0d03e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-csp/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "ef84dbb247260e556c72a238636c893f41718ea3", + "ef84dbb247260e556c72a238636c893f41718ea3", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "7a0f11781f6a228295ffd4e46b731bbff4bc2a67", + "7a0f11781f6a228295ffd4e46b731bbff4bc2a67", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "ea68bc8d36042ad2d6ab6b1cdc1bdf83b0eabe54", + "ea68bc8d36042ad2d6ab6b1cdc1bdf83b0eabe54", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "4fb42c82c17ff9da22e4012963d656e9f2646bdc", + "4fb42c82c17ff9da22e4012963d656e9f2646bdc", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "6029c0f43d827a95f5a24307eec5982dadb1595d", + "6029c0f43d827a95f5a24307eec5982dadb1595d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "175881f7ee96d01a84fe5779a3912f49ee084d9d", + "175881f7ee96d01a84fe5779a3912f49ee084d9d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "6f44d2fce1f38b60710cd014f96ae7e72d2c7980", + "6f44d2fce1f38b60710cd014f96ae7e72d2c7980", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "029f24397e07f4f17b75e1fe09f2528f7d2a7a0f", + "029f24397e07f4f17b75e1fe09f2528f7d2a7a0f", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "acec6ab695e14a87daf535eaab6f3673436035f7", + "acec6ab695e14a87daf535eaab6f3673436035f7", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "6ad06932882b5de20721e24fddda7ef5a6cef47f", + "6ad06932882b5de20721e24fddda7ef5a6cef47f", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "73e4981835c3bfb0a71b33e4e6e80e2071bd77e0", + "73e4981835c3bfb0a71b33e4e6e80e2071bd77e0", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "70827af78c95c458f101f4f5f938b856956f97cd", + "70827af78c95c458f101f4f5f938b856956f97cd", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "00460d2b158d4ea2f540b68c439093b25590034a", + "00460d2b158d4ea2f540b68c439093b25590034a", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "139d39c5a3bed3de14ab6871d3e00c36ae175e0b", + "139d39c5a3bed3de14ab6871d3e00c36ae175e0b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "680690fdf2b080ff327e6a2544dc888e1896ad5b", + "680690fdf2b080ff327e6a2544dc888e1896ad5b", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "81356744fc0f38ad325a1627103745ece5da2d0e", + "81356744fc0f38ad325a1627103745ece5da2d0e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "8d9ca03da9495ab892740e7fedf6912c5bcde311", + "8d9ca03da9495ab892740e7fedf6912c5bcde311", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "2d2e433b478e13fb7aea626149a12e4f3f43c7cf", + "2d2e433b478e13fb7aea626149a12e4f3f43c7cf", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "aa5660434e429e270564a1edde95fa4437a2f0a2", + "aa5660434e429e270564a1edde95fa4437a2f0a2", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "f77f66508afc2ad07233d4fb4be6ce2a56c37603", + "f77f66508afc2ad07233d4fb4be6ce2a56c37603", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "eb5163656c12277be71447c1d75678fed1d2c2ca", + "eb5163656c12277be71447c1d75678fed1d2c2ca", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "079b162006c9fd0338fe146619632ac6b7c22423", + "079b162006c9fd0338fe146619632ac6b7c22423", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "d15535951d8dddc6a3d1d4b4e33b32b945694c02", + "d15535951d8dddc6a3d1d4b4e33b32b945694c02", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "f000678eaed28e2bb9762b61d8df57c80e3b2b71", + "f000678eaed28e2bb9762b61d8df57c80e3b2b71", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "655c90d9b8ee5f7bcb4a8f6b4d721556e09597fa", + "655c90d9b8ee5f7bcb4a8f6b4d721556e09597fa", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "9503e39076a094b5fb81d3dd6a7a520dceb99533", + "9503e39076a094b5fb81d3dd6a7a520dceb99533", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "61af6eef70ef79f61942a981e8b03ebf99d26dc5", + "61af6eef70ef79f61942a981e8b03ebf99d26dc5", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "d802bf4d12f4fc5a51746369eb659b5855cd72bf", + "d802bf4d12f4fc5a51746369eb659b5855cd72bf", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "0016765809ebd99cb2c1e2b050a07379fed4903c", + "0016765809ebd99cb2c1e2b050a07379fed4903c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.no-redirect.http.html": [ - "eebede0c192cc67a90fde688a6ed0ae0fbcd8e0d", + "eebede0c192cc67a90fde688a6ed0ae0fbcd8e0d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", + "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", + "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "0016765809ebd99cb2c1e2b050a07379fed4903c", + "0016765809ebd99cb2c1e2b050a07379fed4903c", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.no-redirect.http.html": [ - "eebede0c192cc67a90fde688a6ed0ae0fbcd8e0d", + "eebede0c192cc67a90fde688a6ed0ae0fbcd8e0d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", + "1a49a2edfa87d75d92d7ae6f983ef0cf3479f5b6", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "d85104a812c8721bc017b7c75c3efe3ca8b59064", + "d85104a812c8721bc017b7c75c3efe3ca8b59064", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html": [ - "21ea51aa950516ecc48d9aa0a62c751664650e10", + "21ea51aa950516ecc48d9aa0a62c751664650e10", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", + "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", + "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "d85104a812c8721bc017b7c75c3efe3ca8b59064", + "d85104a812c8721bc017b7c75c3efe3ca8b59064", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html": [ - "21ea51aa950516ecc48d9aa0a62c751664650e10", + "21ea51aa950516ecc48d9aa0a62c751664650e10", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", + "551d6a89ba7b183d24ff2007602070f5fcdcfe2e", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.keep-origin-redirect.http.html": [ - "d5bc828da42c761af253e2dfee751218ede591fa", + "d5bc828da42c761af253e2dfee751218ede591fa", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.no-redirect.http.html": [ - "f6adc1f3854cab0301024b949e4042a857d594d2", + "f6adc1f3854cab0301024b949e4042a857d594d2", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-downgrade.swap-origin-redirect.http.html": [ - "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", + "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", + "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.keep-origin-redirect.http.html": [ - "d5bc828da42c761af253e2dfee751218ede591fa", + "d5bc828da42c761af253e2dfee751218ede591fa", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.no-redirect.http.html": [ - "f6adc1f3854cab0301024b949e4042a857d594d2", + "f6adc1f3854cab0301024b949e4042a857d594d2", "testharness" - ], + ], "mozilla/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-upgrade.swap-origin-redirect.http.html": [ - "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", + "b42a5b1b3fd07f4ddb0f6d37040413977d9af40d", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "f71a89d5a067f8daddd365d9a5e49f1b76a6014e", + "f71a89d5a067f8daddd365d9a5e49f1b76a6014e", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "ab50e53d7da73b1e356a1d269fbd932902b8b39e", + "ab50e53d7da73b1e356a1d269fbd932902b8b39e", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "6285bb9dd0e60a0190031d90e345ebc61905fe6c", + "6285bb9dd0e60a0190031d90e345ebc61905fe6c", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "17f7d65d9e846c9f47c62980f7cc62e4564b3564", + "17f7d65d9e846c9f47c62980f7cc62e4564b3564", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "6a3dfd52dab580ba4c6ba59f9fa66c8b7ce04852", + "6a3dfd52dab580ba4c6ba59f9fa66c8b7ce04852", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "48402b0d783ee76e2c2a5351810b433e6f6c3590", + "48402b0d783ee76e2c2a5351810b433e6f6c3590", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "8eeeb208a9b3a564c40f9b176ae5a774206447aa", + "8eeeb208a9b3a564c40f9b176ae5a774206447aa", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "39867d69625bab84828d6feb89e3118744796142", + "39867d69625bab84828d6feb89e3118744796142", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "24f8a4711e891411ae963c99a286f0e199b4c7fe", + "24f8a4711e891411ae963c99a286f0e199b4c7fe", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "15ba583677c74ae0f37b2750776fe2e205a3d48d", + "15ba583677c74ae0f37b2750776fe2e205a3d48d", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "4278df3afccc91edb8642dd915be0425f395cfc2", + "4278df3afccc91edb8642dd915be0425f395cfc2", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "866bf28e395e1ba394c9b6472b2eedc5f25d51fb", + "866bf28e395e1ba394c9b6472b2eedc5f25d51fb", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "4f0e28ccf1ba07879dabadf5a295486f195cd30e", + "4f0e28ccf1ba07879dabadf5a295486f195cd30e", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "8909d7100e209b39eeddf87fe6d269ab81b101d9", + "8909d7100e209b39eeddf87fe6d269ab81b101d9", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "aa063b1769ac953282b1c1d8cda6c53570d6432b", + "aa063b1769ac953282b1c1d8cda6c53570d6432b", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "62b2bf6a363a234c9fef41098e270f0168e5f35d", + "62b2bf6a363a234c9fef41098e270f0168e5f35d", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "6278b2c790a3a9823758dcba2f226ac36fce59f2", + "6278b2c790a3a9823758dcba2f226ac36fce59f2", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "8bbe3d49fb901c0354d52e50199ce5b735c2c520", + "8bbe3d49fb901c0354d52e50199ce5b735c2c520", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "47bf32f779642e302bdda70893b6d170e8a0d140", + "47bf32f779642e302bdda70893b6d170e8a0d140", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "ba7f97463b8929250e68febb95cb4ba9149c2986", + "ba7f97463b8929250e68febb95cb4ba9149c2986", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "89407a8fc4049d205201dbb10d5669eeb63c1379", + "89407a8fc4049d205201dbb10d5669eeb63c1379", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "adb4ce3bdaa7cf0278c46cde8fed8b2fb0baa0e9", + "adb4ce3bdaa7cf0278c46cde8fed8b2fb0baa0e9", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "3dbea6f9f8909b91b1184d9e25f0d60b4bed59c3", + "3dbea6f9f8909b91b1184d9e25f0d60b4bed59c3", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "ade9eac85c469550c1bb55381ab212d11d153599", + "ade9eac85c469550c1bb55381ab212d11d153599", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "8fbec3179045263aec066b93ac4e1c1f8c5436d5", + "8fbec3179045263aec066b93ac4e1c1f8c5436d5", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "91012ed10e93e4347229aa32073e2211c9be5b0a", + "91012ed10e93e4347229aa32073e2211c9be5b0a", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "e435078f97fb9b2e025c1030b7bcb5784fb6cc5b", + "e435078f97fb9b2e025c1030b7bcb5784fb6cc5b", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "e53ed40a362a32f76e29c483aa7bd5fc0f0f0a2b", + "e53ed40a362a32f76e29c483aa7bd5fc0f0f0a2b", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "cec1e3241e7ff1fa9280ab5ed5249c41ae9d4df9", + "cec1e3241e7ff1fa9280ab5ed5249c41ae9d4df9", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "2b501bc0e2530e783e74351c58728988b0b740af", + "2b501bc0e2530e783e74351c58728988b0b740af", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "8378a40426d8eb459a4cb6dca3c59382394c0663", + "8378a40426d8eb459a4cb6dca3c59382394c0663", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "d7e2b162ff0663ceb885c414c4286b84965fb87b", + "d7e2b162ff0663ceb885c414c4286b84965fb87b", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "b43eddfd41c3fef787bcb97c62e4787828e5ea8f", + "b43eddfd41c3fef787bcb97c62e4787828e5ea8f", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "1fcc4672fc4ee09e4cd80247f8d01682994707b7", + "1fcc4672fc4ee09e4cd80247f8d01682994707b7", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "aa6afba6a80f662e5a09258299ded391441825e2", + "aa6afba6a80f662e5a09258299ded391441825e2", "testharness" - ], + ], "mozilla/referrer-policy/origin/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "a4aebd5b6c02abeaa5900d8fcbca1ec225671ca1", + "a4aebd5b6c02abeaa5900d8fcbca1ec225671ca1", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "b3f3fa89f00a738bbfb752618c56733e43960471", + "b3f3fa89f00a738bbfb752618c56733e43960471", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "ede8337afdc547cbe5a90dd870792737d37ef32c", + "ede8337afdc547cbe5a90dd870792737d37ef32c", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "fee053bbaa0e83e7df99baf0cec436fdc36758ce", + "fee053bbaa0e83e7df99baf0cec436fdc36758ce", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "d51a67fecb170088edae1d9c4a0c6a589a6081a9", + "d51a67fecb170088edae1d9c4a0c6a589a6081a9", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "93bb6427144b04781227b6bf222f1101318dc74c", + "93bb6427144b04781227b6bf222f1101318dc74c", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "b96ed59303b2255abbc1d6e3697b70adaffd33a0", + "b96ed59303b2255abbc1d6e3697b70adaffd33a0", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "7978befcbb4fbbb06780d555b30c87b00dac1dcd", + "7978befcbb4fbbb06780d555b30c87b00dac1dcd", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "83107c22a9745e396c95e8d5e2d4db48bbeb3403", + "83107c22a9745e396c95e8d5e2d4db48bbeb3403", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "15415806924f844bf0fcafe4c77bfbd15f8f5403", + "15415806924f844bf0fcafe4c77bfbd15f8f5403", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "bfa539628c2c408bddcb6ebd386808e73caf0a13", + "bfa539628c2c408bddcb6ebd386808e73caf0a13", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "0bf5e85e7f123bff6a3b8c7df3a884098fbb9e8a", + "0bf5e85e7f123bff6a3b8c7df3a884098fbb9e8a", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "d21adb121870f9277cb04589d977a3a01ee25a5c", + "d21adb121870f9277cb04589d977a3a01ee25a5c", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "ba07e73e1ae651ce66bc8d84b3f3f21f3fe6fa32", + "ba07e73e1ae651ce66bc8d84b3f3f21f3fe6fa32", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "b1d4a3a6c2a11be76a75c5aa136012e6df084aa8", + "b1d4a3a6c2a11be76a75c5aa136012e6df084aa8", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "17a3af34f5d0c4fb3fabf1b92d8c00fc0761f66c", + "17a3af34f5d0c4fb3fabf1b92d8c00fc0761f66c", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "8440f01adebcbdf977b3212b8ba9e49a0708af59", + "8440f01adebcbdf977b3212b8ba9e49a0708af59", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "d8eed570f423e57d7a68c6b5c6b04c47322f5918", + "d8eed570f423e57d7a68c6b5c6b04c47322f5918", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "313554bb642ff664ffd7e5edc7f6c5e3711543a0", + "313554bb642ff664ffd7e5edc7f6c5e3711543a0", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "5215d602a823f6fd7e7f397dc71e1314e3fcd92f", + "5215d602a823f6fd7e7f397dc71e1314e3fcd92f", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "7ec48982bf71fd6211a25e6645b2a91d3cdf1a82", + "7ec48982bf71fd6211a25e6645b2a91d3cdf1a82", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "caefa979a8fd0f56477d0b3e0299adbc5dcfc75d", + "caefa979a8fd0f56477d0b3e0299adbc5dcfc75d", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "1d97caffff521f9ab9f393efa3a06ca5ec1e4761", + "1d97caffff521f9ab9f393efa3a06ca5ec1e4761", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "5e52c0071af3e0e6de261ba47e60406fcc5dd20e", + "5e52c0071af3e0e6de261ba47e60406fcc5dd20e", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "aebc77f406016043d2de649cfb0098ca1281ebb8", + "aebc77f406016043d2de649cfb0098ca1281ebb8", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "431959cedafcfc38f4b842a68ba0bf427dc251da", + "431959cedafcfc38f4b842a68ba0bf427dc251da", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "c9d7de85f5b05aabae9e719e1272e77adfb08a61", + "c9d7de85f5b05aabae9e719e1272e77adfb08a61", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "8a8c495f79af35755db60796596a1cba437a1abc", + "8a8c495f79af35755db60796596a1cba437a1abc", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "88f33debae8f1a09beb9e508367bcb970d7d65a5", + "88f33debae8f1a09beb9e508367bcb970d7d65a5", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "587dec2eed431156106fdf2818d6a11553e6fdd4", + "587dec2eed431156106fdf2818d6a11553e6fdd4", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "6e4975ddd1cb8afb3079d82898ca12427d6cbdb2", + "6e4975ddd1cb8afb3079d82898ca12427d6cbdb2", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "d9521c9f3bd9b8c5a8c919bf701e918142c77859", + "d9521c9f3bd9b8c5a8c919bf701e918142c77859", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "9650720647208d48dcdf4dfb823f77053d31f333", + "9650720647208d48dcdf4dfb823f77053d31f333", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "08aa2fc9e040ce653811569de28a800430aab6f5", + "08aa2fc9e040ce653811569de28a800430aab6f5", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "19771b222b917632519ac068e83bf6d9945ab3df", + "19771b222b917632519ac068e83bf6d9945ab3df", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "82db2bf5149a91cf0a4407ad3c1fb01da125e04d", + "82db2bf5149a91cf0a4407ad3c1fb01da125e04d", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "ad2ac0a5cc194c56fe4120b16f1405516c27c2ab", + "ad2ac0a5cc194c56fe4120b16f1405516c27c2ab", "testharness" - ], + ], "mozilla/referrer-policy/origin/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "306a53536ac57625957da5cf4ff55e4124276617", + "306a53536ac57625957da5cf4ff55e4124276617", "support" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "0331c47034aa371bc82e041b5b9aeb24130dc974", + "0331c47034aa371bc82e041b5b9aeb24130dc974", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "acf164cb0c84dc24f1d352db3550c41ffdece96c", + "acf164cb0c84dc24f1d352db3550c41ffdece96c", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "e32860d57a99272cde8f663ef64f4cf78ab52369", + "e32860d57a99272cde8f663ef64f4cf78ab52369", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "8c7863432434e5aba5cd899854aeb8cf1544d352", + "8c7863432434e5aba5cd899854aeb8cf1544d352", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "db83beb26b0e66f94e827852b8e2c0c5baa72163", + "db83beb26b0e66f94e827852b8e2c0c5baa72163", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "4fbcd00200bde29d6a1b1fe1e79a2abe4e586b76", + "4fbcd00200bde29d6a1b1fe1e79a2abe4e586b76", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "25321730bd1725d3591f819daab4fea37dc0f82e", + "25321730bd1725d3591f819daab4fea37dc0f82e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "f0a0559e9daef343400714cb969e5840761cea82", + "f0a0559e9daef343400714cb969e5840761cea82", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "7b9dce7cb56dae18f3f2cdb738b47a754934e308", + "7b9dce7cb56dae18f3f2cdb738b47a754934e308", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "d601be6ac9e6822a07fe55dec7ff8a43efdac3f2", + "d601be6ac9e6822a07fe55dec7ff8a43efdac3f2", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "0d4e85774b48b22fdb26b001970745d4b9a0d281", + "0d4e85774b48b22fdb26b001970745d4b9a0d281", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "af0ebfff8652ca2c5b8b7d1fa9d40c1ae24f2a9d", + "af0ebfff8652ca2c5b8b7d1fa9d40c1ae24f2a9d", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "be79f6d384eaab6eded689026a600df2c2754588", + "be79f6d384eaab6eded689026a600df2c2754588", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "2802fb27b509ad803759141c18181016eb5a7d29", + "2802fb27b509ad803759141c18181016eb5a7d29", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "a5cda82030e0ec3191ad36a991d1dd9883a3680e", + "a5cda82030e0ec3191ad36a991d1dd9883a3680e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "85f8ad04e6c5f3d8397b1ead37c488722776654c", + "85f8ad04e6c5f3d8397b1ead37c488722776654c", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "b4faa1d016430f8663824cf15d2290adf4064649", + "b4faa1d016430f8663824cf15d2290adf4064649", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "1fe71db41ff2a4c65bd9c867b16aaa696f73b6e6", + "1fe71db41ff2a4c65bd9c867b16aaa696f73b6e6", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "20031b40fc843f36f10517f5dff6b8ae833dc739", + "20031b40fc843f36f10517f5dff6b8ae833dc739", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "fd87b73e53d7763fe512b6d2345e848422a66b11", + "fd87b73e53d7763fe512b6d2345e848422a66b11", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "37477fa39d438303f4ac9b87463ed114685b7066", + "37477fa39d438303f4ac9b87463ed114685b7066", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "bd97c5a135d87bab977ea6d546f1353dc812c8cb", + "bd97c5a135d87bab977ea6d546f1353dc812c8cb", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "7c49eef0f93a3bf07f4e75cbfb7236535dad5052", + "7c49eef0f93a3bf07f4e75cbfb7236535dad5052", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "47e75f0f8762c50274781a170cef9cefebdcf619", + "47e75f0f8762c50274781a170cef9cefebdcf619", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "e949108885b68591b9572d2fe199e7ed0f0f4ac7", + "e949108885b68591b9572d2fe199e7ed0f0f4ac7", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "665d255ffac8b83317d46641c10efe63cb6c9e1a", + "665d255ffac8b83317d46641c10efe63cb6c9e1a", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "ccccda10faa91abad6b7d1518c4d9e60c4045a71", + "ccccda10faa91abad6b7d1518c4d9e60c4045a71", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "5a225b0e49732d797e037afa8f110e8566ba4c64", + "5a225b0e49732d797e037afa8f110e8566ba4c64", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "3c3451162c0bea8569866b4cd770133a4a8f8607", + "3c3451162c0bea8569866b4cd770133a4a8f8607", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "9667c5ac9f05648c9367e8d37adf6fffbbb342cc", + "9667c5ac9f05648c9367e8d37adf6fffbbb342cc", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "7e32c08736d8304ee6d306cf26f7bccac291000d", + "7e32c08736d8304ee6d306cf26f7bccac291000d", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "b05801a3a7c16dde0ddaca1d0acd6a8f97c497a4", + "b05801a3a7c16dde0ddaca1d0acd6a8f97c497a4", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "b05a63574a0d90238623e114ae74e3ca45f7a2fb", + "b05a63574a0d90238623e114ae74e3ca45f7a2fb", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "b06ffffe0e55d26532a9dc29b355c3332476d2a4", + "b06ffffe0e55d26532a9dc29b355c3332476d2a4", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "ac2c965196c054e9cfc03137b9c34c283e849439", + "ac2c965196c054e9cfc03137b9c34c283e849439", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "e8ed2b5589e174bf7b09b857772bc812d05f8ce4", + "e8ed2b5589e174bf7b09b857772bc812d05f8ce4", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "20d18f012228cc026027dcabc511ef1d3e4fcf79", + "20d18f012228cc026027dcabc511ef1d3e4fcf79", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "49ad6dcb1035a11a66b1d51746d3a9535d41f755", + "49ad6dcb1035a11a66b1d51746d3a9535d41f755", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "1329e58f725030ecacc3faadfdaa642fd657ff0c", + "1329e58f725030ecacc3faadfdaa642fd657ff0c", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "422ade7709e589db10dfece5d8714f9e78bbf1a3", + "422ade7709e589db10dfece5d8714f9e78bbf1a3", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "9d5979cef4629968c7eec053a11a297d9433da5c", + "9d5979cef4629968c7eec053a11a297d9433da5c", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "b9f39e7b6b7cae7e909618d1694dec300f816406", + "b9f39e7b6b7cae7e909618d1694dec300f816406", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "7e015b859d279cc3db41afec6d03c11fdc212b5b", + "7e015b859d279cc3db41afec6d03c11fdc212b5b", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "e8313d85b7328e9fa8484d52bdcd814eaed53dfa", + "e8313d85b7328e9fa8484d52bdcd814eaed53dfa", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "116b46faaa444f46b4b8d7681dcd3714a1a68d78", + "116b46faaa444f46b4b8d7681dcd3714a1a68d78", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "ca78ee5582842cc836f56ef6ede75aa94d43748e", + "ca78ee5582842cc836f56ef6ede75aa94d43748e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "eda8846df09d76829d2d7d1707e95237ce04d254", + "eda8846df09d76829d2d7d1707e95237ce04d254", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "02ad3f381293b09819fbfa92f25495c5792c3934", + "02ad3f381293b09819fbfa92f25495c5792c3934", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "d56184246f4532dd872d0e5d11d5bd9bd754d107", + "d56184246f4532dd872d0e5d11d5bd9bd754d107", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "27864e68710f5adc65aedb94403ac752a07e2d19", + "27864e68710f5adc65aedb94403ac752a07e2d19", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "3c7b8573e7e264ab703ae528a023ae20fc3049cb", + "3c7b8573e7e264ab703ae528a023ae20fc3049cb", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "073526e660977babb3e8dabbb75cf739228dc3ab", + "073526e660977babb3e8dabbb75cf739228dc3ab", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "441778a4ca07a20215d43463efcb4d0b994f36ac", + "441778a4ca07a20215d43463efcb4d0b994f36ac", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "573661e0e09fee34e7d900db36dd7c60cbbdd3d9", + "573661e0e09fee34e7d900db36dd7c60cbbdd3d9", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "0076ed61b34ad55447dd64d3a5f81a1eda67e07e", + "0076ed61b34ad55447dd64d3a5f81a1eda67e07e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "ac19d40181d211da4ca40c2094341d9395c1dd6e", + "ac19d40181d211da4ca40c2094341d9395c1dd6e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "b3527924da8f616c646155ea186658447b9ddc13", + "b3527924da8f616c646155ea186658447b9ddc13", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "1de21553f52936814a835fcf03d532b95c850fc3", + "1de21553f52936814a835fcf03d532b95c850fc3", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "823bea3dcc722e3c686294a07a31a9bbb4e6692b", + "823bea3dcc722e3c686294a07a31a9bbb4e6692b", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "f3938f34659406187fecc56b7ac73fbf3334d480", + "f3938f34659406187fecc56b7ac73fbf3334d480", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "323fef9651895737e85c51e20ad07629a952b5c2", + "323fef9651895737e85c51e20ad07629a952b5c2", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "44e3e9168c415e679d48b571222d50a3688c9487", + "44e3e9168c415e679d48b571222d50a3688c9487", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "ae49ce7fe4be3b4f76f366c1775fa9bab822f3e5", + "ae49ce7fe4be3b4f76f366c1775fa9bab822f3e5", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "569b935c6e6b8e9516203d4c3efa9a075e1e8dbd", + "569b935c6e6b8e9516203d4c3efa9a075e1e8dbd", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "d519377294d7c822b794e325daffcb5f5a233fee", + "d519377294d7c822b794e325daffcb5f5a233fee", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "1ff731980876e305f8fbdc529b888ea8ffbab20d", + "1ff731980876e305f8fbdc529b888ea8ffbab20d", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "669437c23bd9e4181a520d8388dc0bf18a6be2c4", + "669437c23bd9e4181a520d8388dc0bf18a6be2c4", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "8ba60eeba2324ef1645e210cdd1eb65906f01c7e", + "8ba60eeba2324ef1645e210cdd1eb65906f01c7e", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "01bb9959d6ef74957aed63c0d5e019afc11c8045", + "01bb9959d6ef74957aed63c0d5e019afc11c8045", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "e52899ab422e9f14372ce8cbe3b8554000b17eae", + "e52899ab422e9f14372ce8cbe3b8554000b17eae", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "c62cdd6580444accfba571d9e4bd8886558fdc72", + "c62cdd6580444accfba571d9e4bd8886558fdc72", "testharness" - ], + ], "mozilla/referrer-policy/origin/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "594b8ef53e7bf43c37c4bba947dfd40a21419500", + "594b8ef53e7bf43c37c4bba947dfd40a21419500", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "64c3e513117a199b87a1987c05f5b743db951524", + "64c3e513117a199b87a1987c05f5b743db951524", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "07b3f14fc1cd02e6ed95e9997a8278b709298763", + "07b3f14fc1cd02e6ed95e9997a8278b709298763", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "f5330d6d5d596d756138f21a986fc6b524b94980", + "f5330d6d5d596d756138f21a986fc6b524b94980", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "312276b046535930ad5310ddd78e0a54aa33261b", + "312276b046535930ad5310ddd78e0a54aa33261b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "3fe953a3bc598e2f0ff75175ae3162f96aea6473", + "3fe953a3bc598e2f0ff75175ae3162f96aea6473", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "f7c408785aca740899d3ca292697691619922bef", + "f7c408785aca740899d3ca292697691619922bef", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "37fd0c7e59606a4abab87deeacada6f8dc5a1174", + "37fd0c7e59606a4abab87deeacada6f8dc5a1174", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "20a569d073ccc9b04ca938f3daa00a76bdc96fba", + "20a569d073ccc9b04ca938f3daa00a76bdc96fba", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "33143fc49648595b9dd3d51c7145fe942423e8d3", + "33143fc49648595b9dd3d51c7145fe942423e8d3", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "630f675cf67937852b81542b8a1b1e8ef437f2da", + "630f675cf67937852b81542b8a1b1e8ef437f2da", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "3aff8cafb678cfdd4cf7e4ea2f452619e5806285", + "3aff8cafb678cfdd4cf7e4ea2f452619e5806285", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "9bae615f2e80f912633d8ccf0437f847b2c201b9", + "9bae615f2e80f912633d8ccf0437f847b2c201b9", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "fbccbc7a3b56774ee0d2533b4d3bbc1d0971fb51", + "fbccbc7a3b56774ee0d2533b4d3bbc1d0971fb51", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "a35c040df051f31273340085e13f1bec291937f4", + "a35c040df051f31273340085e13f1bec291937f4", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "0955920c15c3e6e04af5d6d09cbbe6a0ed80d436", + "0955920c15c3e6e04af5d6d09cbbe6a0ed80d436", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "b940da776190799c1101a43e59381a27f854aabe", + "b940da776190799c1101a43e59381a27f854aabe", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "ef42cade596692108ea093fdc7a0d8f59df9011a", + "ef42cade596692108ea093fdc7a0d8f59df9011a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "e7e817356d60ba14f2ed032598668f7cdf7c5735", + "e7e817356d60ba14f2ed032598668f7cdf7c5735", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "f15ae6275cf38d1922b5a2fa1843fe7082054ec5", + "f15ae6275cf38d1922b5a2fa1843fe7082054ec5", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "6dc602b5fa73e8e76aea10d65ba1a54384af37d4", + "6dc602b5fa73e8e76aea10d65ba1a54384af37d4", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "3713c113ed39c8f76eb885888f43d0736fbb0987", + "3713c113ed39c8f76eb885888f43d0736fbb0987", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "9ce9b038cbc470e099e8fc9982620ebed7684db0", + "9ce9b038cbc470e099e8fc9982620ebed7684db0", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "5803a58ff636d22ba127e52a5e5d6a062ab40393", + "5803a58ff636d22ba127e52a5e5d6a062ab40393", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "d6c1ed5300c49eefae38c16d9da3d039243a5746", + "d6c1ed5300c49eefae38c16d9da3d039243a5746", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "6c5d363a78aeaa3e2707d660cd3d07c0e49a549e", + "6c5d363a78aeaa3e2707d660cd3d07c0e49a549e", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "db4a1fd200fa77e94bae01ce6c46a3be794fa35c", + "db4a1fd200fa77e94bae01ce6c46a3be794fa35c", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "ecc61c83f9e4a0676413cb4a9d38a7795ee60ecd", + "ecc61c83f9e4a0676413cb4a9d38a7795ee60ecd", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "f55b88eb3bc34dcd8d60f3cd930e1fdd179fad2b", + "f55b88eb3bc34dcd8d60f3cd930e1fdd179fad2b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "d7f136b8ef935d558eb466358c00405eb254e2fb", + "d7f136b8ef935d558eb466358c00405eb254e2fb", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/attr-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "8503d94458ddde138529133a409bc91d8601935b", + "8503d94458ddde138529133a409bc91d8601935b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "a1a7ea824b978c582e71ec7e0a0853213aa6e12a", + "a1a7ea824b978c582e71ec7e0a0853213aa6e12a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "19ba88b38975aec196c5e360bc6986bae1611749", + "19ba88b38975aec196c5e360bc6986bae1611749", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "9144d3bdd9b1866fd3e835a190e37f87f3a88b7f", + "9144d3bdd9b1866fd3e835a190e37f87f3a88b7f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "1656f802bdc6c06ff095899e51877334431d5ce5", + "1656f802bdc6c06ff095899e51877334431d5ce5", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "3f9e73b0f47d4500995ffcad0c6a0eb809b4f741", + "3f9e73b0f47d4500995ffcad0c6a0eb809b4f741", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "19902610e43ca0ff07b5f9c2d48f0bcfcf90d0ba", + "19902610e43ca0ff07b5f9c2d48f0bcfcf90d0ba", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "3ae0fc113f771c208c00bbe7438a548d78430422", + "3ae0fc113f771c208c00bbe7438a548d78430422", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "c6a25b099cdb09c5a817b5833138d24db90c8bf8", + "c6a25b099cdb09c5a817b5833138d24db90c8bf8", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "012454dff81cf6bf00996c3c37d185dae84ddf82", + "012454dff81cf6bf00996c3c37d185dae84ddf82", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "802b76c990daf5304d9b2752ed0fd1fd529a6173", + "802b76c990daf5304d9b2752ed0fd1fd529a6173", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "8b68bc2e7a0a7c011141021c2a2b52bdb1047203", + "8b68bc2e7a0a7c011141021c2a2b52bdb1047203", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "6808e0eeb25aaa57db7f1fd462b9ea19b49e567f", + "6808e0eeb25aaa57db7f1fd462b9ea19b49e567f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "334f788ff02527c5f50596629d35df870c8869b6", + "334f788ff02527c5f50596629d35df870c8869b6", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "f3935a8d01a4063b64d7a1a99b92ddf21b443a8b", + "f3935a8d01a4063b64d7a1a99b92ddf21b443a8b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "9a19f366a4ca186471370c1a9aee41d2b00b2d32", + "9a19f366a4ca186471370c1a9aee41d2b00b2d32", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "54a58f0657babf5aa67ed41c6ecc3341fc70b14b", + "54a58f0657babf5aa67ed41c6ecc3341fc70b14b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "973d442b22d37f215782a5fda395041ab0fedc6e", + "973d442b22d37f215782a5fda395041ab0fedc6e", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "db9e8f45bc31a2a4e7ac6d9927236f85d607e657", + "db9e8f45bc31a2a4e7ac6d9927236f85d607e657", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "24c16d859ff799bd785e639d047d0aa79a66ae10", + "24c16d859ff799bd785e639d047d0aa79a66ae10", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "54991a5baf28d54baa1eab805ba24f266d58657a", + "54991a5baf28d54baa1eab805ba24f266d58657a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "8f1e8a637941638ddbf4321af40ce929f9cce6d9", + "8f1e8a637941638ddbf4321af40ce929f9cce6d9", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "eae3e204605114641d8ce4c7a69bfef8baf0f823", + "eae3e204605114641d8ce4c7a69bfef8baf0f823", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "990ef33627832fca4a3edc7709fbfb8b4d8905c9", + "990ef33627832fca4a3edc7709fbfb8b4d8905c9", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "9fb89ff1955b9740c911dcf8fb978038eb008455", + "9fb89ff1955b9740c911dcf8fb978038eb008455", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "1a63a6bd5b0da9ab988365f660c9f4738b63aba6", + "1a63a6bd5b0da9ab988365f660c9f4738b63aba6", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "945ba27e398b3128ef893c993d7375d2fb39442f", + "945ba27e398b3128ef893c993d7375d2fb39442f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "3bb1fdabae367b9fcac800a29f656f135fa026c3", + "3bb1fdabae367b9fcac800a29f656f135fa026c3", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "47cf5944b6255a0c76bf42fca54abdefa2adfa24", + "47cf5944b6255a0c76bf42fca54abdefa2adfa24", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "794b5716945bea535802cd3caac3b3fe8de77e56", + "794b5716945bea535802cd3caac3b3fe8de77e56", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "d6858676dd264c280dd55fb5e4dc8ff33771cae3", + "d6858676dd264c280dd55fb5e4dc8ff33771cae3", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/http-rp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html.headers": [ - "309da8091a927735fec71fbd4af9acb39eb3a964", + "309da8091a927735fec71fbd4af9acb39eb3a964", "support" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "a83240bcb3ad5c524cf92c68f5cd94f19f191a2d", + "a83240bcb3ad5c524cf92c68f5cd94f19f191a2d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "81806a28228cd9a90dd581a33cd5621001a806fc", + "81806a28228cd9a90dd581a33cd5621001a806fc", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "fb08052790f857fd00f42dc804014b3ff0830fd5", + "fb08052790f857fd00f42dc804014b3ff0830fd5", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "22c0872e4c97867eda4055f2f6f58935ddb758f4", + "22c0872e4c97867eda4055f2f6f58935ddb758f4", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "933c595821957f6a96e07e9d0e9c1134c5187851", + "933c595821957f6a96e07e9d0e9c1134c5187851", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "01f217fbda4e0eb50a5ba58208cd51ec9926fb2c", + "01f217fbda4e0eb50a5ba58208cd51ec9926fb2c", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "3f816358332221c3c5202fab8172bc42633c581a", + "3f816358332221c3c5202fab8172bc42633c581a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "dc9c2bd864eaaf760898e9c3ce9be35d519c945a", + "dc9c2bd864eaaf760898e9c3ce9be35d519c945a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "bdab5ff29b5055e197d30f181b4dfd8504fc4576", + "bdab5ff29b5055e197d30f181b4dfd8504fc4576", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "861b4ba196334da4bad3994dab3d80d84e457faa", + "861b4ba196334da4bad3994dab3d80d84e457faa", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "4427f355087829ef667e09206e784f6c5cade816", + "4427f355087829ef667e09206e784f6c5cade816", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "fe2d26bc276cbb0bd75b85700a4a9ce7db0405d0", + "fe2d26bc276cbb0bd75b85700a4a9ce7db0405d0", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "834b39ffa09c66d901108e100b7f8d7f73db3e37", + "834b39ffa09c66d901108e100b7f8d7f73db3e37", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "60931a807ae5f02689ea9933028dc217b265c142", + "60931a807ae5f02689ea9933028dc217b265c142", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "31343636d2232b7472366f807e5c81b4983d1150", + "31343636d2232b7472366f807e5c81b4983d1150", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "be07e70d3775a2bf6aeca6b31561e964952427b1", + "be07e70d3775a2bf6aeca6b31561e964952427b1", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "5e958d018ce6186e94687b846c7d9eff931f4600", + "5e958d018ce6186e94687b846c7d9eff931f4600", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "6baef59ef21864c7ebdbe2fb2742fce7f6b8a34b", + "6baef59ef21864c7ebdbe2fb2742fce7f6b8a34b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "8458782abc457f2c150a936aef98e6760040a61d", + "8458782abc457f2c150a936aef98e6760040a61d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "0d38bcfe37f8af2e1d6b66dd5137c07c683697b6", + "0d38bcfe37f8af2e1d6b66dd5137c07c683697b6", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "5212d8281b03f869869fb0b372fb909900d5fe5d", + "5212d8281b03f869869fb0b372fb909900d5fe5d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "319fe589c18238e4db6bd80d7c84fa9a09fc06eb", + "319fe589c18238e4db6bd80d7c84fa9a09fc06eb", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "4356afdb21b7a9772c2b33e8d1b902491fc47a3b", + "4356afdb21b7a9772c2b33e8d1b902491fc47a3b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "29605ba6f4b7e79519be07c8c6662f477d49ce93", + "29605ba6f4b7e79519be07c8c6662f477d49ce93", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "54e0c02da612faf44f3d3ef9e4e883d27cf6e26c", + "54e0c02da612faf44f3d3ef9e4e883d27cf6e26c", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "ade7a69448cf3f9d108ab751b1201c3e36b39de3", + "ade7a69448cf3f9d108ab751b1201c3e36b39de3", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "9fa93d4c81f7c1400768419ae1811527721577ac", + "9fa93d4c81f7c1400768419ae1811527721577ac", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "b781baac14f69a77d23793a2ee066b90bedb1481", + "b781baac14f69a77d23793a2ee066b90bedb1481", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "e5bd3e6c90a0e1d08f9842c7297483b92b275a66", + "e5bd3e6c90a0e1d08f9842c7297483b92b275a66", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-csp/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "49ca274bddd7ae8f8bc97bba03c546c349e9850f", + "49ca274bddd7ae8f8bc97bba03c546c349e9850f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "16c78406d19c7a3f0fb2349801d5e4d644564141", + "16c78406d19c7a3f0fb2349801d5e4d644564141", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.no-redirect.http.html": [ - "8b732b83676ced03d567975231b4795c5ab9bdfb", + "8b732b83676ced03d567975231b4795c5ab9bdfb", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "44d490586669b64125953eaa06c6e43de7b87d96", + "44d490586669b64125953eaa06c6e43de7b87d96", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "f928a811ccfe6a6d5a696effd086507e9580275b", + "f928a811ccfe6a6d5a696effd086507e9580275b", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html": [ - "43335972ee2aa9220a94b319fef1b9926233e783", + "43335972ee2aa9220a94b319fef1b9926233e783", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "a5260dd272055687e4d2b56a8b7e46cb086da77f", + "a5260dd272055687e4d2b56a8b7e46cb086da77f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "ff26a215f4da1e9aa858b056ec8fbe3258956b52", + "ff26a215f4da1e9aa858b056ec8fbe3258956b52", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.no-redirect.http.html": [ - "7d908013e69aa5e94d2698a52a8c20088057a699", + "7d908013e69aa5e94d2698a52a8c20088057a699", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "e3aace756e04c6324072b2e37f2935033c279be0", + "e3aace756e04c6324072b2e37f2935033c279be0", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.keep-origin-redirect.http.html": [ - "46a128d1ccdbe3549e34cab17f33865c09d24c68", + "46a128d1ccdbe3549e34cab17f33865c09d24c68", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.no-redirect.http.html": [ - "e997bbb313bee9bc3c7f66b0fe5d63f9feb6d6ce", + "e997bbb313bee9bc3c7f66b0fe5d63f9feb6d6ce", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/a-tag/cross-origin.swap-origin-redirect.http.html": [ - "9ec94e174b8ec1843054feb415da96e06656842f", + "9ec94e174b8ec1843054feb415da96e06656842f", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html": [ - "676877a32672b6ee61774c9e35a9d3f1424630dd", + "676877a32672b6ee61774c9e35a9d3f1424630dd", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html": [ - "702f2f80c298efdbf8afe0cbc42fd7e0f464ce27", + "702f2f80c298efdbf8afe0cbc42fd7e0f464ce27", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html": [ - "efc4dca2897f9cfd8c74fdc427018e12109de40a", + "efc4dca2897f9cfd8c74fdc427018e12109de40a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.keep-origin-redirect.http.html": [ - "17c00cad00e50c38bcebaa3f586eac5505e14b2d", + "17c00cad00e50c38bcebaa3f586eac5505e14b2d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.no-redirect.http.html": [ - "96b614ed5c74f752224066a7dc4ebea484966406", + "96b614ed5c74f752224066a7dc4ebea484966406", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/link-tag/cross-origin.swap-origin-redirect.http.html": [ - "9d8d15126ade7b45b468e808955f7385c145ef78", + "9d8d15126ade7b45b468e808955f7385c145ef78", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "78bb08e9bf785e009c6965fc828472a5e0f3b95d", + "78bb08e9bf785e009c6965fc828472a5e0f3b95d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.no-redirect.http.html": [ - "acc7b48132efd1f82c682db119e520eae17cb855", + "acc7b48132efd1f82c682db119e520eae17cb855", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "52d73b3986db10ca9bda9216affed760794f841d", + "52d73b3986db10ca9bda9216affed760794f841d", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "8ba20f9d1861affe784cd992b10b210a80a64a1a", + "8ba20f9d1861affe784cd992b10b210a80a64a1a", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html": [ - "bbc7105f2f66e4637338d862177346adeeb74075", + "bbc7105f2f66e4637338d862177346adeeb74075", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "1d7be646f4547c25d5846a4fa54e49ebe0a21a27", + "1d7be646f4547c25d5846a4fa54e49ebe0a21a27", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.keep-origin-redirect.http.html": [ - "32ae1d8058d60f50dd050c5496ea6f64f31348ee", + "32ae1d8058d60f50dd050c5496ea6f64f31348ee", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.no-redirect.http.html": [ - "df69eb5038dd57d1fc3c63ea4b5c3ad5882c7a70", + "df69eb5038dd57d1fc3c63ea4b5c3ad5882c7a70", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-http/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "383cae4607b1a813761f9dfc8d13944a4d26a89e", + "383cae4607b1a813761f9dfc8d13944a4d26a89e", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/a-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "3ce89779567fd847c7c2101146e6c6a4e3eb4c31", + "3ce89779567fd847c7c2101146e6c6a4e3eb4c31", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "8bcd726fd7238fb371aec45b1058e145aca355ea", + "8bcd726fd7238fb371aec45b1058e145aca355ea", "testharness" - ], + ], "mozilla/referrer-policy/same-origin/meta-referrer/same-origin/http-https/link-tag/same-origin-insecure.swap-origin-redirect.http.html": [ - "7216f2eb9c53cf415f7a8c08da28f9924767230e", + "7216f2eb9c53cf415f7a8c08da28f9924767230e", "testharness" - ], + ], "mozilla/referrer-policy/spec.src.json": [ - "f7adf5560cc5d51b3dd7409710fff244677eb4e7", + "f7adf5560cc5d51b3dd7409710fff244677eb4e7", "support" - ], + ], "mozilla/referrer-policy/spec_json.js": [ - "7876ce88d7128d8c8dd24b37cafac70ffbfd4a1b", + "7876ce88d7128d8c8dd24b37cafac70ffbfd4a1b", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "045bcac93b15144d7ec7dd6450ccbeb37ca25c0f", + "045bcac93b15144d7ec7dd6450ccbeb37ca25c0f", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "b072b5a4c02515f229e2296fe19efd1b75da5ccf", + "b072b5a4c02515f229e2296fe19efd1b75da5ccf", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "f2ad2ddedfde2d1a0fa78124ef00da70c2c975d4", + "f2ad2ddedfde2d1a0fa78124ef00da70c2c975d4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "9179811d1c27e962d7d53421d9419fc2832f16b8", + "9179811d1c27e962d7d53421d9419fc2832f16b8", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "e2b1236b67212a61a5a8dcefc370e0803c068a43", + "e2b1236b67212a61a5a8dcefc370e0803c068a43", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "d0146639f1d65b7537327e9a3ad42788bff988a2", + "d0146639f1d65b7537327e9a3ad42788bff988a2", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "070b061df98611991d094b7c158281e132ace620", + "070b061df98611991d094b7c158281e132ace620", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "07489ac9e00033b2be16cc977d8a52ff8496f145", + "07489ac9e00033b2be16cc977d8a52ff8496f145", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "f05d2d616e3fc66663816390444604a79036b509", + "f05d2d616e3fc66663816390444604a79036b509", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "a05dee44af0b17293eb0fbd751e5887036426834", + "a05dee44af0b17293eb0fbd751e5887036426834", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "9cce7e804ba3347a67746993945f3a48caa21dd4", + "9cce7e804ba3347a67746993945f3a48caa21dd4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "b30b4c6d30fb31c005da79deefe196d0abe994a9", + "b30b4c6d30fb31c005da79deefe196d0abe994a9", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "1f98c42c063cc621300c6619e4e29065972dec9e", + "1f98c42c063cc621300c6619e4e29065972dec9e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "9d35bc3e9224aab0c09f119585a7cd79ccd93707", + "9d35bc3e9224aab0c09f119585a7cd79ccd93707", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "74d94a62ba1a5bcf2f785378f5b6efe124bb84b1", + "74d94a62ba1a5bcf2f785378f5b6efe124bb84b1", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "2d11018daf44c4fc9babec0e7e559292c9e076a2", + "2d11018daf44c4fc9babec0e7e559292c9e076a2", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "b2c328fee1dc274c19eda1b3da840166fefd6478", + "b2c328fee1dc274c19eda1b3da840166fefd6478", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "a42dac5ea8cda9a77d5505aa00fee3c9474fe2df", + "a42dac5ea8cda9a77d5505aa00fee3c9474fe2df", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "b7ac053326515f831e521693738f3a751d5e4957", + "b7ac053326515f831e521693738f3a751d5e4957", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "a90bbbda2dce6ec1ad09f2fb80e38faf4ba2c1ec", + "a90bbbda2dce6ec1ad09f2fb80e38faf4ba2c1ec", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "bd0892ddb93b8b5348cdf7dad134ee6b8e980022", + "bd0892ddb93b8b5348cdf7dad134ee6b8e980022", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "a061edfe41a4657f847efbbffc8003aeae807bad", + "a061edfe41a4657f847efbbffc8003aeae807bad", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "aeefc83108bd43b393286edf4ef57d8737dfc0db", + "aeefc83108bd43b393286edf4ef57d8737dfc0db", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "4862ff56985ec99e8fcb09e9e921488da244f3ad", + "4862ff56985ec99e8fcb09e9e921488da244f3ad", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "5954ffb452decbaba64f55a289df294f15a67bd4", + "5954ffb452decbaba64f55a289df294f15a67bd4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "bc74ed88f3fac75e40cd59068f9d7b4149bf3ed4", + "bc74ed88f3fac75e40cd59068f9d7b4149bf3ed4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "981b7cb433a526cde6a7c06cdf421057dd4b691e", + "981b7cb433a526cde6a7c06cdf421057dd4b691e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "581ce7e211401b175d237bb34e8c9731d920f8f1", + "581ce7e211401b175d237bb34e8c9731d920f8f1", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "eeb41bebe4b635f6df70fab13c31055053d1bfd4", + "eeb41bebe4b635f6df70fab13c31055053d1bfd4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "5835df3255a061dba0e848d6572efd78877de896", + "5835df3255a061dba0e848d6572efd78877de896", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "e3846614b50d95537293ea3649e964cd7de71079", + "e3846614b50d95537293ea3649e964cd7de71079", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "3dd9dba74c69e608802caa3f9fd4306030d21385", + "3dd9dba74c69e608802caa3f9fd4306030d21385", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "5a939a0646a97765ffb1ed2a0bc26dd7f34d76ad", + "5a939a0646a97765ffb1ed2a0bc26dd7f34d76ad", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "42a081830760ea4cee0a1f17f7da458730bab781", + "42a081830760ea4cee0a1f17f7da458730bab781", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "294c34988a0bf9837b0facda3eeba64051100ebb", + "294c34988a0bf9837b0facda3eeba64051100ebb", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "21cd12c78a7c842c1b211468ca5a9e267d60de08", + "21cd12c78a7c842c1b211468ca5a9e267d60de08", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "a3e03d25100d6d54212b4eff8397da7d9ffe9faa", + "a3e03d25100d6d54212b4eff8397da7d9ffe9faa", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "7cb2cf9f28223aa4ebd7f337105729c8ae6cfa81", + "7cb2cf9f28223aa4ebd7f337105729c8ae6cfa81", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "877481e52783c8a4ff33f42102bb6b5375803708", + "877481e52783c8a4ff33f42102bb6b5375803708", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "812aaf97b3b66f73e6ef719a3d975bfe9e320a64", + "812aaf97b3b66f73e6ef719a3d975bfe9e320a64", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "7079a3ecf123ee1bfcf376bf6bcbf28a7187be61", + "7079a3ecf123ee1bfcf376bf6bcbf28a7187be61", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "4d0abae23bc953f6dd50a7252fd4b72da4a936bd", + "4d0abae23bc953f6dd50a7252fd4b72da4a936bd", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "263ed4ad8a3eec4e4144997a51f282a016fd1539", + "263ed4ad8a3eec4e4144997a51f282a016fd1539", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "0d711ba831eb13db4bc5b511d2880aa707a80b0a", + "0d711ba831eb13db4bc5b511d2880aa707a80b0a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "a776b110bebfdb9233428d6fe24d69d503e17eb5", + "a776b110bebfdb9233428d6fe24d69d503e17eb5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "4d3ec5a2d28efa3d07fe26650fa7c92b47314e0a", + "4d3ec5a2d28efa3d07fe26650fa7c92b47314e0a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "a4f6c9d4ad9586a27990986ecdd1d7e697bb1cd9", + "a4f6c9d4ad9586a27990986ecdd1d7e697bb1cd9", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "3fbe4baf4aa8daaf980a889a0abe14e718a3b281", + "3fbe4baf4aa8daaf980a889a0abe14e718a3b281", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "8ca7b4f8019c87667c51cce1f6024b1df51825a9", + "8ca7b4f8019c87667c51cce1f6024b1df51825a9", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "03536b7d8299eaa3466a7c852f10fef7a1566d90", + "03536b7d8299eaa3466a7c852f10fef7a1566d90", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "312c33065555d9ddda194be2334ac61ea97d770d", + "312c33065555d9ddda194be2334ac61ea97d770d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "38ad3e7c7161a4304e4b54b905e8b569dd8dfcd5", + "38ad3e7c7161a4304e4b54b905e8b569dd8dfcd5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "26a0b4ca86bfe713160566f13752fb99d9b8e7ac", + "26a0b4ca86bfe713160566f13752fb99d9b8e7ac", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "b2cd36278b0f2fcf2e24eb33234f8857db10ab23", + "b2cd36278b0f2fcf2e24eb33234f8857db10ab23", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "e07172d085917b5d187cd4e662831b1cd702c433", + "e07172d085917b5d187cd4e662831b1cd702c433", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "e698f8d2370c6bf6c23a84abf7c5e4f85e7ef548", + "e698f8d2370c6bf6c23a84abf7c5e4f85e7ef548", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "d63b7a8d7340e9b636ed49c3af16fdde16a9d297", + "d63b7a8d7340e9b636ed49c3af16fdde16a9d297", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "3296688b653f2e4a1e4cd6e30f97d1ebb0990646", + "3296688b653f2e4a1e4cd6e30f97d1ebb0990646", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "0798bd32eb4e18d4839625787db6ddedc81a0bfd", + "0798bd32eb4e18d4839625787db6ddedc81a0bfd", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "be0c6556d8093dc402ae82d93e3fc1b674aba4d7", + "be0c6556d8093dc402ae82d93e3fc1b674aba4d7", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "04b712594d29e9bb881646c783f077ec4dba3102", + "04b712594d29e9bb881646c783f077ec4dba3102", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "f77e949d08809e980d51c084a9665b605c689bd5", + "f77e949d08809e980d51c084a9665b605c689bd5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "227f9f617a9321554ffa746a922f5c19ff88991e", + "227f9f617a9321554ffa746a922f5c19ff88991e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "7ce1dbb27239f16bc823905e1c477be23e6b98c4", + "7ce1dbb27239f16bc823905e1c477be23e6b98c4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "b221db2ce0f305c24511819bb18704fe30c01ec4", + "b221db2ce0f305c24511819bb18704fe30c01ec4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "8732ad05733831e91898e6a77bd18e91eae26316", + "8732ad05733831e91898e6a77bd18e91eae26316", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "dd2862159a8833ec2e3549aa28112bd8a90a3f89", + "dd2862159a8833ec2e3549aa28112bd8a90a3f89", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "2b65afe48cbf3ab942eb5cfb9cf88728a9fbb235", + "2b65afe48cbf3ab942eb5cfb9cf88728a9fbb235", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "10af95e08be564b5f2d83b05a1632f7cc5efda66", + "10af95e08be564b5f2d83b05a1632f7cc5efda66", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "9d1efa4b78ce4c11980126a91ac90ab781c743fe", + "9d1efa4b78ce4c11980126a91ac90ab781c743fe", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "20262f9f3b6862861a0ff1913e97bc3a7cd0ca16", + "20262f9f3b6862861a0ff1913e97bc3a7cd0ca16", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.no-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "1746e7e2677b13ca4e9c9552d58333e30b6f4638", + "1746e7e2677b13ca4e9c9552d58333e30b6f4638", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/http-rp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html.headers": [ - "c67e521584390fb6c068bcb1a814d73ed9543570", + "c67e521584390fb6c068bcb1a814d73ed9543570", "support" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "5716de7f0e8f9e39af4fc7fc570e6b2fcd88f092", + "5716de7f0e8f9e39af4fc7fc570e6b2fcd88f092", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "474328d554e5544de7209e22551236c960aae246", + "474328d554e5544de7209e22551236c960aae246", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "9119c33215faf909c7c3b46a2f80a7eb244e4b13", + "9119c33215faf909c7c3b46a2f80a7eb244e4b13", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "68e5be85895af34449565f24fc6eebc0124f6328", + "68e5be85895af34449565f24fc6eebc0124f6328", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "a801987ee422f647724dd7fcb4f61c7b4f077c1b", + "a801987ee422f647724dd7fcb4f61c7b4f077c1b", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "0ebf097f52801d662e32d3a093490cb891a0be46", + "0ebf097f52801d662e32d3a093490cb891a0be46", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "a80c064e057347dbc6f70d463a6c18cb4114f7bc", + "a80c064e057347dbc6f70d463a6c18cb4114f7bc", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "44cdc96b39620ad9d89cf6defc0183e9865dd5c4", + "44cdc96b39620ad9d89cf6defc0183e9865dd5c4", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "0f6c7b8ed3cc6ab96357411170f38ac16a306c94", + "0f6c7b8ed3cc6ab96357411170f38ac16a306c94", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "54168c30911f5a57f12637579fdc683f40375c14", + "54168c30911f5a57f12637579fdc683f40375c14", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "5d5d9cd8b7db4f3c9ad8106a64d3ad766f2cb11b", + "5d5d9cd8b7db4f3c9ad8106a64d3ad766f2cb11b", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "c0c70e205b02df2b6b749b7edd53c997c35f9c53", + "c0c70e205b02df2b6b749b7edd53c997c35f9c53", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "5bfd21dc67081da359a667219375c1b08de68772", + "5bfd21dc67081da359a667219375c1b08de68772", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "9518a8345df04485fdf7620260537bda7a83b1bc", + "9518a8345df04485fdf7620260537bda7a83b1bc", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "d417c51a7f770a0cbc87eadec55cb11646113409", + "d417c51a7f770a0cbc87eadec55cb11646113409", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "7ae3f843b61fc791791e5ffb07b57256de486791", + "7ae3f843b61fc791791e5ffb07b57256de486791", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "6e8c66b0a992df591e705598b10a8cedfe710a0b", + "6e8c66b0a992df591e705598b10a8cedfe710a0b", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "77d8cd3ba31a22a85d10fbf90df16e8380a32c63", + "77d8cd3ba31a22a85d10fbf90df16e8380a32c63", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "9319c0711cc44366d953c19fc73d78c8c8947e8d", + "9319c0711cc44366d953c19fc73d78c8c8947e8d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "3ee2577c1a7da66141c99a06cc39b5a8c46deb5a", + "3ee2577c1a7da66141c99a06cc39b5a8c46deb5a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "4ebbe2ddd680d9d8a5b291c0a00da271844ad797", + "4ebbe2ddd680d9d8a5b291c0a00da271844ad797", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "a3dd3c178df196d3d5ce1c17abd7fb7390a5e645", + "a3dd3c178df196d3d5ce1c17abd7fb7390a5e645", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "710a6ebd92a83617bb59a43a4c0a6fe934da7d2a", + "710a6ebd92a83617bb59a43a4c0a6fe934da7d2a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "7c0e976cb3cc9d6cd242d0fbb421f98ec830d0c1", + "7c0e976cb3cc9d6cd242d0fbb421f98ec830d0c1", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "827e86e657b969b802079713932741a8f09db15f", + "827e86e657b969b802079713932741a8f09db15f", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "1d3ff489f5c63c56c20edb99314f8e7d2e9f480a", + "1d3ff489f5c63c56c20edb99314f8e7d2e9f480a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "708b60ad81a8dc0fe16cf2ea90c05f29e04c8037", + "708b60ad81a8dc0fe16cf2ea90c05f29e04c8037", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "305e52dd1d44baeebc282bb993926785ae655093", + "305e52dd1d44baeebc282bb993926785ae655093", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "0fb463d9cb9da487319ad26cf948b96edcb922b2", + "0fb463d9cb9da487319ad26cf948b96edcb922b2", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "3822d95abf4735df6590aba9a65e57abb8d5be2d", + "3822d95abf4735df6590aba9a65e57abb8d5be2d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "1bef209b9f5d6236d5509517b8bf68d416a76e88", + "1bef209b9f5d6236d5509517b8bf68d416a76e88", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "ec5346324fb0c8999b2f85a161f604263705289d", + "ec5346324fb0c8999b2f85a161f604263705289d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "871a644a25fbdfcd8f5b4b9e27cb57ffbb32d60b", + "871a644a25fbdfcd8f5b4b9e27cb57ffbb32d60b", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "a6e4df5a70c889e098eb6361537578248c1dadef", + "a6e4df5a70c889e098eb6361537578248c1dadef", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "774f8c38071898c506ac27e71fc97529c8cab901", + "774f8c38071898c506ac27e71fc97529c8cab901", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-csp/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "9dc8ef78ac8f3d21975f157581ed5ce247ca11f8", + "9dc8ef78ac8f3d21975f157581ed5ce247ca11f8", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "de16edf2389c2cbf1d41913c2d3ec061b7fb530d", + "de16edf2389c2cbf1d41913c2d3ec061b7fb530d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "e01d1c5974ff8a81f35e9ae9802c37aa7fcbf18d", + "e01d1c5974ff8a81f35e9ae9802c37aa7fcbf18d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "a72d8e10263211471173f34cccc6a4c2b1008a36", + "a72d8e10263211471173f34cccc6a4c2b1008a36", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "2e7b085cb1261eeab259bd79dfe5c2252dc303d2", + "2e7b085cb1261eeab259bd79dfe5c2252dc303d2", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "0d2c537c82a1ea55c1be4f1322379cb2be7dd9b9", + "0d2c537c82a1ea55c1be4f1322379cb2be7dd9b9", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "50aa24f14f687670262c93b23845f91962c219f3", + "50aa24f14f687670262c93b23845f91962c219f3", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "22e054e853ad9e0f9bb54991acc546e9827d991a", + "22e054e853ad9e0f9bb54991acc546e9827d991a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "77b72dc6beae94b15f5a1ec7a6a311c956c5dea9", + "77b72dc6beae94b15f5a1ec7a6a311c956c5dea9", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "de394bd907a5ea6ce3e8d37a250f3cd8048566a5", + "de394bd907a5ea6ce3e8d37a250f3cd8048566a5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "4f9d7a427e53bfbd0fd6e16c8479fbce881df859", + "4f9d7a427e53bfbd0fd6e16c8479fbce881df859", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "9eb02e21b6a0102782d4bacdf9df0bae67a3e097", + "9eb02e21b6a0102782d4bacdf9df0bae67a3e097", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "0788cb7ef6085272b5937ec378b779cecfca35c5", + "0788cb7ef6085272b5937ec378b779cecfca35c5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "433d4a88f55678d58a61ce386da8241a60ac4519", + "433d4a88f55678d58a61ce386da8241a60ac4519", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "34422dff172109a95950089be1a58f81c415d0ff", + "34422dff172109a95950089be1a58f81c415d0ff", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "674d067c799e989279a5b4e0dca54a19f59306fe", + "674d067c799e989279a5b4e0dca54a19f59306fe", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "9c0e880d8e2c1a639ff8cb0e020196a1ceeba74e", + "9c0e880d8e2c1a639ff8cb0e020196a1ceeba74e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "0eaed368b9e4c088f92e490450c52eaba09da39f", + "0eaed368b9e4c088f92e490450c52eaba09da39f", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "14064694943e8cbcea385a80cda5a751ccc25ad8", + "14064694943e8cbcea385a80cda5a751ccc25ad8", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.keep-origin-redirect.http.html": [ - "9441fb3e141e4e1761361c184e71fd4cfd4f6258", + "9441fb3e141e4e1761361c184e71fd4cfd4f6258", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.no-redirect.http.html": [ - "7ab0e0b903f4dc82460edeafecc6dc270cc9970b", + "7ab0e0b903f4dc82460edeafecc6dc270cc9970b", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/generic.swap-origin-redirect.http.html": [ - "5b583c374070da29b2ac2e8fd3dfae9b68ced490", + "5b583c374070da29b2ac2e8fd3dfae9b68ced490", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html": [ - "8a60d8403ebe3f4133ae4f4f2bb2570e9eb1345c", + "8a60d8403ebe3f4133ae4f4f2bb2570e9eb1345c", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html": [ - "36375ec69a10501ac7724c71c02fd0174cdefbf5", + "36375ec69a10501ac7724c71c02fd0174cdefbf5", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html": [ - "d86a2c6082a12501ffdae0af3eb4098a7a0f476f", + "d86a2c6082a12501ffdae0af3eb4098a7a0f476f", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.keep-origin-redirect.http.html": [ - "57bd3fea383234e53578a1705bcbdd42790a3a39", + "57bd3fea383234e53578a1705bcbdd42790a3a39", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.no-redirect.http.html": [ - "7bf66e45fe9a18cfaf0a0a039e6a08dd8bd1fd9e", + "7bf66e45fe9a18cfaf0a0a039e6a08dd8bd1fd9e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/link-tag/generic.swap-origin-redirect.http.html": [ - "3f3b65db58af02af0fc5fba1adb3b213cc8a98e0", + "3f3b65db58af02af0fc5fba1adb3b213cc8a98e0", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.keep-origin-redirect.http.html": [ - "2d8ba97e93314f9e28768721b09e2a14fb47f4af", + "2d8ba97e93314f9e28768721b09e2a14fb47f4af", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.no-redirect.http.html": [ - "d2efd78994ca4b1d2ac670b152500f977934b168", + "d2efd78994ca4b1d2ac670b152500f977934b168", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/generic.swap-origin-redirect.http.html": [ - "0d4515e10735be0b7cf0fff4de85303bd17a5637", + "0d4515e10735be0b7cf0fff4de85303bd17a5637", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html": [ - "0114faea5394668172a4f907b1577eb634eef24e", + "0114faea5394668172a4f907b1577eb634eef24e", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html": [ - "c0513b162861ea49e599740437c4f4c2d9dac8ac", + "c0513b162861ea49e599740437c4f4c2d9dac8ac", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html": [ - "b6ae226d38038920235f6ecb5dfae201addcaa0a", + "b6ae226d38038920235f6ecb5dfae201addcaa0a", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.keep-origin-redirect.http.html": [ - "b29c17497eccab22b0fb51cdc1fdc3e5d097cc53", + "b29c17497eccab22b0fb51cdc1fdc3e5d097cc53", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.no-redirect.http.html": [ - "351097a301c936d47ff8130915c58bbfb9bfb30d", + "351097a301c936d47ff8130915c58bbfb9bfb30d", "testharness" - ], + ], "mozilla/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/link-tag/generic.swap-origin-redirect.http.html": [ - "1229662156c9cdae2183ce5f8041f14075980301", + "1229662156c9cdae2183ce5f8041f14075980301", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "93b9d5aecf51b8983387b38e1db45fbf25ff21c6", + "93b9d5aecf51b8983387b38e1db45fbf25ff21c6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "a91cf4ae8c407f19b6ce0c20a9f62d27ff610c60", + "a91cf4ae8c407f19b6ce0c20a9f62d27ff610c60", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "8a082d8ef39c4d227cea725659edd9bccce9c178", + "8a082d8ef39c4d227cea725659edd9bccce9c178", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "be90b8116e35e9bf891587bf17211f2e990c844e", + "be90b8116e35e9bf891587bf17211f2e990c844e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "2b2a2ba1773e932fcd1820d999af35846c8a1272", + "2b2a2ba1773e932fcd1820d999af35846c8a1272", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "3d47e720d2b633d1af89f9bf0e07abe0cbbfb042", + "3d47e720d2b633d1af89f9bf0e07abe0cbbfb042", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "4ae0a5a4c03a72e6a8e82cd2c9c617e5d61cd607", + "4ae0a5a4c03a72e6a8e82cd2c9c617e5d61cd607", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "92c40cea6b562cbf912c625753e453a7081683b5", + "92c40cea6b562cbf912c625753e453a7081683b5", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "e4249e5fbd4eca364bb3b8317bdc7c108e7964f7", + "e4249e5fbd4eca364bb3b8317bdc7c108e7964f7", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "d6c5583476b6a80ce170c37bc427c697f3ed1a65", + "d6c5583476b6a80ce170c37bc427c697f3ed1a65", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "3dd098ae5de786f5fa375986eed546072ab7df51", + "3dd098ae5de786f5fa375986eed546072ab7df51", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "185a330236e7c97a240d06b4695bf2dd891c8ccd", + "185a330236e7c97a240d06b4695bf2dd891c8ccd", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "f0801c98e27be58a148d203697362ab89bc2911b", + "f0801c98e27be58a148d203697362ab89bc2911b", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "d61b377c8502a5e8ab192b75dec30d71e07d9140", + "d61b377c8502a5e8ab192b75dec30d71e07d9140", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "1838bf18b14a8eb32e82413d0a727ea6ea324552", + "1838bf18b14a8eb32e82413d0a727ea6ea324552", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "5ac824c07c17583500eb23eb6ebf1fb5128927d9", + "5ac824c07c17583500eb23eb6ebf1fb5128927d9", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "5b6ff3a0362bd9df7a4b4cdb305534d96bd3987d", + "5b6ff3a0362bd9df7a4b4cdb305534d96bd3987d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "0c2120e8bad570290705a0b7690807e1b4f0908d", + "0c2120e8bad570290705a0b7690807e1b4f0908d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "afe427f1c7e81936d9aeda8b2f8aee6660f4e0c4", + "afe427f1c7e81936d9aeda8b2f8aee6660f4e0c4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "b8fd5b6b9eb728805cfbae401765bf77c7f196fd", + "b8fd5b6b9eb728805cfbae401765bf77c7f196fd", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "f83fc0861960efcd41fb99d3e3cba6328e090d1f", + "f83fc0861960efcd41fb99d3e3cba6328e090d1f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "feb927b1ed4c8b46355b5aa2aa0884ebaf2464a4", + "feb927b1ed4c8b46355b5aa2aa0884ebaf2464a4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "2493c65f1b9855311e4895facf54c2e030de4b36", + "2493c65f1b9855311e4895facf54c2e030de4b36", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "815df682caf0a5e5e03286ea6546bf3a758e1f87", + "815df682caf0a5e5e03286ea6546bf3a758e1f87", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "6c298ed9570ff10b021a2d33826bb5aae34c9b68", + "6c298ed9570ff10b021a2d33826bb5aae34c9b68", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "9a0fd2c0706b3177e47591ace284ea71ad9a972e", + "9a0fd2c0706b3177e47591ace284ea71ad9a972e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "78949fe10460ca39d3028540012f5c0f99a14f25", + "78949fe10460ca39d3028540012f5c0f99a14f25", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "9c0e166e76828b83cf03b02fd691cde98e4deab6", + "9c0e166e76828b83cf03b02fd691cde98e4deab6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "84231dca9fea75f7dcfcf339aaf90aff456c8e4b", + "84231dca9fea75f7dcfcf339aaf90aff456c8e4b", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "b82a55099d0350ec33335d160ba88219f0234677", + "b82a55099d0350ec33335d160ba88219f0234677", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "e1ffc5ae0c354cf77c9c8ba9a1d0e6f42e5c09fe", + "e1ffc5ae0c354cf77c9c8ba9a1d0e6f42e5c09fe", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "6934e2d6bf48b6919c469ad4ea9121ca5a54beb6", + "6934e2d6bf48b6919c469ad4ea9121ca5a54beb6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "27e8bd2f3f41bffe543da229c047323ad8dbf68c", + "27e8bd2f3f41bffe543da229c047323ad8dbf68c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "b2c4bbfa3b73e0711df66b6f69655c3f7683a7c8", + "b2c4bbfa3b73e0711df66b6f69655c3f7683a7c8", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "f713368e05a4159895ea7b9ffa01e1729a382a01", + "f713368e05a4159895ea7b9ffa01e1729a382a01", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "b35b54ca2bd796d4887d2a12858a4166328d6854", + "b35b54ca2bd796d4887d2a12858a4166328d6854", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "626d8f9d3c04ff18f36d7388d53cbbf2fa6f7e00", + "626d8f9d3c04ff18f36d7388d53cbbf2fa6f7e00", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "3886b0f939c8ec2f059fd5affeacc95b7b2d7179", + "3886b0f939c8ec2f059fd5affeacc95b7b2d7179", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "71c98dcf126a061b5bdc0658c24abe7d85c2094c", + "71c98dcf126a061b5bdc0658c24abe7d85c2094c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "5a5f46e6df87cb18ab34b9bc214311cd5774e176", + "5a5f46e6df87cb18ab34b9bc214311cd5774e176", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "c833910430a30037ceee93ca68fb87cf49e8b41b", + "c833910430a30037ceee93ca68fb87cf49e8b41b", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "2c4b2eef4cb8e9e1ec72f7239d7beaadd6395d8c", + "2c4b2eef4cb8e9e1ec72f7239d7beaadd6395d8c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "8f93c3fc749b2cf99a0449cbc8adf80335f14e88", + "8f93c3fc749b2cf99a0449cbc8adf80335f14e88", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "e5fd04a01d7f9d93d80a12337f6497a1255da91e", + "e5fd04a01d7f9d93d80a12337f6497a1255da91e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "981cf11264325b0995abc9f8c082850a81fc7cbd", + "981cf11264325b0995abc9f8c082850a81fc7cbd", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "1c0105ef3220cdd305b666b24aedaa3a7447e018", + "1c0105ef3220cdd305b666b24aedaa3a7447e018", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "011e36d58a7c7da6b9ca0652258f90f4d3dff939", + "011e36d58a7c7da6b9ca0652258f90f4d3dff939", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "5dad3ba66086f56bebc6fba6b59031378075e3c5", + "5dad3ba66086f56bebc6fba6b59031378075e3c5", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "e3f741809200560da2105512947c6e3817b2b74e", + "e3f741809200560da2105512947c6e3817b2b74e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "12a40677144f3962355ada366c94fdfe71de09b6", + "12a40677144f3962355ada366c94fdfe71de09b6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "eab63db369c1b784d2f8475dfa4b86e5ad663b10", + "eab63db369c1b784d2f8475dfa4b86e5ad663b10", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "21098f78449da64ff0e708edccb057bec21eb3e8", + "21098f78449da64ff0e708edccb057bec21eb3e8", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "8e68ef3d19034e687939d9b1af27c69aba37ad56", + "8e68ef3d19034e687939d9b1af27c69aba37ad56", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "b8cf52ab72f39358745fae5bd8f42b9269031dec", + "b8cf52ab72f39358745fae5bd8f42b9269031dec", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "26014f6eb130ded0c53e73c140c842f455f8ebaf", + "26014f6eb130ded0c53e73c140c842f455f8ebaf", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "60ea1c31c6134e839c241cb8ad646c0fa8d87f0f", + "60ea1c31c6134e839c241cb8ad646c0fa8d87f0f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "d99a44ab922b9997884594f30ab83ebc6b669444", + "d99a44ab922b9997884594f30ab83ebc6b669444", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "732d552c234be866c179bb531c84c63b196948eb", + "732d552c234be866c179bb531c84c63b196948eb", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "9f8c6c1e641acf408bc142bddf84f79afbc7b3de", + "9f8c6c1e641acf408bc142bddf84f79afbc7b3de", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "4ef2c6ff1f8d5378adc292d8b39e407b79891592", + "4ef2c6ff1f8d5378adc292d8b39e407b79891592", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "2eecdbd666160ba19db887b260243800e3ddfbc6", + "2eecdbd666160ba19db887b260243800e3ddfbc6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "eae2e6c27ed21165433c47626b453c581f399abd", + "eae2e6c27ed21165433c47626b453c581f399abd", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "ec962e1c0666eb0722c3a9d781f8cbf3460b5ef6", + "ec962e1c0666eb0722c3a9d781f8cbf3460b5ef6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "eebae7001920e1ef0c124a3fb16fe39727af10f4", + "eebae7001920e1ef0c124a3fb16fe39727af10f4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "86b4cfc87033cfbbded098386724faa1e0ecf1a1", + "86b4cfc87033cfbbded098386724faa1e0ecf1a1", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "999ce8c8eaed60028f8038c0fc67c47f5786c746", + "999ce8c8eaed60028f8038c0fc67c47f5786c746", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "bf2ce337bd7bdbd12a81fa20dbab7057f0b7f390", + "bf2ce337bd7bdbd12a81fa20dbab7057f0b7f390", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "cb1e783ae1135c0ba8dbfc647b84f700b16c9293", + "cb1e783ae1135c0ba8dbfc647b84f700b16c9293", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "aee070f673e6ddd56c43e75914cec7eceb41bc91", + "aee070f673e6ddd56c43e75914cec7eceb41bc91", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "171754f6fe1387a7cf49df9dc92a127d610e8664", + "171754f6fe1387a7cf49df9dc92a127d610e8664", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "bb0f7763a46e44738621573f7fe1ef8e6d44a9ff", + "bb0f7763a46e44738621573f7fe1ef8e6d44a9ff", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "f88d1c218ed82be5ee53f604ccf1fc88c5e00500", + "f88d1c218ed82be5ee53f604ccf1fc88c5e00500", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "1a31f648665afe8f6086f4c9ee0bfe1f5224b04d", + "1a31f648665afe8f6086f4c9ee0bfe1f5224b04d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "7a38303084805739eb3684bc77af399dd671d2a9", + "7a38303084805739eb3684bc77af399dd671d2a9", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "dc59e659dc029ea9b78ca9df26677fd5fc30e987", + "dc59e659dc029ea9b78ca9df26677fd5fc30e987", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "1e18aa1d42748378944f4a2b55e95bc541630ac7", + "1e18aa1d42748378944f4a2b55e95bc541630ac7", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "04c6cc0ed50c19d972da7641e76b86ac079418ae", + "04c6cc0ed50c19d972da7641e76b86ac079418ae", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "41a5a748d02bf4b34c31022da14b71d1c8a714d8", + "41a5a748d02bf4b34c31022da14b71d1c8a714d8", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "29f92f278967225821303b5e004e5acce248e185", + "29f92f278967225821303b5e004e5acce248e185", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "c0b6c896f33795ad408f12183ff8bf94dfaac8dc", + "c0b6c896f33795ad408f12183ff8bf94dfaac8dc", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "a8982c2d32200d5ebb1cbba7d7dbd1e4c547963a", + "a8982c2d32200d5ebb1cbba7d7dbd1e4c547963a", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "cba8b0c138301486662fa8f53bd7d6c0495fb6b4", + "cba8b0c138301486662fa8f53bd7d6c0495fb6b4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "d22406c8c678c1b077898c8835ed4ddae7aea89c", + "d22406c8c678c1b077898c8835ed4ddae7aea89c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "8a51e5df6bd0c05ba17fd297f9cba7a3743c112d", + "8a51e5df6bd0c05ba17fd297f9cba7a3743c112d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "80d9e8bc3df020af6f338c25dc96f8d9261e5302", + "80d9e8bc3df020af6f338c25dc96f8d9261e5302", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "115db8635bf045db3703c84c3b55c5f0facd0317", + "115db8635bf045db3703c84c3b55c5f0facd0317", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "7d796ecbe70ce7348f6d297f00d397d37735f4e2", + "7d796ecbe70ce7348f6d297f00d397d37735f4e2", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "ecd8b40bee728403bb69bdc35d4ad5337349e78b", + "ecd8b40bee728403bb69bdc35d4ad5337349e78b", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "0b07e9e4be821fad30687c63bfb12fe03d70e0c4", + "0b07e9e4be821fad30687c63bfb12fe03d70e0c4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "2863f4fea64dc5150b47c5ff534b7774cdb4c1b3", + "2863f4fea64dc5150b47c5ff534b7774cdb4c1b3", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "2950ac7c8e882d2c3d65422a56c427cad16b7020", + "2950ac7c8e882d2c3d65422a56c427cad16b7020", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "6a3b56e2dd1281f2acecf887993a70c785e5d6ad", + "6a3b56e2dd1281f2acecf887993a70c785e5d6ad", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "9e7cae1f028f6578d0e95b3eeda346114b8b9e67", + "9e7cae1f028f6578d0e95b3eeda346114b8b9e67", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "947e96a752474b29daa8b063ef7ad2ece07d0b37", + "947e96a752474b29daa8b063ef7ad2ece07d0b37", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "d34ef9a51e97fd2814b9124fc90c11b71c4cc7a0", + "d34ef9a51e97fd2814b9124fc90c11b71c4cc7a0", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "325818ee6add388d3268fbc66f4e4cc28fe11404", + "325818ee6add388d3268fbc66f4e4cc28fe11404", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "d360b62010977483dbb3f8f9227ee440bfc75bca", + "d360b62010977483dbb3f8f9227ee440bfc75bca", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "4f7bd15bddae2ec63bae5019a2a0d0bccbdafec6", + "4f7bd15bddae2ec63bae5019a2a0d0bccbdafec6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "d5c67e9795a0c32aee66517229c235c96e9d85a6", + "d5c67e9795a0c32aee66517229c235c96e9d85a6", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "8fefca756d4cd7546997ea0ea4c0d44b0eb80a84", + "8fefca756d4cd7546997ea0ea4c0d44b0eb80a84", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "85deff7538a1c05fa23cef26910bd995e1ebd406", + "85deff7538a1c05fa23cef26910bd995e1ebd406", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "6b7341603ebe64f9d7c09362823ae02e38a1aabc", + "6b7341603ebe64f9d7c09362823ae02e38a1aabc", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "c212c459b81195793ba7fa741c6452badbc1a171", + "c212c459b81195793ba7fa741c6452badbc1a171", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "e22ec99c4fb2d98556bb17051d870ab7f2f64aa7", + "e22ec99c4fb2d98556bb17051d870ab7f2f64aa7", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "ec780a6fd6cc5292edcffe86c39144b4d325fb1f", + "ec780a6fd6cc5292edcffe86c39144b4d325fb1f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "ca599a8cb287c1af59a97956ffed09f4f2ff62c4", + "ca599a8cb287c1af59a97956ffed09f4f2ff62c4", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "c403586ce593eb7dd19a955b4aba2726968f159e", + "c403586ce593eb7dd19a955b4aba2726968f159e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-csp/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "96ed707ad5bf1286b794c342afe9a1eb15793335", + "96ed707ad5bf1286b794c342afe9a1eb15793335", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "7c088191c076b96dbc315750382a6a858c06fb34", + "7c088191c076b96dbc315750382a6a858c06fb34", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "d3bf4236f99e1eb2a43fb55a43cfc4dce0c2a40d", + "d3bf4236f99e1eb2a43fb55a43cfc4dce0c2a40d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "03aca9aa172fa5628a7037c5a90131160f87d8d5", + "03aca9aa172fa5628a7037c5a90131160f87d8d5", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "1d456ab812ca5ed719f021a1f18a12a321028b3c", + "1d456ab812ca5ed719f021a1f18a12a321028b3c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "02d188ed124f46f4d5d05a39284c7b2a1bb7d0ca", + "02d188ed124f46f4d5d05a39284c7b2a1bb7d0ca", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "0f5f1125620addf229e8a2c5b416597df83e6975", + "0f5f1125620addf229e8a2c5b416597df83e6975", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "e3287be7b4a4828999b213d760426a7d003c3064", + "e3287be7b4a4828999b213d760426a7d003c3064", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "e33fa22a741805cfe39e95607ce56d60e60f2c0f", + "e33fa22a741805cfe39e95607ce56d60e60f2c0f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "36600f3a7d537da6b1a886a3715c0ec369bcaa81", + "36600f3a7d537da6b1a886a3715c0ec369bcaa81", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "52579447a991c2bd54e18bac33d539bb698201df", + "52579447a991c2bd54e18bac33d539bb698201df", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "e38ef39c25ce0e3e836a434cf995c69a0962e077", + "e38ef39c25ce0e3e836a434cf995c69a0962e077", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "6e94b34aa03ff674eb654517cf5d44fd7718a540", + "6e94b34aa03ff674eb654517cf5d44fd7718a540", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "bd38cf56ace50c40a59dcc74d20814acd27a1154", + "bd38cf56ace50c40a59dcc74d20814acd27a1154", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "e61f6b25f33faa5419a50def6442b9aa0ebe5cbf", + "e61f6b25f33faa5419a50def6442b9aa0ebe5cbf", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "a76f757cd47cdeb52da7a4cd97a5957cf6b4d637", + "a76f757cd47cdeb52da7a4cd97a5957cf6b4d637", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "1473b1cc796a8b2950f938a973634895791567bd", + "1473b1cc796a8b2950f938a973634895791567bd", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "5023daec8233cd5d57e8f3dcd5aa47f6df17df0b", + "5023daec8233cd5d57e8f3dcd5aa47f6df17df0b", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "37e93fe21154453faad68e937fe75012bbae2466", + "37e93fe21154453faad68e937fe75012bbae2466", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "748621eaf2cf4488c5cc56de9d64179e867d13e9", + "748621eaf2cf4488c5cc56de9d64179e867d13e9", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.no-redirect.http.html": [ - "5a329637a5d8e88cf3c428f34733948dcce61d1f", + "5a329637a5d8e88cf3c428f34733948dcce61d1f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "71694c1737f70fa949d0585a8a25a75a7213ca8c", + "71694c1737f70fa949d0585a8a25a75a7213ca8c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "ac4c71e6d3dff1053fb32949b245098e0d680290", + "ac4c71e6d3dff1053fb32949b245098e0d680290", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html": [ - "99eb5b4e0dbc8d22b082b5b0ca0e6b2dd11fcc73", + "99eb5b4e0dbc8d22b082b5b0ca0e6b2dd11fcc73", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "ad0eddad5b1f5cb9d8ba80dfe01f5e45dfa0ae46", + "ad0eddad5b1f5cb9d8ba80dfe01f5e45dfa0ae46", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.keep-origin-redirect.http.html": [ - "24ace89db1bd3bee36417e8e045bd211c32d3fca", + "24ace89db1bd3bee36417e8e045bd211c32d3fca", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.no-redirect.http.html": [ - "54a470dfe0171790222c8e30925de7a41f5cf335", + "54a470dfe0171790222c8e30925de7a41f5cf335", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/link-tag/insecure-protocol.swap-origin-redirect.http.html": [ - "cb97cdd3aa38c34905af2db0292523eb597e5a31", + "cb97cdd3aa38c34905af2db0292523eb597e5a31", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "f04c297234f0875b38684d09ff54f6a4ea848b6e", + "f04c297234f0875b38684d09ff54f6a4ea848b6e", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.no-redirect.http.html": [ - "3dee6be3ec6159509c180a11be271612d1a4bf22", + "3dee6be3ec6159509c180a11be271612d1a4bf22", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "7b39649e1028dccf184752a644c6867f6224248d", + "7b39649e1028dccf184752a644c6867f6224248d", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "1f7023b18ffe63441c9dca110d2e5082fa739b9c", + "1f7023b18ffe63441c9dca110d2e5082fa739b9c", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html": [ - "e74ef31048052fb34afcbcec6680a2f9a4172843", + "e74ef31048052fb34afcbcec6680a2f9a4172843", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "d91ba8129b7a0e6e88271775401bed1426cf00b7", + "d91ba8129b7a0e6e88271775401bed1426cf00b7", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.keep-origin-redirect.http.html": [ - "c369359eec64205e383474c48638650597fac23f", + "c369359eec64205e383474c48638650597fac23f", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.no-redirect.http.html": [ - "c2168679e58a519a5ed27f82cdb27bfd529a9bbf", + "c2168679e58a519a5ed27f82cdb27bfd529a9bbf", "testharness" - ], + ], "mozilla/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/link-tag/upgrade-protocol.swap-origin-redirect.http.html": [ - "d4b78d316c0142e9409f45de333fa0a6903e3317", + "d4b78d316c0142e9409f45de333fa0a6903e3317", "testharness" - ], + ], "mozilla/remove_link_styles.css": [ - "1984cf7df21686c499942929ac342dddb160af6a", + "1984cf7df21686c499942929ac342dddb160af6a", "support" - ], + ], "mozilla/remove_link_styles.html": [ - "6a1e592d09613ee0fb0e58ed9c0c02cc13006d14", + "6a1e592d09613ee0fb0e58ed9c0c02cc13006d14", "reftest" - ], + ], "mozilla/remove_link_styles_ref.html": [ - "e9fd0816b9b2b0464f19cfe5afb082eefbb0a2c0", + "e9fd0816b9b2b0464f19cfe5afb082eefbb0a2c0", "support" - ], + ], "mozilla/remove_style_styles.html": [ - "f8a94bb73508d2bd0f83506b94badd54c061d391", + "f8a94bb73508d2bd0f83506b94badd54c061d391", "reftest" - ], + ], "mozilla/remove_style_styles_ref.html": [ - "d562e12720350501ad14223b668131837fd10620", + "d562e12720350501ad14223b668131837fd10620", "support" - ], + ], "mozilla/reparse_style_elements.html": [ - "e54f5a28d131ab41f89d3d70a9d01ea2fae751c1", + "e54f5a28d131ab41f89d3d70a9d01ea2fae751c1", "reftest" - ], + ], "mozilla/reparse_style_elements_ref.html": [ - "e9fd0816b9b2b0464f19cfe5afb082eefbb0a2c0", + "e9fd0816b9b2b0464f19cfe5afb082eefbb0a2c0", "support" - ], + ], "mozilla/request_animation_frame_reftest_wait.html": [ - "6e07d2fb4f1115db4d7de8e79be8bc8b55dc9412", + "6e07d2fb4f1115db4d7de8e79be8bc8b55dc9412", "reftest" - ], + ], "mozilla/request_animation_frame_reftest_wait_ref.html": [ - "d61dcbbffde49f735c94f078e480e60747d6ecd6", + "d61dcbbffde49f735c94f078e480e60747d6ecd6", "support" - ], + ], "mozilla/resources/background-green.css": [ - "9d9d772fb468756d1a90f72325f89cd372f812ef", + "9d9d772fb468756d1a90f72325f89cd372f812ef", "support" - ], + ], "mozilla/resources/background-red.css": [ - "aa1634c255034b34ae9be86a6a28b50d6e7d2af2", + "aa1634c255034b34ae9be86a6a28b50d6e7d2af2", "support" - ], + ], "mozilla/resources/brotli.py": [ - "ca49df23367e8da5b55e93852ef56c760dc3df6b", + "a24b4771e31ab4983b5ceee9d3a25daaebb4048e", "support" - ], + ], "mozilla/resources/external.js": [ - "5f0242874cfa47b84af35325ad651690cd9fb790", + "5f0242874cfa47b84af35325ad651690cd9fb790", "support" - ], + ], "mozilla/resources/http-cache.js": [ - "34aaacf536f31e4d9ae003cb0891ede965201f08", + "34aaacf536f31e4d9ae003cb0891ede965201f08", "support" - ], + ], "mozilla/resources/iframe_contentDocument_inner.html": [ - "2fb85a9b2c2ec0c0adc0a2455002c19924babc9b", + "2fb85a9b2c2ec0c0adc0a2455002c19924babc9b", "support" - ], + ], "mozilla/resources/imports-background-green.css": [ - "5d5cb67763da22d4155ed87cb803b46432532aec", + "5d5cb67763da22d4155ed87cb803b46432532aec", "support" - ], + ], "mozilla/resources/imports-background-red.css": [ - "c7f68081044c6686812921752d5e8b1f8b342ee6", + "c7f68081044c6686812921752d5e8b1f8b342ee6", "support" - ], + ], "mozilla/resources/no_mime_type.py": [ - "ba42a7f24fed3960bce2318ed987ce1b8be32c76", + "ba42a7f24fed3960bce2318ed987ce1b8be32c76", "support" - ], + ], "mozilla/resources/origin_helpers.js": [ - "6493d422c0839f11cfa4e85832495dbbc3b1a171", + "6493d422c0839f11cfa4e85832495dbbc3b1a171", "support" - ], + ], "mozilla/resources/range.txt": [ - "80be6ea7ed834788063a1e546e0d0ea26751b1b4", + "80be6ea7ed834788063a1e546e0d0ea26751b1b4", "support" - ], + ], "mozilla/resources/range_small.txt": [ - "b0883f382e1a80609b7b2c7904e701fbe6760b14", + "b0883f382e1a80609b7b2c7904e701fbe6760b14", "support" - ], + ], "mozilla/resources/ssl.https.html": [ - "8faa57c0c47c4fdf27c052d059b28ee1088235e9", + "8faa57c0c47c4fdf27c052d059b28ee1088235e9", "support" - ], + ], "mozilla/resources/worker_success.js": [ - "327986f34b9b20476b6a7b1189c732a9ea8b9f68", + "327986f34b9b20476b6a7b1189c732a9ea8b9f68", "support" - ], + ], "mozilla/response-data-brotli.htm": [ - "e46a0e5fb0428b2e92a8015233865978ab9032d5", + "2466d31d5f93861b0800922461e0d7069306e9a9", "testharness" - ], + ], "mozilla/restyle-out-of-document-ref.html": [ - "12d09f821614f9912c6fc34c613136bed22b5bc8", + "12d09f821614f9912c6fc34c613136bed22b5bc8", "support" - ], + ], "mozilla/restyle-out-of-document.html": [ - "cff2590e4ebc00d182ffb7a970a82d94426cbb27", + "cff2590e4ebc00d182ffb7a970a82d94426cbb27", "reftest" - ], + ], "mozilla/script_type.html": [ - "e05202e737148e8aad2287fd10ac18bc781cd526", + "e05202e737148e8aad2287fd10ac18bc781cd526", "testharness" - ], + ], "mozilla/scrollBy.html": [ - "24e6d108e24a7127a38b3ed7e09f6309c668f099", + "24e6d108e24a7127a38b3ed7e09f6309c668f099", "testharness" - ], + ], "mozilla/scrollTo.html": [ - "f1b4384e63bfc12c45c3eca5edcd98ad32a85502", + "f1b4384e63bfc12c45c3eca5edcd98ad32a85502", "testharness" - ], + ], "mozilla/scroll_root.html": [ - "b1a9cb590b0fcce9c883f99e17fa029a999b699b", + "b1a9cb590b0fcce9c883f99e17fa029a999b699b", "reftest" - ], + ], "mozilla/scroll_root_ref.html": [ - "6503ad5d5265c0698f61fc607e2e4e017b31cb6f", + "6503ad5d5265c0698f61fc607e2e4e017b31cb6f", "support" - ], + ], "mozilla/scroll_top_null_target.html": [ - "512bf34d506a9e6b14fa7dca36bb7cedddc8221e", + "512bf34d506a9e6b14fa7dca36bb7cedddc8221e", "testharness" - ], + ], "mozilla/scrolling_div_background_borders.html": [ - "6f168aa258c31257eaba218252d32bbf28976e12", + "6f168aa258c31257eaba218252d32bbf28976e12", "reftest" - ], + ], "mozilla/scrolling_div_background_borders_background.png": [ - "24d8886dd9f9df9f227abcb27e01e1dcd406e972", + "24d8886dd9f9df9f227abcb27e01e1dcd406e972", "support" - ], + ], "mozilla/scrolling_div_background_borders_ref.html": [ - "ab0c86ee5d66520aa5170318ede67509d754d300", + "ab0c86ee5d66520aa5170318ede67509d754d300", "support" - ], + ], "mozilla/secure.https.html": [ - "3b49f149b651d77b174647916d9c11c818d2993b", + "3b49f149b651d77b174647916d9c11c818d2993b", "testharness" - ], + ], "mozilla/sequence-hole.html": [ - "0021769859417ffeb4d656f7130370b628bfac7d", + "0021769859417ffeb4d656f7130370b628bfac7d", "testharness" - ], + ], "mozilla/service-workers/resources/sw.js": [ - "53ed1bc7e117138a41b3f3d304d70876e733d842", + "53ed1bc7e117138a41b3f3d304d70876e733d842", "support" - ], + ], "mozilla/service-workers/service-worker-registration.html": [ - "db2cc303d0fc74345e0f8d51954b49f36845114a", + "db2cc303d0fc74345e0f8d51954b49f36845114a", "testharness" - ], + ], "mozilla/service-workers/sw.js": [ - "53ed1bc7e117138a41b3f3d304d70876e733d842", + "53ed1bc7e117138a41b3f3d304d70876e733d842", "support" - ], + ], "mozilla/servo-max-session-history.html": [ - "e49616b326009da98f35bd0384d1715c38a40998", + "e49616b326009da98f35bd0384d1715c38a40998", "testharness" - ], + ], "mozilla/sigsegv.html": [ - "5b1aadd83a2afd453e088aef72ad42ac7ad03d9f", + "5b1aadd83a2afd453e088aef72ad42ac7ad03d9f", "testharness" - ], + ], "mozilla/simple_scroll_to_fragment.html": [ - "b41dfe3671ee3a9c763f80f5548d65509e099e62", + "b41dfe3671ee3a9c763f80f5548d65509e099e62", "reftest" - ], + ], "mozilla/simple_scroll_to_fragment_ref.html": [ - "c379937160aad4c4e9624c2915c0d84ef7c4d785", + "c379937160aad4c4e9624c2915c0d84ef7c4d785", "support" - ], + ], "mozilla/sslfail-ref.html": [ - "4d371a86886ba80268ba54b39eeab50a9a51e04f", + "4d371a86886ba80268ba54b39eeab50a9a51e04f", "support" - ], + ], "mozilla/sslfail.html": [ - "40eb31ca31a2522287bcbf891ad00ac7fdaaa469", + "40eb31ca31a2522287bcbf891ad00ac7fdaaa469", "reftest" - ], + ], "mozilla/storage.html": [ - "375c537a1b3e9fb8a786de85b439a5cac6cc5170", + "375c537a1b3e9fb8a786de85b439a5cac6cc5170", "testharness" - ], + ], "mozilla/style_no_trailing_space.html": [ - "7846d6066d5faf4188d0c20f4cb9bf95292370d0", + "7846d6066d5faf4188d0c20f4cb9bf95292370d0", "testharness" - ], + ], "mozilla/style_remove_prop.html": [ - "07b319bb67ec2a4fe234a6ba98ddd17fc090d593", + "07b319bb67ec2a4fe234a6ba98ddd17fc090d593", "testharness" - ], + ], "mozilla/stylesheet-adopt-panic-ref.html": [ - "b47617e42497612417297d9acc17dc10350c3f91", + "b47617e42497612417297d9acc17dc10350c3f91", "support" - ], + ], "mozilla/stylesheet-adopt-panic.html": [ - "df3b48291e08d907e944ad6a07c56268ff265fd1", + "df3b48291e08d907e944ad6a07c56268ff265fd1", "reftest" - ], + ], "mozilla/svg/svg.html": [ - "d32cd8d6d952a4713a1c8da48638aea68e329b19", + "d32cd8d6d952a4713a1c8da48638aea68e329b19", "reftest" - ], + ], "mozilla/svg/svg_ref.html": [ - "5ea92e454f1eb68b5705408bd144a81126a909eb", + "5ea92e454f1eb68b5705408bd144a81126a909eb", "support" - ], + ], "mozilla/table_rowspan_colspan_crashtest.html": [ - "05c16a5d9051bd69ede7258625dcedf1c37d1a94", + "05c16a5d9051bd69ede7258625dcedf1c37d1a94", "testharness" - ], + ], "mozilla/table_valign_bottom.html": [ - "5e75318062ed2d98783efc562b2d05131b6026bb", + "5e75318062ed2d98783efc562b2d05131b6026bb", "reftest" - ], + ], "mozilla/table_valign_bottom_ref.html": [ - "577a311df5136ee4c99ec294abf2b46ccc4aacd8", + "577a311df5136ee4c99ec294abf2b46ccc4aacd8", "support" - ], + ], "mozilla/table_valign_middle.html": [ - "4ec6fa8d85b7bbc1de13c5f5fe4e0860196b30d2", + "4ec6fa8d85b7bbc1de13c5f5fe4e0860196b30d2", "reftest" - ], + ], "mozilla/table_valign_middle_ref.html": [ - "2946b8a929ee5638c59cf686e78bb6b472895589", + "2946b8a929ee5638c59cf686e78bb6b472895589", "support" - ], + ], "mozilla/table_valign_uneven_height.html": [ - "6668070831a84611fba36e495323cb7375f896e2", + "6668070831a84611fba36e495323cb7375f896e2", "reftest" - ], + ], "mozilla/table_valign_uneven_height_ref.html": [ - "321132b7e7e21d542ce86e4322db04aba3e9d11e", + "321132b7e7e21d542ce86e4322db04aba3e9d11e", "support" - ], + ], "mozilla/task_queue_throttling.any.js": [ - "bbf464f384d55a44db6948d6cc7ab5f54509b800", + "bbf464f384d55a44db6948d6cc7ab5f54509b800", "testharness" - ], + ], "mozilla/test.jpg": [ - "110b3d6b666d35a117ca8c8ada32bf1002943044", + "110b3d6b666d35a117ca8c8ada32bf1002943044", "support" - ], + ], "mozilla/test.png": [ - "353869b3c49d19b768ea414e3e3549cde0cdef5a", + "353869b3c49d19b768ea414e3e3549cde0cdef5a", "support" - ], + ], "mozilla/test.txt": [ - "9235007d960cc6c804a93c89f24881bedc3613c3", + "9235007d960cc6c804a93c89f24881bedc3613c3", "support" - ], + ], "mozilla/textarea_placeholder.html": [ - "6dd1f1e1e0c8250532db1afc1f6b876bfa1b6f8c", + "6dd1f1e1e0c8250532db1afc1f6b876bfa1b6f8c", "reftest" - ], + ], "mozilla/textarea_placeholder_ref.html": [ - "46d2686144f9bf3b33b4954f3667b06d8f6a6117", + "46d2686144f9bf3b33b4954f3667b06d8f6a6117", "support" - ], + ], "mozilla/textcontent.html": [ - "c89bb1b640fba0d36c5e931091b8e9e358afee57", + "c89bb1b640fba0d36c5e931091b8e9e358afee57", "testharness" - ], + ], "mozilla/textcontrol-selection-cannot-exceed-content.html": [ - "b162fba0ec542f54d4647ffd6ff79d86eae4bdbc", + "b162fba0ec542f54d4647ffd6ff79d86eae4bdbc", "testharness" - ], + ], "mozilla/timeout-in-discarded-document.html": [ - "60d35230d09d0346602c0c3e57d959b0b3a42a98", + "60d35230d09d0346602c0c3e57d959b0b3a42a98", "testharness" - ], + ], "mozilla/timer_eventInvalidation.html": [ - "4a182a62f75d8bf957b7cf269eccfa1fb08b0007", + "4a182a62f75d8bf957b7cf269eccfa1fb08b0007", "testharness" - ], + ], "mozilla/timer_eventInvalidation_test.html": [ - "9656e5786059a9b4b626a87ec76d985ced2ec9f1", + "9656e5786059a9b4b626a87ec76d985ced2ec9f1", "support" - ], + ], "mozilla/title.html": [ - "d4e55bc43f714176ad14a59b535f1781ef16d74f", + "d4e55bc43f714176ad14a59b535f1781ef16d74f", "testharness" - ], + ], "mozilla/trace_null.html": [ - "bb4f8c1fc52af604a16bf01b198e5ba2857fdbe9", + "bb4f8c1fc52af604a16bf01b198e5ba2857fdbe9", "testharness" - ], + ], "mozilla/track_line.html": [ - "b181b703897f1b9a789a394ee72d2bfc68f63848", + "b181b703897f1b9a789a394ee72d2bfc68f63848", "testharness" - ], + ], "mozilla/transitionend_safety.html": [ - "b72766c357af9553f1f7411b8d27c404f1e3fcde", + "b72766c357af9553f1f7411b8d27c404f1e3fcde", "testharness" - ], + ], "mozilla/union.html": [ - "42012add68c355c81e793492e59b05c1ca728f2d", + "42012add68c355c81e793492e59b05c1ca728f2d", "testharness" - ], + ], "mozilla/unitless-length.html": [ - "a79520844db5a4430a76ba494b5eecdacce826cd", + "a79520844db5a4430a76ba494b5eecdacce826cd", "testharness" - ], + ], "mozilla/upstream/css_variables_setProperty_recompute.html": [ - "916a1119efb1127f08f279eb951f16e8a29599cd", + "916a1119efb1127f08f279eb951f16e8a29599cd", "testharness" - ], + ], "mozilla/variadic-interface.html": [ - "5ab0557c5e02828c38f5c58edde5425e40dcb4b1", + "5ab0557c5e02828c38f5c58edde5425e40dcb4b1", "testharness" - ], + ], "mozilla/video_poster_frame.html": [ "8e85bcd62303b70153f8d451a843cb2bdd96484d", "reftest" - ], + ], "mozilla/video_poster_frame_ref.html": [ - "b45a87aa614eef6cbe21a77a7b75e81e9a9f8c95", + "b45a87aa614eef6cbe21a77a7b75e81e9a9f8c95", "support" - ], + ], "mozilla/weakref.html": [ - "4deccbe1e26a3f921eea85a4395394a55cc88be4", + "4deccbe1e26a3f921eea85a4395394a55cc88be4", "testharness" - ], + ], "mozilla/webgl/bindBuffer.html": [ - "e1a38f57e698f0aca07550288ddc4376deefcf6c", + "e1a38f57e698f0aca07550288ddc4376deefcf6c", "testharness" - ], + ], "mozilla/webgl/bufferData.html": [ - "855b1ae5ff30e0fa08eb24d2641dbf172eec5eed", + "855b1ae5ff30e0fa08eb24d2641dbf172eec5eed", "testharness" - ], + ], "mozilla/webgl/bufferSubData.html": [ - "cf332fb7b913cf85d43028ca7250960ae27c1b08", + "cf332fb7b913cf85d43028ca7250960ae27c1b08", "testharness" - ], + ], "mozilla/webgl/clear.html": [ - "b03c9a450f2fa0e22a7cba83e0044785c24c4fef", + "b03c9a450f2fa0e22a7cba83e0044785c24c4fef", "testharness" - ], + ], "mozilla/webgl/clearcolor.html": [ - "4760f382f0374985a334a5f6d0e0fe055670c61d", + "4760f382f0374985a334a5f6d0e0fe055670c61d", "reftest" - ], + ], "mozilla/webgl/clearcolor_ref.html": [ - "49cce2cc9009057742cb17e3fd452a986bd6c177", + "49cce2cc9009057742cb17e3fd452a986bd6c177", "support" - ], + ], "mozilla/webgl/context_creation_error.html": [ - "296bc918032200b6b1d88ff77abdccf502660fa2", + "296bc918032200b6b1d88ff77abdccf502660fa2", "testharness" - ], + ], "mozilla/webgl/draw_arrays_simple.html": [ - "545f4d3575b728133b4ceed2b0a72446ef95fcb9", + "545f4d3575b728133b4ceed2b0a72446ef95fcb9", "reftest" - ], + ], "mozilla/webgl/draw_arrays_simple_ref.html": [ - "975dc649337604716ed4973c8d725e1df41e2196", + "975dc649337604716ed4973c8d725e1df41e2196", "support" - ], + ], "mozilla/webgl/getFramebufferAttachmentParameter.html": [ - "6a51cbd51d6b531849c6360af34d3a4b42c68543", + "6a51cbd51d6b531849c6360af34d3a4b42c68543", "testharness" - ], + ], "mozilla/webgl/get_supported_extensions.html": [ - "691535db4766536d66769408212cb13f3f64bef6", + "691535db4766536d66769408212cb13f3f64bef6", "testharness" - ], + ], "mozilla/webgl/img/rust-logo-256x256.png": [ - "63506dd85efce44f8433942a6f4e54d718a97046", + "63506dd85efce44f8433942a6f4e54d718a97046", "support" - ], + ], "mozilla/webgl/invalid_vertex_attributes.html": [ - "ed132004abf5b1154606a5844c275f2e03bdc50c", + "ed132004abf5b1154606a5844c275f2e03bdc50c", "testharness" - ], + ], "mozilla/webgl/tex_image_2d_abv.html": [ - "bfa6019a218d3ad0d40204fcdbf26bbfa54cd802", + "bfa6019a218d3ad0d40204fcdbf26bbfa54cd802", "reftest" - ], + ], "mozilla/webgl/tex_image_2d_abv_ref.html": [ - "1e84eb7846c695d3a48e8fa0445d26dd0e246dfa", + "1e84eb7846c695d3a48e8fa0445d26dd0e246dfa", "support" - ], + ], "mozilla/webgl/tex_image_2d_canvas.html": [ - "70debe8d2af1fa6fea2ccff7b82fb43c7fb82eab", + "70debe8d2af1fa6fea2ccff7b82fb43c7fb82eab", "reftest" - ], + ], "mozilla/webgl/tex_image_2d_canvas2d.html": [ - "884fda9f7edf3145cacc01ae3ecb457e568fe922", + "884fda9f7edf3145cacc01ae3ecb457e568fe922", "reftest" - ], + ], "mozilla/webgl/tex_image_2d_canvas_no_context.html": [ - "157773ff10d7c61744fd818adbaea08d7f63d537", + "157773ff10d7c61744fd818adbaea08d7f63d537", "support" - ], + ], "mozilla/webgl/tex_image_2d_canvas_no_context_ref.html": [ - "36cb7914e64c59c27779310be3e652797ebed992", + "36cb7914e64c59c27779310be3e652797ebed992", "support" - ], + ], "mozilla/webgl/tex_image_2d_canvas_ref.html": [ - "2015696fc3044dcab03791ce8ab185e7412829ef", + "2015696fc3044dcab03791ce8ab185e7412829ef", "support" - ], + ], "mozilla/webgl/tex_image_2d_mipmap.html": [ - "09ca0fba7eece4f2d24b25e005cf5de16656b6d0", + "09ca0fba7eece4f2d24b25e005cf5de16656b6d0", "reftest" - ], + ], "mozilla/webgl/tex_image_2d_mipmap_ref.html": [ - "5f74c0c923a0369cf3bda8cd0b293c174884281f", + "5f74c0c923a0369cf3bda8cd0b293c174884281f", "support" - ], + ], "mozilla/webgl/tex_image_2d_simple.html": [ - "3defd7a5f9671a0f010fe7a7607b3d4340cd5c7f", + "3defd7a5f9671a0f010fe7a7607b3d4340cd5c7f", "reftest" - ], + ], "mozilla/webgl/tex_image_2d_simple_ref.html": [ - "5f74c0c923a0369cf3bda8cd0b293c174884281f", + "5f74c0c923a0369cf3bda8cd0b293c174884281f", "support" - ], + ], "mozilla/websocket_connection_fail.html": [ - "95c56636d53407fd9f18cb089bdd05bad5b1a4d9", + "95c56636d53407fd9f18cb089bdd05bad5b1a4d9", "testharness" - ], + ], "mozilla/window-postmessage-sameorigin.html": [ - "a3ec80929b784c6d5c766fe4cf9d99996cb8850b", + "a3ec80929b784c6d5c766fe4cf9d99996cb8850b", "testharness" - ], + ], "mozilla/window.html": [ - "b6dde8c6b8aed2a6c1318e0c6ef6c6608817076e", + "b6dde8c6b8aed2a6c1318e0c6ef6c6608817076e", "testharness" - ], + ], "mozilla/window_performance.html": [ - "690870b7080e179481ca0255f7c30337e8b6636a", + "690870b7080e179481ca0255f7c30337e8b6636a", "testharness" - ], + ], "mozilla/window_performance_topLevelDomComplete.html": [ - "50bbc2917b5ac900b5061a0b2c30b6c1fef1067e", + "50bbc2917b5ac900b5061a0b2c30b6c1fef1067e", "testharness" - ], + ], "mozilla/window_requestAnimationFrame.html": [ - "8738fcc707e80f9c08d9bdfe7016981a78a7a964", + "8738fcc707e80f9c08d9bdfe7016981a78a7a964", "testharness" - ], + ], "mozilla/window_requestAnimationFrame2.html": [ - "237ef108c5ccaa842a165ee3a93df8fde1964b30", + "237ef108c5ccaa842a165ee3a93df8fde1964b30", "testharness" - ], + ], "mozilla/window_resize_not_triggered_on_load.html": [ - "f551f67ee91f25c7e05c868dbbcad5cb11c93645", + "f551f67ee91f25c7e05c868dbbcad5cb11c93645", "testharness" - ], + ], "mozilla/window_setInterval.html": [ - "a3c68a69b030a8278f685dbbc68b698ec45c0301", + "a3c68a69b030a8278f685dbbc68b698ec45c0301", "testharness" - ], + ], "mozilla/windowproxy.html": [ - "d5c75899eb546d7243d65b6f55e876c5008c6292", + "d5c75899eb546d7243d65b6f55e876c5008c6292", "testharness" - ], + ], "mozilla/worklets/syntax_error.js": [ - "4adade8939ce62eb5e83d73d4faf2261b264d809", + "4adade8939ce62eb5e83d73d4faf2261b264d809", "support" - ], + ], "mozilla/worklets/test_paint_worklet.html": [ - "595851063ce7143d81037b66b252ae023af396a6", + "595851063ce7143d81037b66b252ae023af396a6", "reftest" - ], + ], "mozilla/worklets/test_paint_worklet.js": [ - "3ccc61d61b37fe26fb2c4560149d2705741a88a4", + "3ccc61d61b37fe26fb2c4560149d2705741a88a4", "support" - ], + ], "mozilla/worklets/test_paint_worklet_alpha_throws.js": [ - "b245f8077ba40d75f6a0ee6a5c56e1fe108b6728", + "b245f8077ba40d75f6a0ee6a5c56e1fe108b6728", "support" - ], + ], "mozilla/worklets/test_paint_worklet_arguments_throws.js": [ - "84976121d6da12339f6a7a7b5c484a2980920358", + "84976121d6da12339f6a7a7b5c484a2980920358", "support" - ], + ], "mozilla/worklets/test_paint_worklet_empty_name.js": [ - "40e6f6760254c98909165359b092773f67bdc425", + "40e6f6760254c98909165359b092773f67bdc425", "support" - ], + ], "mozilla/worklets/test_paint_worklet_loading.html": [ - "009a2affe99d9f5ac57df1c19483eaeefc8571ed", + "009a2affe99d9f5ac57df1c19483eaeefc8571ed", "testharness" - ], + ], "mozilla/worklets/test_paint_worklet_no_paint.js": [ - "a288ed1e4a3f74c72bf4b90f8cdee45391232eba", + "a288ed1e4a3f74c72bf4b90f8cdee45391232eba", "support" - ], + ], "mozilla/worklets/test_paint_worklet_not_constructor.js": [ - "d6a4d57333ade6ab4b8933b206f541dc316cf411", + "d6a4d57333ade6ab4b8933b206f541dc316cf411", "support" - ], + ], "mozilla/worklets/test_paint_worklet_paint_not_callable.js": [ - "b0cfc5a77660c0062e94a3e1efebc39a992deb62", + "b0cfc5a77660c0062e94a3e1efebc39a992deb62", "support" - ], + ], "mozilla/worklets/test_paint_worklet_properties_throws.js": [ - "e745796f5d6aea8d097759f585b8684bf9b6e542", + "e745796f5d6aea8d097759f585b8684bf9b6e542", "support" - ], + ], "mozilla/worklets/test_paint_worklet_ref.html": [ - "2d3f57bacd04f2a9a380308656bb0d871994ce45", + "2d3f57bacd04f2a9a380308656bb0d871994ce45", "support" - ], + ], "mozilla/worklets/test_paint_worklet_size.html": [ - "f3cc376768db241c411c496875ef52017216de53", + "f3cc376768db241c411c496875ef52017216de53", "reftest" - ], + ], "mozilla/worklets/test_paint_worklet_size.js": [ - "fdb6dd9b5a5fb04faa526dbffa0115c7977a2a89", + "fdb6dd9b5a5fb04faa526dbffa0115c7977a2a89", "support" - ], + ], "mozilla/worklets/test_paint_worklet_size_ref.html": [ - "af313a9006e0ce998f1dd19677e86b7de149fe58", + "af313a9006e0ce998f1dd19677e86b7de149fe58", "support" - ], + ], "mozilla/worklets/test_paint_worklet_timeout.html": [ - "73d7dbe69a43d83a49e174dd6330fc9fadaffd68", + "73d7dbe69a43d83a49e174dd6330fc9fadaffd68", "reftest" - ], + ], "mozilla/worklets/test_paint_worklet_timeout.js": [ - "16f38b1636b0288c46a8dabab6e938dbd5492a2d", + "16f38b1636b0288c46a8dabab6e938dbd5492a2d", "support" - ], + ], "mozilla/worklets/test_paint_worklet_timeout_ref.html": [ - "065d0fad6ff88dea57209de89e5feed2594aae7c", + "065d0fad6ff88dea57209de89e5feed2594aae7c", "support" - ], + ], "mozilla/worklets/test_worklet.html": [ - "d7a9efa04fe436b7664bdfc2522798d68f7df123", + "d7a9efa04fe436b7664bdfc2522798d68f7df123", "testharness" - ], + ], "mozilla/worklets/test_worklet.js": [ - "9c0b392a6abe9f9684b793b7401b9d1fdcaae5c3", + "9c0b392a6abe9f9684b793b7401b9d1fdcaae5c3", "support" - ], + ], "mozilla/worklets/throw_exception.js": [ - "6ca4f80fc2728c00848bb4474b62fa3596ed2f18", + "6ca4f80fc2728c00848bb4474b62fa3596ed2f18", "support" ] - }, - "url_base": "/_mozilla/", + }, + "url_base": "/_mozilla/", "version": 5 } diff --git a/tests/wpt/mozilla/tests/mozilla/resources/brotli.py b/tests/wpt/mozilla/tests/mozilla/resources/brotli.py index ca49df23367..a24b4771e31 100644 --- a/tests/wpt/mozilla/tests/mozilla/resources/brotli.py +++ b/tests/wpt/mozilla/tests/mozilla/resources/brotli.py @@ -2,11 +2,37 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. +decoded = """\ +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut viverra neque in massa rutrum, non rutrum nunc pellentesque. Phasellus et nulla metus. Nam aliquet felis nec iaculis eleifend. Donec pretium tellus non aliquam tristique. Mauris feugiat eu velit sed maximus. Praesent fringilla lorem vel orci maximus accumsan. Fusce vel sapien ipsum. Nulla ac lectus non arcu semper laoreet. + +Aliquam et massa at ex elementum dictum vitae ac purus. Sed a nunc sed dui pulvinar mollis eu sed eros. Mauris vitae ullamcorper dolor. Ut sed nisl sem. Mauris pulvinar vitae orci nec tincidunt. Integer fringilla quam in lobortis vehicula. In aliquam egestas dapibus. Suspendisse est enim, maximus non massa eget, finibus finibus lorem. Phasellus a varius ante. Pellentesque tempor dignissim nunc ut malesuada. + +Ut rutrum massa vitae pellentesque lobortis. Vivamus gravida cursus venenatis. Sed metus lorem, commodo vitae pulvinar sagittis, scelerisque quis orci. Vivamus viverra lorem nibh, quis commodo orci luctus pulvinar. Morbi aliquam urna sed magna luctus, quis vulputate tellus pulvinar. Mauris congue velit sed volutpat sodales. Aenean faucibus sapien erat, ac vestibulum leo aliquam at. In magna lorem, hendrerit sed ultrices a, maximus a turpis. Sed sit amet magna eget velit luctus rutrum ac eu est. Donec tristique augue quis luctus auctor. Pellentesque eu mi viverra, lobortis orci et, semper justo. Nunc non viverra purus. Phasellus a purus id elit dictum ullamcorper at quis urna. Nullam semper porttitor diam, in feugiat mi imperdiet eget. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; + +Fusce sed mattis ligula, non viverra ante. Proin viverra maximus enim, non facilisis ante rhoncus eget. Praesent molestie justo ac diam luctus aliquam. Nunc vitae justo posuere ex convallis varius. Suspendisse potenti. Vivamus elementum lacus vel tortor varius, ut blandit nisl laoreet. Suspendisse potenti. Proin gravida facilisis dui, id maximus est porttitor rhoncus. + +Mauris ut quam purus. Cras maximus risus sit amet pretium facilisis. Vivamus ullamcorper arcu et est semper, nec malesuada metus interdum. Nulla tincidunt orci suscipit nisi congue aliquet. In ultrices pulvinar ipsum a egestas. Proin felis diam, malesuada vel suscipit quis, auctor vehicula augue. Vestibulum eget ipsum in neque volutpat aliquam porta ac augue. + +Etiam tincidunt nulla at tellus sodales, sit amet facilisis elit maximus. Nulla et lorem aliquam arcu molestie suscipit. Donec convallis tellus nibh, vel vulputate velit ultrices luctus. Nam et diam sit amet dolor suscipit auctor. Nam blandit felis quis ex pretium consectetur. Etiam vitae ultrices arcu. Nullam et urna pellentesque, ornare mi mattis, fringilla dolor. Vestibulum augue tortor, imperdiet in porta nec, vestibulum a sem. Phasellus nec mattis eros. Maecenas tristique enim egestas libero laoreet posuere. Sed eros nunc, auctor a molestie egestas, dictum a ante. In hac habitasse platea dictumst. Nullam luctus aliquam pellentesque. Morbi non diam ligula. Proin vulputate tortor dui, ac lacinia nisi luctus at. + +Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec dignissim urna sed ligula semper, id mattis enim malesuada. Nullam ac magna et justo commodo viverra ac ac erat. Praesent mi mi, aliquet sit amet augue eu, blandit tempus nisi. Donec dapibus ex et sodales malesuada. Vivamus venenatis aliquet nunc, eget egestas ipsum. Nunc venenatis iaculis congue. Sed iaculis rhoncus diam, at rhoncus arcu imperdiet vel. + +Suspendisse potenti. Praesent ut iaculis elit, a venenatis metus. Sed vitae neque ut neque vehicula placerat id eget erat. Aliquam erat volutpat. Sed dictum molestie nisi eget rhoncus. Nulla et laoreet nisl, a consectetur mauris. In ornare ut mauris quis scelerisque. Pellentesque ultrices nibh in lacus feugiat, id tempus lacus condimentum. + +Aenean tincidunt consequat augue, in bibendum nisl placerat in. Nulla non dignissim est. Nam ac mauris eleifend, elementum ex in, luctus justo. Aliquam ac leo facilisis, elementum libero et, tristique lacus. Aliquam commodo elementum consequat. Vestibulum mollis, lacus a porttitor lacinia, est ipsum mollis ante, non cursus elit tortor eget lacus. Quisque suscipit quam massa, sit amet tempus nulla varius sed. Ut maximus velit quis nulla blandit mollis eu a libero. Aliquam sed dignissim elit. Vivamus quis erat vitae turpis tincidunt ultrices. + +Nulla facilisis dui odio, at scelerisque erat cursus a. Ut arcu nunc, ullamcorper vitae orci eget, sollicitudin maximus sapien. Fusce eu arcu nunc. Integer vitae eros turpis. Fusce ac elit in nisi rutrum suscipit id consectetur lacus. Suspendisse rutrum ligula auctor fringilla cursus. Sed consequat erat in nunc lacinia, et ullamcorper velit vestibulum. Mauris sed est a tellus feugiat sagittis non nec neque. Sed eu bibendum orci. Donec diam diam, viverra sed dolor non, posuere sagittis mi. Duis rhoncus, risus sit amet luctus sodales, risus arcu faucibus enim, eu cras amet.\ +""" + +encoded = '\x1b\x99\x13 ,\x0elw\x08\x95t\xd2\xe6\xf2(\xcd\'5M\x9dg\xd7\xc9)uG\xf4P\x8c;\x92_(\xb1\x14@L\x9d$\xa2\x16\x8f\x06\xc8\x18J\xed\xac\xabd_\xfb\xbe\xcb\xab\x90]VTu\xbc\xe1\xc3\x11\x96\x81T\r\xabj\x07\xbd\xe0\xb2\xd7y\x89\x1c\x81\xfd8\x9f\x15\xcf\xf8\xf6\xe6\x84\x8d\x90Ta<\xef\xcf\xce\xcc\x95\xa4\xff;\xcaO\xe9e\x97z/\xeap\t\x0e\x17\xd9\x14\xb6\xa9V\x151\n\xd0\xe0Fh\xd8\xbd\xd2\xdcB@\xed\xfa\xbe\xea\xb1V\xa1\xe7I\xd5\xfa\x7fTV\xa0\xa4\xda\x86G>R\x1a\x84\x1fs\x1b/\x98\xd6\xfa#\xaa_\xf5\xb7-\xf8d\x99\x80\x87O\xdb\xa1\xbe\xa9\x1a\xc3\xfb\xaf!\xc4f#oa\xc4\xffY?\x8f\xf3\xfc{\xe6\x1dB\x11\xe6\xdd\xe6(\\_S \xfd\xc9\x12\x9d4\t\x1cMO\x9a0u\xfd\t\xd7z\x1d\xe4l\'y\x17\x83\xbcCb\x18\xbfs\x16\xe3\xcc\xf1\x82\x97y\xc9n\x93\xce>=\x05\xb7\x15i\x91\xc4\xe3\xceek_\xfe\xfdzQ\x18\xfa\x19/\xe7\xddfk\x15E\xb2\xf6\xf6\xddo\x05\xbeSOc\xbd\xcb\xad{Ve\x1e/\xa0Y\xac\xaf\x87Z\x0f\xc7\xf0\xd9\xda\x17\xf4\x8e%\xf5Qc\xb9[K\xd2\xe1\x86k\x14\x84k \xf8\x12\xe8,2\x7fE}RT\xd5\xcb\xe0lv\xb8~\x11\xc0Bl\x92`\xf1\xb2\xcd\xfc3\xba\xf1\xe5m\xc2mI\xc0>D\x813e\x1b\\]\xfb\xf4G\x1d\xf9,\xa6\xb8\xff@\x947I\x8d\xd1\xbc\x1c\x0c(\xde\x138\xa3\xd8\x8e`\xd6\x7f\x81 \x82\x0e\x87\xfa"\x01\xdbqzL\x8a\x7f{\xb2\xefw\x8c^\xcdS\x9c&K\x1e\x1f\xc7\xaaj\xad\x1f0\x1f\x199\x10\xaez\n\x18\x81R6v\x99j/^\xf9\xbb\x88WB\xae\x97\xc2*\xedM\x80a]\xcc\xc1\x0e{\xf8\x81\xbd,=\xdf\xe6c\x9a\xbe\x7f\nO\x8a\x99\xd1?\xfc\x88\xc4\\\x1a(\xa4\\\xf6!\x7f}\xfd\xed\xb7+\xe4\xff\xfa\xebhk\xf6\x13R@h9j\xfd\x8ev\x9b\x89l\xbe\xfe\x9d8S\x0b\xec\xb7gNk\xcc\x9a\x9fR\xed\xc5Fv/F\xc0\xef)B1u6z\xfc\xd6\x9d\x9a\x1b\x01;a\xfa$\x96\x1b\xd7\x97\xf5\x8f\x0316\xfb\xddZ\xe8;\xdf=\x80S\xed-\xf3\x13\xb5$1\x7f2CNm\xc3+KQ\x97\xafe\xf4i\x91\x8bNq=-h\x82\x9e\xed>B\xb1\xfc,\xbbU\xe1\x14\x1c\x1f\xc9\x14\xc6\xbd\xb5*\xc8\xc5\x0f\xc4l\xed\x13\\_\xf5j\xff0s\xbev\x11\xf0d\x1dl\xd8\x1f\xc0\xe5g\x98(P\x87\xbb%.\x8c\xf0~8\xdcF\x8e\xb3\xd8>\xc6\x0c\xfb\xc4_\xc3\xce\x85\xeds\x9aR\xf3\xdc\xe6\x8dI\xc7`F\x08B?U\xda\xcf\x0c\xb8r,\xa2\x07\x9b\xd3\x1c$aG\xfc\xe5\xd5\x02\x85\xe9\xca\t\x12\xf1\xf6@[C\x10\xe9:\xed\xb5T\x96\xca\x8a\xb1X\xbeaV\x15\x0cp\xd8k\xbam\xe4\xf2\x12*\x03\xebo\x14 \x17\xe6\x04\xff_\x80\x8f\x10\x85/\xe5T\x13\x15\x84o\xde\xc6\xac\x965\x0f\xa7\xa7]\xec^\xbfXd \xd8\x7fiL\xacg\xb2\xc7\xf1\xa5\xd0\x81;\xd7e\x87\x14.\x80\x01z\xe0\xd1\x9cV\xf4\x1e;\xfe\x83\x1d\x9e\xc1\xf6\xbd\xcb\x97\xe2xa]\x18\x1c\x02\xeeZ\xf4b\x08\xa0<\xde\xab3\xec\xe0K\x1b\xfe\xdaC\xe1 \xf7\xb3&?\xae\xa6u\x18\x9buaq\xcd\xefI\xc6zNO\xf1\xca:\xc5\xdfk\\\x96\xc5:\x01<pnba\'\x89N~\xda\xe25*\xd0i\xe2DZ\x90\xf4-\xc4\x99O91\xc9\xd5r9\x8f^8\xcaP \xce\xa3^\xce\x07L)\x87\x1c\xd6C\xad\x1d\x98V\xadl`\xd7\xa4\xc1\x9d"\x8c\xfa\xca\x84\xce\x16\x81A\xabRn?p\xb4\xdbC\x98\xf4\xa1z\x11\xcb\x86CJ\xb6#i\x08&T\x08\xe4\xb8\xf7\x81\x18h\x19h\xa4\xadT\xebD\x14t\x9d2\xff&O)\x17\xaa\x1a\xbb\x99\x98\x03\xc0\xc7\xda\xe0S\xdc\xfa\xb4p\x93g\x1dQ\xb5L\x1drL\xda`G\xa1\x1dGt\x9ci\xbd\x11X9ev^\x14\xa8\x9b\xd6<\x98\x8d\xcad\xd5\x92\xc8\x02\xc0\xc0\xe6M\xcb3\xac\x03\xa6WZ=\x14~\xde \xab@=#r\xb8]\x1c&\xec\xb0\x9e:_\xf2$\xe5b\xbe\x02\x03\x81yi\x1c\xc6>\x95S\x99\'\xc9\xa6o\x1a\xd7~w\xcb\xbc~\xd1XE\x056\x97\x06\ra\xa0\xd8\x1a\xcb\xd4jB\xa8\x9e\x0b\xbc\xf2\xcb3`Y"\xf4\x05\xbe\x98\xcb\xa4S\x97\x0b\xcd\x0cp\x84p\xad\xa2\x07\x8ej?\n\x96m \xdb`\x12\xd4\x11&\\\x07b\xa79\xda\xcb\xc8\x83\xed\x81\xefw\x9f\xf1oF\x0e\xab}`\xee\xb54\xef\xcc\x9f\xc1\xec\xfe\x16\x96B\xa7\x94^\xc4\x10P\xba,eb.\x08-8\t\x8a\xd3Uq\xc3S\x88Z"+J\x93\xd4\xc6\xdde\xde\x8au"l\xc6\x13(\x13\xe4\xc1\xf7c\x1d\xee\xe9)\x11xF\x16\x08"\xafK/W \xdc\xb9\xbd\xa5CY\x03Q\xf0\xe4F\xa5\x0eO\xec\xad\xb2q\x17>N-\x15\xff\xfa8\xbbs\xc4|\xcd;,\xc7\xec\'\xa3\xfa\xb9\x07\xd9Q%\xf6\x84\x10q\xe7*VQ\xa3\xbb\xc8\x89\xb7g\xe7t\xe1\xe7\xb5\xc0\x0e8\x8d\x19\xe5v\xa1\t{\x8c\x9b\x1dx#\xf9\xc5\xcb\xf4y\xb9^\x1d\xba\x06\x81\xc52\xb8p\x91\x8b\x04c,\x9a\xa7\xfa\xaa\x93V\xc5>\xe0\xe5X>H\x99\xa6X\x9b\xfa\xbe\xcd\x14\xfd\xe4\x8an\xa18\x1f\x11gc\x83\x0b\xb6RLIz[\x1e\x80\x18\xa3\x9d\xc5\xec\x87\x12\x1b\x12\xe7\xf1\x8a\xae\xb4\xea\x99\x0e2\xa2w\xe4S\xd7\xe9Pq\xfd\x9c\xd6k\xf6\xa5`\x99}\x08\xc9\x9b5\x12\xe8\x17\xe2\xcf\x9f\x9bm\xc3\xe5<\x9f5m\xa1\xa4\xb5\xf1\x87\x8d\xf5}2yte\x14V\xf6\x10\xae\xd4\xeec\xa0\xdaq@(\xd6B\xa8R\xee"v\xf3\xeef\xb7\xb1\x8a\x8cu|\x11J\xb0 \xbe\xe1\x0e\rg\xc3\x9dd\xe2\xb12\xaf\xa3T\xa9\x18\xe7\xf3\x14V\x90\x07\xfali\x91\xc8\x06\xb3\xad\xe0i@\x19"W\x19\x1b\xc9|\xca\xfb\xe1x\xa8\xe4\xd8\x19\x81u4%\xc4_\xfb\xe9\xf90fI\x0eo\x9b\x1d\x98\x13\xa9\xd5\x89\x8c\xab>\xafH\xa2\x91eVe\xea\x03\x19p\xab\xa5\xed\x06\xb9f\x80\xc60\xc0\x8b\x1c\x18\xec\xd3\xb2\xc6l\xe44TAs3\x15\xc4\xac\xac\x0c\x0baN\xcb\xb7\x17\xd9\x1a\xbeG\x88\x9b\x98R\xb0Tp\x04\xa8\x99\x86\x11\xd5_I\x07\xce\x0e\xb8\x92\'Y\xefV\xc287\xdb+\xfd\xd2D\x13\xf7\x84\xec\xd45\x19R\x16O\xa1\x119<2\xb9\xa0K\xf6G\x8e\xc6S\n\r*h\xb1\xd1p\x10\xdd\\\xa9\xd0y\x1cG\x95\xb3D\xba\xa16\xb0\xd1\x98E\x87\x08\x01l.J\xe8\xeaA\x11\xb4Yr@\x19d!\xbb\x91\x06\xf1\x8a\xc0\xcdK\xf9\xback\x14\xa8F\x99)\x9f\xe5\xaf\xce#}ITF\x131T\xab\xe0\x05*>\xbeA{>\xac\xeak\xea\x95\xf9Bw 4\xec\xac\xdc\xe8\xac\xe4\xb6v\xcd\x91\x95\x05' def main(request, response): - output = '\x1b\x03)\x00\xa4\xcc\xde\xe2\xb3 vA\x00\x0c' + if 'raw' in request.GET: + headers = [("Content-type", "text/plain"), + ("Content-Length", len(decoded))] + return headers, decoded + headers = [("Content-type", "text/plain"), ("Content-Encoding", "br"), - ("Content-Length", len(output))] - - return headers, output + ("Content-Length", len(encoded))] + return headers, encoded diff --git a/tests/wpt/mozilla/tests/mozilla/response-data-brotli.htm b/tests/wpt/mozilla/tests/mozilla/response-data-brotli.htm index e46a0e5fb04..2466d31d5f9 100644 --- a/tests/wpt/mozilla/tests/mozilla/response-data-brotli.htm +++ b/tests/wpt/mozilla/tests/mozilla/response-data-brotli.htm @@ -9,34 +9,26 @@ <body> <div id="log"></div> <script> - function request(input) { - var test = async_test(); - test.step(function() { - var client = new XMLHttpRequest() - - client.open("POST", "resources/brotli.py", false); - - client.onreadystatechange = test.step_func(function () { - if (client.readyState === 4) { - var len = parseInt(client.getResponseHeader('content-length'), 10); - - assert_equals(client.getResponseHeader('content-encoding'), 'br'); - assert_true(len < input.length); - assert_equals(client.responseText, input); - test.done(); - } + async_test(function(test) { + var client = new XMLHttpRequest() + client.open("GET", "resources/brotli.py?raw", false); + client.onerror = test.unreached_func(); + client.onload = test.step_func(function () { + var input = client.responseText; + var client2 = new XMLHttpRequest() + client2.open("GET", "resources/brotli.py?pipe=trickle(1:d1)", false); + client2.onload = test.step_func_done(function() { + var len = parseInt(client2.getResponseHeader('content-length'), 10); + assert_equals(client2.getResponseHeader('content-encoding'), 'br'); + assert_true(len < input.length); + assert_equals(client2.responseText, input); }); + client2.onerror = test.unreached_func(); + client2.send(); + }); - client.send(input); - }, document.title); - } - - var wellCompressableData = ''; - for (var i = 0; i < 500; i++) { - wellCompressableData += 'foofoofoofoofoofoofoo'; - } - - request(wellCompressableData); + client.send(); + }); </script> </body> </html> |